Jump to content

Alessonborges

Members
  • Posts

    4
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by Alessonborges

  1. Can any charitable soul help me with scripting for this kind of captcha? Thank you so much.

    Obs:

    his script worked and alert when you open the captcha windows:

     

    function SetForegroundWindow(hwnd: integer) : Boolean; stdcall;
        external 'user32.dll';

        function captcha:boolean; begin
                 if engine.dlgtext.contains('Refresh') or
                 engine.dlgtext.contains('Captcha') or
                 engine.dlgtext.contains('60 seconds') or
                 engine.dlgtext.contains('Bot')   then begin
           SetForegroundWindow(Engine.GameWindow);             
          PlaySound(exepath+'\sounds\'+'PlayerAlarm'+'.wav');
          delay(500);  
          StopSound;
              end;   
      end;
    begin
      while true do begin
      delay(300);
       captcha();
    end;
    end.

     

     

    59dc4b1e6db85_captchasimbols.jpg.14e52cfb7481e60bc7bcc22af2847e5f.jpg

  2. function SetForegroundWindow(hwnd: integer) : Boolean; stdcall;
        external 'user32.dll';

        function captcha:boolean; begin
                 if engine.dlgtext.contains('Refresh') or
                 engine.dlgtext.contains('Captcha') or
                 engine.dlgtext.contains('60 seconds') or
                 engine.dlgtext.contains('Bot')   then begin
           SetForegroundWindow(Engine.GameWindow);             
          PlaySound(exepath+'\sounds\'+'PlayerAlarm'+'.wav');
          delay(500);  
          StopSound;
              end;   
      end;
    begin
      while true do begin
      delay(300);
       captcha();
    end;
    end.
     

    this script worked and alert when you open the captcha windows

     

×
×
  • Create New...