UOOutlands / Razor

Razor is a free tool designed to help with simple tasks while playing Ultima Online.
http://www.uor-razor.com
GNU General Public License v3.0
9 stars 6 forks source link

[BUG] `getlabel` issues when capturing multi line labels #76

Closed ncskrypt closed 2 years ago

ncskrypt commented 3 years ago

getlabel does not capture (bonded) label on pets.

getlabel myPet myLabel
if '(bonded)' in myLabel  // returns false
  ..
endif

getlabel errors when checking for blessed, no error when checking for [blessed]

getlabel myItem myLabel
if 'blessed' in myLabel // Script Error: The 'in' operator only works on string operands
  ...
endif
getlabel myItem myLabel
if '[blessed]' in myLabel // returns true
  ...
endif