Page 1 of 1
help with targeting
Posted: 2008-02-06 00:05:34
by crazy1
For the free shard I play on I have to type a command to get experience points and click on the monster I killed. I was wondering how can I make it auto target the dead body and click without me doing anything?
thank you
Posted: 2008-02-06 09:34:18
by Nmy
Code: Select all
sub corpseclick()
uo.waittargetobject("lastcorpse")
uo.msg(".command")
end sub
Posted: 2008-02-10 01:10:15
by crazy1
thank you
Posted: 2008-02-17 04:07:28
by crazy1
I seem to have to run the script everytime I want it to click how can I make it just click everytime I kill something?
Posted: 2008-02-17 12:11:41
by Nmy
crazy1 wrote:I seem to have to run the script everytime I want it to click how can I make it just click everytime I kill something?
Code: Select all
sub corpseclick()
while true
if uo.injournal("body") then
uo.waittargetobject("lastcorpse")
uo.msg(".command")
uo.deletejournal()
endif
wait(1000)
wend
end sub