const
minMana = 200; //Mana pra usar MF
while not Terminated do
begin
UpdateWorld;
if (Self.Mana < minMana) then
begin
Self.Containers.UseItemWithSelf(268)
Sleep(1000);
end;
Sleep(100);
end;
Legenda:
Azul: Altere o valor para o tanto de mana que deve estar para usar um MF
Vermelhor: ID (codigo) do potion a ser uzado, altere para o ID do potion que deseja uzar
IDs
Health Potion -> 266
Strong Health Potion -> 236
Great Health Potion -> 239
Ultimate Health Potion -> 7643
Mana Potion -> 268
Strong Mana Potion -> 237
Great Mana Potion -> 238
Great Spirit Potion -> 7642
Download
minMana = 200; //Mana pra usar MF
while not Terminated do
begin
UpdateWorld;
if (Self.Mana < minMana) then
begin
Self.Containers.UseItemWithSelf(268)
Sleep(1000);
end;
Sleep(100);
end;
Legenda:
Azul: Altere o valor para o tanto de mana que deve estar para usar um MF
Vermelhor: ID (codigo) do potion a ser uzado, altere para o ID do potion que deseja uzar
IDs
Health Potion -> 266
Strong Health Potion -> 236
Great Health Potion -> 239
Ultimate Health Potion -> 7643
Mana Potion -> 268
Strong Mana Potion -> 237
Great Mana Potion -> 238
Great Spirit Potion -> 7642
Download