Jump to content

L2 Adrenaline Scripts.


Recommended Posts

1 hour ago, L2Trade123 said:

@adr.bot any idea how to adjust bypasses? I have win10 and recording doesn't work in adrenaline in my case

Open l2 / adrenalin.exe with compatibility for win7

Link to comment
Share on other sites

  • 2 weeks later...
42 minutes ago, satryus said:

@adr.bot you know if have some command to make chars buy or sell  things on players private store? Thank you!

i dont know any command, and not sure if there is command to do that, but you can do it with packets

Link to comment
Share on other sites

  • 2 weeks later...

@adr.bot I am having a problem in auto buff, when I try to get the path to the buff, the server is giving me random numbers, how can I solve it with ByPassToServer?

 

 

 

SCRIPT.png?1547579689

 

 

 

random_codigos.png?1547579739

 

BUFF.png?1547579578


Edited by jhomgtw
Link to comment
Share on other sites

44 minutes ago, jhomgtw said:

@adr.bot I am having a problem in auto buff, when I try to get the path to the buff, the server is giving me random numbers, how can I solve it with ByPassToServer?

 

 

 

SCRIPT.png?1547579689

 

 

 

random_codigos.png?1547579739

 

BUFF.png?1547579578


yeah, well there is example for dialogs, but can be modified for alt b too, https://adrenalinebot.com/en/api/example/work-with-dynamic-bypasses-parsing-regular-expressions good luck

Link to comment
Share on other sites

  • 2 weeks later...

function keybd_event(bVk,bScan:byte;dwFlags,dwExtraInfo: integer): integer;  stdcall; external 'user32.dll';
function SetCursorPos(x, y : integer): boolean; stdcall; external 'user32.dll';
function mouse_event(dwFlags, dx, dy, dwData: byte; dwExtraInfo: integer): void; stdcall; external 'user32.dll';

procedure pressKey(hexCode: BYTE);
begin
  keybd_event(hexCode, 45, 1, 0 );
  delay(200);
end;

procedure mouseClick(x, y, _delay : integer);
begin
  SetCursorPos(x, y);
  mouse_event($2, 0, 0, 0, 0);
  delay(_delay);
  mouse_event(4, 0, 0, 0, 0);
end;


    begin
    repeat
Delay(1500);
Engine.MoveTo(149640, -55704, -2760);
     Engine.SetTarget('buffera');  //Target do buffer
     Delay(1500);
     Engine.DlgOpen; // buffer
     Delay(1500);
     mouseClick(620, 501, 1500); // take the coordinates but not click
     Engine.DlgSel(6);
     Delay(1500);
         mouseClick(604, 255, 1500);
         Delay(1500);
           Engine.DlgSel(1);
     Delay(1500);
      mouseClick(604, 255, 1500);
     Delay(1500);
      Engine.SetTarget('teleporte');  //Target do NCP GK
     Delay(1500);
     Engine.DlgOpen; // abre chat combat npc
     Delay(1500);
     Engine.DlgSel(4);
     Delay(1500);
     Engine.DlgSel(6);
     Delay(1500);
  
     until Engine.Status = lsOffline;
  Delay(5000);
end. 

 

 

 

 

 

Please I need help. the script is not giving an error, but the mouseclicker function is not working. it takes the cordenadas that I put but not click and so can not get the buffs macro can anyone help?

Link to comment
Share on other sites

  • 2 weeks later...
On 1/16/2019 at 2:13 AM, jhomgtw said:

@adr.bot I am having a problem in auto buff, when I try to get the path to the buff, the server is giving me random numbers, how can I solve it with ByPassToServer?

 

 

 

SCRIPT.png?1547579689

 

 

 

random_codigos.png?1547579739

 

BUFF.png?1547579578


 

I have same issue, try to use Record Script , WinHex but didnt' work, i think this L2lionna server is mod bypass, each time i get bypass is a non-stop random number ;s. Help plz

Link to comment
Share on other sites

hello i apologize in advance if this is the wrong thread to ask for help. i know nothing about scripts or coding just average gamer

trying to make this script self triggering when in certain location (Giran). this is what i got so far it works if i click it once but i want it to self trigger whenever i get teleported from pvp zone back to giran like a repeat button due to pvp zone changing place (teleport lines work perfectly fine with zone changing) many thanks to anyone that can helpUntitled.png.fd5e17ce910ee150d43b7530ce73b65d.png

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