Health Potion


Const

PHealth = 245; //Vida pra usar potion
PotionID = 266; //ID da potion

while not Terminated do
begin
UpdateWorld;
if (Self.Health < PHealth) then
begin
Self.Containers.UseItemWithSelf(PotionID);
Sleep(1000);
end;
end;