UO Steam Macro help

preman

New Member
Can you please help me with this macro as I cannot find anything similar anywhere? How should this macro be written correctly?
Code:
getenemy 'friend' 'innocent'  'murderer' 'criminal' 'gray' 'humanoid' 'closest'
if @inrange 'enemy' 1 and @findlayer 'enemy' 21
  useobject! 'found'
  setalias 'enemy_bacpack' 'found'
endif
if @findtype 0x100f 'any' 'enemy_bacpack'
  waitforproperties 'found' 10000
  if @property 'Legendary' 'found'  ////////// <---- not work !!!!!!!!  :(
    useskill 'Stealing'
    waitfortarget 15000
    target! 'found'
    pause 1000
  endif
endif
 

preman

New Member
the same problem i have with potion - anybady help ?
Code:
if @findtype 0xf0a 'any' 'box'

if @name 'found' != 'Deadly' ////////// <---- not work !!!!!!!! :(

moveitem 'found' 'backpack'

pause 1000

endif

endif

it take random potion deadly / lesser / greater

Code:
if @name 'found' == 'Deadly'

this operator does not do anything completely
 
Last edited by a moderator:

eppy

Grandmaster
the same problem i have with potion - anybady help ?
Code:
if @findtype 0xf0a 'any' 'box'

if @name 'found' != 'Deadly' ////////// <---- not work !!!!!!!! :(

moveitem 'found' 'backpack'

pause 1000

endif

endif

it take random potion deadly / lesser / greater

Code:
if @name 'found' == 'Deadly'

this operator does not do anything completely

You are kinda close.

Code:
clearjournal
if @findtype 0xf0a 'any' 'box'
    clickobject 'found'
    pause 500
    if not injournal 'deadly' 'system'
       moveitem 'found' 'backpack'
       clearjournal
       pause 1000
    endif
endif
 
Top