Jump to content

Recommended Posts

Posted
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.

 

Posted
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.

 

  • 1 month later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..