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
-----------------------------------------------------------------------------
Script Healing For PVP (Auto-Healing)
Moderators: Murderator+, Murderator
Re: Script Healing For PVP (Auto-Healing)
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 <-----
Script
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,
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,
Re: Script
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")
endifCode: 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,
Script
=/
i'm try using this script, and find error retry in Line 15... i undestand this error..
Sub control() < it is true???????
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???????
Re: Script
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