Page 1 of 1

need new cut

Posted: 2006-03-19 20:25:29
by ozcaN
i have been using a cut macro and the shard admin changed it so u cant auto cut untill 2 seconds after the person dies witch sucks cause then they can res. I have been using this script

Code: Select all

sub cut()

    UO.waittargetobject('lastcorpse')
    UO.usetype('cleaver')                    ;Type - cleaver
    wait(500)

end sub


Anyone know any other ones that might work

Posted: 2006-03-19 20:36:44
by Scripts Writer

Code: Select all

var waiting
waiting=2000 ; Your time out for cutting corpes

sub cut()
if uo.InJournal('Body') then
    wait(waiting)
    UO.waittargetobject('lastcorpse')
    UO.usetype('cleaver')                    ;Type - cleaver
    wait(500)
end if
end sub

Posted: 2006-03-19 20:42:33
by ozcaN
yeh but i dont wana wait the 2 seconds