const
minMana = 20; //minimum mana
minHealth = 600; //Life pra tomar o Pote
maxHealth = 780; //Life pra usar Exura abaixo disso
potionid = 266; //id da potion
spellnome = 'exura' //nome da magia
while not Terminated do
begin
UpdateWorld;
if (Self.Health < minHealth) then
begin
Self.Containers.UseItemWithSelf(potionid);
Sleep(1000);
end;
else
begin
if (Self.Health < maxHealth) and (Self.Mana > minMana ) then
begin
Self.Say(spellnome);
Sleep(1500);
end;
end;
Sleep(100);
end;
Legenda:
Azul: ID (codigo) do potion a ser uzado, altere para o ID do potion que deseja uzar
Vermelhor: Altere pela sua necessidade
IDs
Health Potion -> 266
Strong Health Potion -> 236
Great Health Potion -> 239
Ultimate Health Potion -> 7643
Mana Potion -> 268
Strong Mana Potion -> 237
Great Mana Potion -> 238
Great Spirit Potion -> 7642
Download
minMana = 20; //minimum mana
minHealth = 600; //Life pra tomar o Pote
maxHealth = 780; //Life pra usar Exura abaixo disso
potionid = 266; //id da potion
spellnome = 'exura' //nome da magia
while not Terminated do
begin
UpdateWorld;
if (Self.Health < minHealth) then
begin
Self.Containers.UseItemWithSelf(potionid);
Sleep(1000);
end;
else
begin
if (Self.Health < maxHealth) and (Self.Mana > minMana ) then
begin
Self.Say(spellnome);
Sleep(1500);
end;
end;
Sleep(100);
end;
Legenda:
Azul: ID (codigo) do potion a ser uzado, altere para o ID do potion que deseja uzar
Vermelhor: Altere pela sua necessidade
IDs
Health Potion -> 266
Strong Health Potion -> 236
Great Health Potion -> 239
Ultimate Health Potion -> 7643
Mana Potion -> 268
Strong Mana Potion -> 237
Great Mana Potion -> 238
Great Spirit Potion -> 7642
Download