Jump to content

ANTI CAPTCHA SCRIPT


Pokimane123

Recommended Posts

2 hours ago, Pokimane123 said:

I need this script captcha anyone can help me??   E8YRuQ

 

use this

 

uses sysutils,classes;
var
  p1,p2:pointer;
begin
  while true do
  begin
    if engine.waitaction([ladlg], p1, p2) = ladlg then
    begin
      if pos(lowercase('bot'), lowercase(engine.dlgtext)) <> 0 then
      begin
        delay(555);
        engine.bypasstoserver('antibot_correct');
      end;
    end;
  end;
end.

 

Link to comment
Share on other sites

uses SysUtils, Classes;

var
a1, a2: integer;

procedure Captcha;
begin
  while delay(100) do begin
    if Engine.Status = lsOnline then begin
      case Engine.WaitAction([laDlg], a1, a2) of
        laDlg: if (Pos('Antibot', Engine.DlgText)>0) then
         Engine.BypassToServer('antibot_correct'); 
      end;
    end;
    delay(1000);
  end;
end; 

begin
  Script.NewThread(@Captcha);
end.

 

Link to comment
Share on other sites

  • 1 month later...

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now


×
×
  • Create New...