UOSteam Script help

General discussion pertaining to the Demise shard. Off-topic posts will be moderated.
Post Reply
dallasb91
Posts: 47

UOSteam Script help

Post by dallasb91 »

is it possible for steam to recognize the name of a recipe scroll, to assist in pulling only the ones you want?
Tagima
Posts: 230

Re: UOSteam Script help

Post by Tagima »

use property like this:

Code: Select all

if not listexists 'Fletching Recipes'
  @createlist 'Fletching Recipes'
  @pushlist 'Fletching Recipes' 'Night Reaper'
  @pushlist 'Fletching Recipes' 'Mischief Maker'
  //@pushlist 'Fletching Recipes' 'Slayer Longbow'
  @pushlist 'Fletching Recipes' "Silvani's Feywood Bow"
endif

while @findtype 0x2831 0 'bag'
          waitforproperties 'found' 5000
          for 0 to 'Fletching Recipes'
            if @property 'Fletching Recipes[]' 'found'
              @moveitem! 'found' 'Reward Box' 80
              pause 1000
              break
            endif
          endfor
 ignoreobject 'found'
 endwhile
Post Reply