Script de Alerta quando tiver X spears

Andarilhos agora com Scripts de TibiaBot NG e tal ves tenha o download

const
spear_amount = 5 //numero de royalspears pra alertar
pause_time = 10 // segundos de pausa entre os alertas
alert_file = 'c:\windows\media\notify.wav' // must be a wav file

begin
while not terminated do begin
UpdateWorld;
if Self.RightHand.Amount <= spear_amount then
begin
PlaySound (alert_file);
sleep(pause_time*1000);
end;
sleep(100);
end;
end;

0 comentários: