Jump to content

Anti-Captcha / Alarm Captcha L2 Adrenaline


Anitah

Recommended Posts

 

uses SysUtils;
 
 
 var tmpDialog,tmpString:string;
 var posCaptcha, num1, num2, resultNum, count:integer;
begin
  while Engine.Status = lsOnline do begin
    tmpDialog := Engine.DlgText;
    if (Pos('Активирован штраф', tmpDialog) <> 0) then
begin
tmpString:='';
tmpDialog:=''; // Наверное на делфи это не нужно делать, но у меня привычка.
// Ищем капчу в диалоге
    tmpDialog:=Engine.DlgText;
    posCaptcha:=pos('<font color=LEVEL>',tmpDialog);
posCaptcha:=posCaptcha+19;
 
 
// Выдираем 1 число из капчи 
while not (tmpDialog[posCaptcha] = ' ') do begin
tmpString:=tmpString + tmpDialog[posCaptcha];
posCaptcha:=posCaptcha + 1;
end;
num1:=StrToInt(tmpString);
 
 
// Выдираем 2 число из капчи 
tmpString:='';
posCaptcha:=posCaptcha + 3;
while not (tmpDialog[posCaptcha] = ' ') do begin
tmpString:=tmpString + tmpDialog[posCaptcha];
posCaptcha:=posCaptcha + 1;
end;
num2:=StrToInt(tmpString); 
 
 
// Решаем
resultNum:=num1 + num2;
print(IntToStr(resultNum));
 
 
// Отправляем ответ на капчу 
Engine.BypassToServer('00 '+IntToStr(resultNum), True); 
count:=count+1;
print ('Капча выскакивала -->'+IntToStr(count)+'<-- раз, но мы ее обошли =)');
end;
Delay (888);
end;
end.

 

 

Where is the hack or something? :dat:

Link to comment
Share on other sites

  • 3 weeks later...
  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.

Hello,

is there any anti-captcha script for this kind of Captcha system ??Cause this one isn't working for my server.

thanks.

XB4SNBc.jpg?1

Link to comment
Share on other sites

  • 2 weeks later...
  • 2 weeks later...

then post that simple non-dialogue anticaptcha script that you created

i guess when captcha shows show in system messages, probably he check lasysmsg, but maybe im wrong :D btw dont ask, i cant log in with cracked bot so i cant make that

Link to comment
Share on other sites

for tales i guess working that allarm

 

PS if someone play Cartel feel free report me at "Deep inside DV South" nick AdrEasy

 i check first one.. and nothing.. all the time.fuking alarm on.. without report.

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now



×
×
  • Create New...