Usar UHP com X de vida ( Ultimate Healing Potion )


const
Potion_ID = 7643//O ID da potion que você irá usar.
Health_Heal = 200 // Com quanto de HP você irá usar a Potion.

while not terminated do
begin
updateworld;
if self.health <= Health_Heal then
begin
Self.Containers.UseItemWithSelf(Potion_ID)
Sleep(700)
end;
Sleep(100);
end;

0 comentários: