Help me?
i want one lua who XLOG when low helth and low potions ...
EXEMPLE: ppl try kill me afk, so i want EXIT TIBIA if pk attack!
Help me?
i want one lua who XLOG when low helth and low potions ...
EXEMPLE: ppl try kill me afk, so i want EXIT TIBIA if pk attack!
init start
local minHPPC = 50 -- Minimum HPPC to leave cave
local minPots = 10 -- Minimum amount of potions to leave cave
local potion = 'mana potion' -- Name/ID of potion
-- DO NOT EDIT BELOW THIS LINE --
potion = itemid(potion)
init end
auto(100)
if $connected and $hppc < minHPPC and itemcount(potion) < minPots then
xlog()
waitping()
end
Script dont run ... i try but he don't XLOG ..
Had 24 GREAT and don't exit Client !!!
init start
local minHPPC = 30 -- Minimum HPPC to leave cave
local minPots = 10 -- Minimum amount of potions to leave cave
local potion = 'great health potion' -- Name/ID of potion
-- DO NOT EDIT BELOW THIS LINE --
potion = itemid(potion)
init end
auto(100)
if $connected and $hppc < minHPPC and itemcount(potion) < minPots then
xlog()
waitping()
end