Page 1 of 1
[UOSteam] Simple Claim macro.
Posted: Fri Jul 13, 2018 4:34 pm
by Stephen
Code: Select all
//Name: Claim
//Author: Stephen
//Version 1.0 Final
if @findtype 0x2006 'any' 'ground' 1 2
msg '[claim'
waitfortarget 15000
target 'found'
pause 200
canceltarget
else
sysmsg 'No corpse found.'
pause 200
canceltarget
endif
Re: [UOSteam] Simple Claim macro.
Posted: Tue Jul 17, 2018 6:49 am
by Eless
Consider using a while loop, it would claim all corpses not just one.
Re: [UOSteam] Simple Claim macro.
Posted: Tue Jul 17, 2018 12:12 pm
by Stephen
Eless wrote:Consider using a while loop, it would claim all corpses not just one.
I wouldn't use a loop for it as sometimes I cut corpses or have other things i need to do between or around.
Re: [UOSteam] Simple Claim macro.
Posted: Tue Jul 17, 2018 1:03 pm
by Alamiester
use my uosteam skinner if you want a loop. it skins, collects, then claims all the corpses.

Re: [UOSteam] Simple Claim macro.
Posted: Tue Jul 17, 2018 5:40 pm
by Stephen
I only use my own code.
I already have one. That's why I don't loop my scripts. So I can use different buttons pending what I am doing. Time saving is key.