Custom Search
TibiaBot NG Scripts
MAGE BOMB $5.00

Saturday, October 10, 2009

Healer Using Pots For Tibiabot NG

Copy This To The TibiaBotNG scripter, save and execute for a healer that uses health potions


//This Script Heals Using Pots
//Set The Pots You Want To Use To True
const
UltPotion = True; // Change this to False Not To Use Or True To Use
GraPotion = True; // Change this to False Not To Use Or True To Use
StrPotion = True; // Change this to False Not To Use Or True To Use
RegPotion = True; // Change this to False Not To Use Or True To Use
UltPotionHp = 500; //Enter Hp To Use Potion
GraPotionHp = 700; //Enter Hp To Use Potion
StrPotionHp = 1000; //Enter Hp To Use Potion
RegPotionHp = 1300; //Enter Hp To Use Potion
UltPotionID = 7643; //Only Change If On OpenTibia Servers
GraPotionID = 239; //Only Change If On OpenTibia Servers
StrPotionID = 236; //Only Change If On OpenTibia Servers
RegPotionID = 266; //Only Change If On OpenTibia Servers




procedure Heal;
begin
UpdateWorld;
if UltPotion <> False then begin
if Self.Health <= UltPotionHp then begin
Self.Containers.Container.UseItemWithSelf(UltPotionID);
sleep(1300);
exit;
end;
end;

if GraPotion <> False then begin
if Self.Health <= GraPotionHp then begin
Self.Containers.Container.UseItemWithSelf(GraPotionID);
sleep(1300);
exit;
end;
end;

if StrPotion <> False then begin
if Self.Health <= StrPotionHp then begin
Self.Containers.Container.UseItemWithSelf(StrPotionID);
sleep(1300);
exit;
end;
end;

if RegPotion <> False then begin
if Self.Health <= RegPotionHp then begin
Self.Containers.Container.UseItemWithSelf(RegPotionID);
sleep(1300);
exit;
end;
end;


end;


while not terminated do begin
UpdateWorld;
Heal;
sleep(400);
end;