SCRIPT:
const
spear_amount = 5 //numero de royals spears que te queden para dar alerta
pause_time = 10 // numero de segundos de pausa entre las 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 comentarios:
Publicar un comentario