Page 1 of 1

Crash Problem

Posted: 2014-03-07 18:01:14
by ShakeDatAss
HI!!
I have a problem with my injection, when i run my script of healing after 10-20 minute my uo screen froze and injection (NOT RESPONSE) and it close after...

Maybe someone can help me with that probably my setting or somethjing like that im on windows 7
If someone can help me i will look this post some time so thx and sorry for my english i make ur mind work ;)

Re: Crash Problem

Posted: 2014-03-07 18:18:26
by Incorrect User
Show me that script, and what Inject version you use.

Re: Crash Problem

Posted: 2014-03-07 18:43:45
by ShakeDatAss
this script :

sub Healing()
UO.print("Autohealing for BeePK")
UO.DeleteJournal()
repeat
if not uo.dead() then
if UO.InJournal("You feel very ill")>0 or UO.InJournal("You feel deathly sick")>0 or UO.InJournal("You feel extremely sick")>0 or UO.InJournal("You contaminated")>0 then
UO.Exec("bandageself")
wait(1400)
UO.DeleteJournal()
end if
if uo.life < uo.str-10 then
uo.exec("bandageself")
end if
end if
wait(1400)
until false



And the injection version i think its : YoKoInjection 1401.25 HorLan its a admin of yoko sended this injection to my firend after multiple probleme of conection

Re: Crash Problem

Posted: 2014-03-07 18:55:52
by Incorrect User
Lastest Inj ver you can download here viewtopic.php?f=1&t=17391
And script

Code: Select all

sub Healing()
   UO.print("Autohealing for BeePK")
   UO.DeleteJournal()
   repeat
         if UO.InJournal("You feel very ill|You feel deathly sick|You feel extremely sick|You contaminated") or uo.life < uo.str-10 then
            uo.bandageself()
            wait(1400)
            UO.DeleteJournal()
            else
            wait(100)
         end if
   until uo.dead()
end sub

Re: Crash Problem

Posted: 2014-03-07 19:41:54
by ShakeDatAss
Thanks man !!!