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] `as` does not work in compound `if` statements #31

Open ncskrypt opened 3 years ago

ncskrypt commented 3 years ago

Compound expressions don't work with as In both cases below only the 2nd findtype 0xABC will work for setting found

if findtype 0x123 'backpack' or findtype 0xABC 'backpack' as found
  lift found
endif

if findtype 0x123 'backpack' as found or findtype 0xABC 'backpack' as found
  lift found
endif