Script Healing For PVP (Auto-Healing)

Anything and all.

Moderators: Murderator+, Murderator

Post Reply
DeathMan
Posts: 6
Joined: 2004-07-02 05:29:22

Script Healing For PVP (Auto-Healing)

Post by DeathMan »

What is Problem?
-----------------------------------------------------------------------------
Sub control()
HealX:
if (UO.life<=90) then
UO.Print("***Using Bandageself***")
UO.usetype("bandageself") ; Healing-Bandage
wait(5500)
end if
if (UO.life<=40) then
UO.Print("***Using Life Potion***")
UO.exec("usetype 0x0F82 0x0532") ; ID and Graphic Os life Potion
endif
goto HealX
end sub
-----------------------------------------------------------------------------
Kazoo
Posts: 173
Joined: 2004-04-03 18:39:28
Contact:

Re: Script Healing For PVP (Auto-Healing)

Post by Kazoo »

DeathMan wrote:What is Problem?
-----------------------------------------------------------------------------
Sub control()
HealX:
if (UO.life<=90) then
UO.Print("***Using Bandageself***")

Code: Select all

UO.usetype("bandageself") ; Healing-Bandage  <----- 

wait(5500)
end if
if (UO.life<=40) then
UO.Print("***Using Life Potion***")
UO.exec("usetype 0x0F82 0x0532") ; ID and Graphic Os life Potion
endif
goto HealX
end sub


-----------------------------------------------------------------------------

UO.exec ("bandageself") ; Healing-Bandage <-----
DeathMan
Posts: 6
Joined: 2004-07-02 05:29:22

Script

Post by DeathMan »

Sorry,
This Script Was Error inLine 15, Function Not FOund... i undestand thsi error...

Look all and try find error:

Sub control()
healx:
if (UO.life<=90) then
UO.Print("***Using Bandage***")
UO.exec ("bandageself")
wait(5500)
end if
if (UO.life<=40) then
UO.Print("***Using Heal Potion***")
UO.exec("usetype 0x0F82 0x0532")
endif
goto Healx
end sub

this is a script... i need search error,
Kazoo
Posts: 173
Joined: 2004-04-03 18:39:28
Contact:

Re: Script

Post by Kazoo »

DeathMan wrote:Sorry,
This Script Was Error inLine 15, Function Not FOund... i undestand thsi error...

Look all and try find error:

Sub control()

Code: Select all

healx:

if (UO.life<=90) then
UO.Print("***Using Bandage***")
UO.exec ("bandageself")
wait(5500)
end if
if (UO.life<=40) then
UO.Print("***Using Heal Potion***")
UO.exec("usetype 0x0F82 0x0532")
endif

Code: Select all

goto Healx < ---   goto healx with small "h" becouse up there is with small "h" 

end sub

this is a script... i need search error,
DeathMan
Posts: 6
Joined: 2004-07-02 05:29:22

Script

Post by DeathMan »

=/
i'm try using this script, and find error retry in Line 15... i undestand this error..

Code: Select all

Sub control() 
healx:
if (UO.life<=90) then
UO.Print("***Using Bandage***")
UO.exec ("bandageself")
wait(5500)
end if
if (UO.life<=40) then
UO.Print("***Using Heal Potion***")
UO.exec("usetype 0x0F82 0x0532")
endif
goto healx
end sub



Sub control() < it is true???????
Kazoo
Posts: 173
Joined: 2004-04-03 18:39:28
Contact:

Re: Script

Post by Kazoo »

DeathMan wrote:=/
i'm try using this script, and find error retry in Line 15... i undestand this error..
Sub control()
healx:
if (UO.life<=90) then
UO.Print("***Using Bandage***")
UO.exec ("bandageself")
wait(5500)
end if
if (UO.life<=40) then
UO.Print("***Using Heal Potion***")
UO.exec("usetype 0x0F82 0x0532")
endif
goto healx
end sub



Sub control() < it is true???????



Try This

Code: Select all

Sub control() 
healx:
if uo.life<90 then
UO.Print("***Using Bandage***")
UO.exec ("bandageself")
wait(5500)
end if
if uo.life<40 then
UO.Print("***Using Heal Potion***")
UO.exec("usetype 0x0F82 0x0532")
endif
goto healx
end sub
DeathMan
Posts: 6
Joined: 2004-07-02 05:29:22

Script

Post by DeathMan »

Don't function...

do you have a script to PVP From me?
Post Reply