The Small Health Potion Script:
Obs:Copie do const ate o end se faltar 1 letra nao vai funcionar :) Enjoy
Const
MinHealth = 100 // with how much life it will use the potion
NumberOfVialsToDrink = 1 // how many health potions to drink
IDPotion = 7876 // ID of Potion
Delay = 0 // in seconds
while not terminated do
begin
UpdateWorld;
if Self.Health <= MinHealth then
begin
for i := 1 to NumberOfVialsToDrink do
begin
if (i >= NumberOfVialsToDrink + 1) or (terminated = true) then break;
Self.Containers.UseItemWithSelf(IDPotion);
Sleep(Delay*1000);
end;
end;
Sleep(500);
end;
___Olá joão Gabriel, gostei do Script ele realmente funciona bem.
ResponderExcluir___Gostei tembem de alguns conteudos do seu Blog. Se possivel da uma olhada no meu:
___Www.CheatsPCBrasil.blogspot.com
Até mais!