bom, eu n sei se ja postaram um desses aq! mas de qualquer forma vim trazer um script q usa a MF e pot de life em um só script!!!
VAMOS QO QUE INTERESA!
const
minMana = 800; //minimum mana para usar a MF
minHealth = 800; //Life pra tomar o Pote
potionid = 239; //id da potion DE LIFE
manapotionid = 238; //id da mf
while not Terminated do
begin
UpdateWorld;
if (Self.Health < minHealth) then
begin
Self.Containers.UseItemWithSelf(potionid);
Sleep(1000);
end;
else
if (Self.Mana < minMana) then
begin
Self.Containers.UseItemWithSelf(manapotionid);
Sleep(1000);
end;
Sleep(100);
end;
é isso ae espero q seja util!(pra mim foi!)
By: Didowarrior