Any help?? I search in the forum but all is in russian
Unhandled exception in parser
Moderators: Murderator+, Murderator
Unhandled exception in parser
When I run a script for long time appears this Error: "unhandled exception in parser "
Any help?? I search in the forum but all is in russian
Any help?? I search in the forum but all is in russian
-
Lord Ruslan Nightmare
- Expert!
- Posts: 359
- Joined: 2004-04-25 11:11:07
- Contact:
Sorry, here is the script
Code: Select all
sub robar()
robar:
uo.useskill('Stealing')
uo.waittargetobject('0x00143537')
wait(1000)
goto robar
end sub
sub tirar()
uo.print('<< Tirador de Monedas: Loaded... >>')
inicio:
uo.findtype('0x0EED')
if uo.getquantity('finditem')>=100 then
uo.print('<< Muchas Monedas, Freeing... >>')
uo.moveitem('finditem',-1,'0x4013E631')
else
uo.print('<< Pocas Monedas, Waiting... >>')
end if
wait(10000)
goto inicio
end sub
sub comer()
uo.print('<< Comer Manzanas: Loaded... >>')
comer:
uo.findtype('0x09D0',-1,'ground')
uo.print('<< Comiendo... >>')
uo.useobject('finditem')
wait(500000)
goto comer
end sub
Sauza wrote:Sorry, here is the scriptCode: Select all
sub robar()
robar:
uo.useskill('Stealing')
uo.waittargetobject('0x00143537')
wait(1000)
goto robar
end sub
You must use UO.Waittargetobject BEFORE UO.Useskill.
Edred wrote:Sauza wrote:Sorry, here is the scriptCode: Select all
sub robar()
robar:
uo.useskill('Stealing')
uo.waittargetobject('0x00143537')
wait(1000)
goto robar
end sub
You must use UO.Waittargetobject BEFORE UO.Useskill.
If i delete that part of the script the error appear again after 10 minutes. =(=(