darknesscrysis Posted June 18, 2017 Posted June 18, 2017 I'm trying to play a sound when the captcha pops up but I don't know how to detect the tutorial window. Quote
Szakalaka Posted June 18, 2017 Posted June 18, 2017 Expensive solution: hire a man to look at the screen 24/7 and make him inform you Quote
darknesscrysis Posted June 19, 2017 Author Posted June 19, 2017 If it checks for any window and not only a dialog one it's good too. Quote
darknesscrysis Posted June 28, 2017 Author Posted June 28, 2017 Is this working for anyone? uses sysutils,classes; var alarm:boolean= false; procedure OnPacket(ID, ID2: Cardinal; Data: Pointer; Size: Word); begin if (IntToHex(ID, 2) = 'A0') and (not alarm) then alarm:= true; end; procedure doAlarm; begin while delay(1111) do begin if alarm then begin playsound(exepath+'sounds\playeralarm.wav'); delay(2222); end; end; end; begin script.newthread(@doAlarm); delay(-1); end. Quote
adr.bot Posted June 28, 2017 Posted June 28, 2017 Is this working for anyone? uses sysutils,classes; var alarm:boolean= false; procedure OnPacket(ID, ID2: Cardinal; Data: Pointer; Size: Word); begin if (IntToHex(ID, 2) = 'A0') and (not alarm) then alarm:= true; end; procedure doAlarm; begin while delay(1111) do begin if alarm then begin playsound(exepath+'sounds\playeralarm.wav'); delay(2222); end; end; end; begin script.newthread(@doAlarm); delay(-1); end. for interlude works, doesnt work on cracked bot, paid only Quote
darknesscrysis Posted June 30, 2017 Author Posted June 30, 2017 Here http://rawr.su/topic/3577-captcha-warland/ it seems to be another solution but I can't understand it properly, so I don't know if it worked for anyone. Where can I download l2phx 3.5.34.176? Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.