Crash Problem

General Injection issues

Moderators: Murderator+, Murderator

Post Reply
ShakeDatAss
Posts: 11
Joined: 2014-03-01 21:06:25

Crash Problem

Post 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 ;)
Incorrect User
Posts: 949
Joined: 2011-05-23 00:33:30

Re: Crash Problem

Post by Incorrect User »

Show me that script, and what Inject version you use.
ShakeDatAss
Posts: 11
Joined: 2014-03-01 21:06:25

Re: Crash Problem

Post 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
Incorrect User
Posts: 949
Joined: 2011-05-23 00:33:30

Re: Crash Problem

Post 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
ShakeDatAss
Posts: 11
Joined: 2014-03-01 21:06:25

Re: Crash Problem

Post by ShakeDatAss »

Thanks man !!!
Post Reply