need new cut

Ask for help

Moderators: Murderator+, Murderator

Post Reply
ozcaN
Posts: 34
Joined: 2004-06-18 17:21:40

need new cut

Post 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
Scripts Writer
Posts: 2259
Joined: 2005-04-19 18:00:29
Location: Московская область
Contact:

Post 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
Last edited by Scripts Writer on 2006-03-19 20:37:09, edited 1 time in total.
ozcaN
Posts: 34
Joined: 2004-06-18 17:21:40

Post by ozcaN »

yeh but i dont wana wait the 2 seconds
Post Reply