[UOSteam] Claim/Claimall Macros

If you make a Client-side script you can publish it here for other players to use
Locked
Dramoor
Legendary Scribe
Posts: 450
Joined: Wed Feb 23, 2011 7:37 pm

[UOSteam] Claim/Claimall Macros

Post 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
Berserker
Novice Scribe
Posts: 7
Joined: Fri Oct 24, 2014 12:23 pm

Re: [UOSteam] Claim/Claimall Macros

Post by Berserker »

anyway to make this loop if there are more than 1 corpse on the ground?
Jax2
Grandmaster Scribe
Posts: 95
Joined: Wed Apr 08, 2009 3:23 pm

Re: [UOSteam] Claim/Claimall Macros

Post 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
Locked