Page 1 of 1

[UOSteam] Claim/Claimall Macros

Posted: Sun Feb 23, 2014 3:42 pm
by Dramoor
UOSteam macro for claim or claimall macros.
Dunno why you would need claimall with Steam since it has a looter but I put in case someone decided to want it.

Claim:

Code: Select all

if @findtype 0x2006 'any' 'ground' 1 2
  msg '[claim'
  waitfortarget 15000
  target 'found'
  pause 200
  canceltarget
else
  sysmsg 'No corpse found.'
endif
Claimall:

Code: Select all

if @findtype 0x2006 'any' 'ground' 1 2
  msg '[claimall'
  waitfortarget 15000
  target 'found'
  pause 200
  canceltarget
else
  sysmsg 'No corpse found.'
endif

Re: [UOSteam] Claim/Claimall Macros

Posted: Sat Nov 29, 2014 10:43 am
by Berserker
anyway to make this loop if there are more than 1 corpse on the ground?

Re: [UOSteam] Claim/Claimall Macros

Posted: Mon Jan 02, 2017 12:42 pm
by Jax2
I know this is an older topic, but figured I'd update it a little... this macro works for multiple corpses, as well as for an increased distance (4 tiles)

Code: Select all

while @findtype 0x2006 'any' 'ground' 1 4
  msg '[claim'
  waitfortarget 15000
  target 'found'
  pause 200
  canceltarget
endwhile