Jump to content

Anti-Captcha / Alarm Captcha L2 Adrenaline


Anitah

Recommended Posts

wut ? :D lol did you read this code or not ? 

  if engine.dlgtext.contains('Refresh') or

it looks for dialog text, even more it looks for something that is writed there, what i pruposed is to make a window that contains only images - captcha itself(digits) and image that says that you need to enter it. But there is even more -it might be possible to change the tutorial window name, or even change tutorial window itself to something other - that is not engine.dlgtext, engine.tutorialwindow, in these case - your script is useless, if you dont know the real name of the window, or a way to get it.

u are clueless rotfl, tutorial and npc dialog are just types of 2 packets,

you can change whatever you want inside or add any number of dds textures - still bypassable in 5 rows of script.

Have fun wasting your time.

Link to comment
Share on other sites

  • 1 month later...

Hey guys, when I put this script up to 2 windows of L2 - 1 works right, but the second lugs, music always replays. What I should change to make this script workable on 2 windows of L2?

Link to comment
Share on other sites

Hey guys, when I put this script up to 2 windows of L2 - 1 works right, but the second lugs, music always replays. What I should change to make this script workable on 2 windows of L2?

Load the script for each box u load, to stop the music to replay just open a new dialog window depending on the server u play .cfg .ccp.

Link to comment
Share on other sites

  • 2 weeks later...

hi friend, I do not understand how to stop the sound , in that part have to put that sound .cfg keep runing?

you need open new dialog window, with command .menu .cfg or what your server have as achylek say

if server dont have that command for new windows then you need make rr or go to some npc and open dialog with npc xd

Link to comment
Share on other sites

you need open new dialog window, with command .menu .cfg or what your server have as achylek say

if server dont have that command for new windows then you need make rr or go to some npc and open dialog with npc xd

haha thanks work :D

Link to comment
Share on other sites

Hey guys i have puted the script adr.bot shared but it didnt work. Iam doing anything wrong? I found some dude sharing this http://i.imgur.com/rrzGlpA.jpg, its his script for captcha but i tryed to put it but i get some error.

Anyone can help me how to write this guy script on the bot language? Thanks in advance !

Edited by TradeMark
Link to comment
Share on other sites

Hey guys i have puted the script adr.bot shared but it didnt work. Iam doing anything wrong? I found some dude sharing this http://i.imgur.com/rrzGlpA.jpg, its his script for captcha but i tryed to put it but i get some error.

Anyone can help me how to write this guy script on the bot language? Thanks in advance !

if doesnt work then you need check if engine.dlgtext.contains('Refresh') or

chnange refresh name of your captcha dialog, second cant be if your captcha added not in dialog window thats why doesnt work

Link to comment
Share on other sites

if doesnt work then you need check if engine.dlgtext.contains('Refresh') or

chnange refresh name of your captcha dialog, second cant be if your captcha added not in dialog window thats why doesnt work

change the refresh to a random name?

i have this on script:

 

 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.
 
 
when i said it didnt work i meant it didnt entered the captcha by it self 
 
What i have to do?
Link to comment
Share on other sites

 

change the refresh to a random name?

i have this on script:

 

 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.
 
 
when i said it didnt work i meant it didnt entered the captcha by it self 
 
What i have to do?

 

this not enter captcha script, this is only alarm

Link to comment
Share on other sites

  • 1 month 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.

work for this ?

 

NQdJNiUt.jpg?1

Link to comment
Share on other sites

work for this ?

 

NQdJNiUt.jpg?1

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.
Edited by AchYlek
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.




  • Posts

    • Welcome to my store : https://topestore.mysellix.io/fr/ 2015-2022 Aged Discord Account 2015 Discord Account : 60.99 $ 2016 Discord Account : 10.50 $ 2017 Discord Account :4.99 $ 2018 Discord Account : 3.99 $ 2019 Discord Account : 2.99 $ 2020 Discord Account :1.99$ 2021 Discord Account :1.50$ 2022 Discord Account :0.99$ Warranty :Lifetime Payment Methods : Crypto/ PayPal Contact Me On Discord Or Telegram Discord : @ultrasstore11 Telegram : https://t.me/ultrastore11 Whatsapp ; +212614849119
    • The heavy lifting is done in the client, because while you can get away with small imperfections in the java, everything in the client must be impecable. So, if you haven't touched the client, I'd say pick the newest protocol version you can find the client editing tools and Interface.u (mandatory) / NWindow.dll (better to have it) / Engine.dll (optional) sources for. At the very least, you need the Interface.u to fix the Clan Window and enable skill enchanting on Classic/Essence versions, if you decide to use one of them instead of MAIN/LIVE.
    • Thanks for clarification. Do you think the newest clients offer solid advantages compared to the classic ones like Salvation? I'm also in the process of porting h5 to one of them just for the sake of it, so I was wondering if I should just attempt to go to the newest possible.
    • Upgrading to Salvation is exactly the same as upgrading to the newest client with the only difference being access to free-shared client editing tools and resources. I am speaking from experience. I have upgraded my HF source to one of the newest clients by myself (in terms of server side. got help with the client) and hit every single wall there was in the process. Now, I already have several multi-protocool server cores so I can easily compare different approaches to tackling the same issue, which also helped the learning process. Best way to learn would be to use this one (link below) to snoop around and figure out what has been changed in the server side (the packet structure will be different, for sure, but works for understanding/figuring the process out in general terms). https://github.com/iBezneR/L2J_SunriseProject_Purity The client side will always be the same, always the same files, only the DAT structure will be different. I personally wrote myself some parsers for the data of the DAT files from OLD -> NEW client.
  • Topics

×
×
  • Create New...