Body 'cut'

Anything and all.

Moderators: Murderator+, Murderator

Post Reply
SoulS XD
Posts: 8
Joined: 2006-02-04 04:38:57

Body 'cut'

Post by SoulS XD »

Is it possible to make a script that...afther you kill a guy....it cut his body right away...like...

you're on a mass...and you dont wanna to your enemies be able to ressurect your oponent...so you cut his body and we be able to be ress with all items equiped...

thnx
flake
Expert!
Posts: 746
Joined: 2004-08-11 23:56:17
Location: The Citadel
Contact:

Post by flake »

Code: Select all

sub Cutter()
var ser 
  repeat 
    uo.deletejournal()
          repeat
             wait(50)
          until uo.injournal('Body')
        ser = uo.getserial('lastcorpse')
        while uo.getdistance(ser) > 4
          wait(50)
        wend
          uo.setarm('arm1')
          uo.waittargetobject(ser) 
          uo.usetype('0x13FE') ; cleaver type
          wait(500)
          uo.arm('arm1')           
  until uo.dead()
endsub
SoulS XD
Posts: 8
Joined: 2006-02-04 04:38:57

Post by SoulS XD »

flake wrote:

Code: Select all

sub Cutter()
var ser 
  repeat 
    uo.deletejournal()
          repeat
             wait(50)
          until uo.injournal('Body')
        ser = uo.getserial('lastcorpse')
        while uo.getdistance(ser) > 4
          wait(50)
        wend
          uo.setarm('arm1')
          uo.waittargetobject(ser) 
          uo.usetype('0x13FE') ; cleaver type
          wait(500)
          uo.arm('arm1')           
  until uo.dead()
endsub


thnxx

XD
Post Reply