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;
Assinar:
Postar comentários
0 comentários:
Postar um comentário