Mana Potion


Const

minMana = 200; //Mana pra usar
PotID = 268; //ID da potion.

while not Terminated do
begin
UpdateWorld;
if (Self.Mana < minMana) then
begin
Self.Containers.UseItemWithSelf(PotID)
Sleep(1000);
end;
Sleep(100);
end;