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

How do you use this script? If I use it in L2Tower all it says is Script error: Lua Error (Script not valid) etc

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

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock