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
help with targeting
Moderators: Murderator+, Murderator
Code: Select all
sub corpseclick()
uo.waittargetobject("lastcorpse")
uo.msg(".command")
end sub
Уроки языка Injection
Основные команды языка Injection
Yoko Injection Code Sweeper
Drw (2009) скрипты
2017 Начал играть на Uorpg.net
Основные команды языка Injection
Yoko Injection Code Sweeper
Drw (2009) скрипты
2017 Начал играть на Uorpg.net
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
Уроки языка Injection
Основные команды языка Injection
Yoko Injection Code Sweeper
Drw (2009) скрипты
2017 Начал играть на Uorpg.net
Основные команды языка Injection
Yoko Injection Code Sweeper
Drw (2009) скрипты
2017 Начал играть на Uorpg.net