Jump to content

L2 Adrenaline Scripts.


Recommended Posts

  On 12/6/2017 at 5:34 PM, 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;

 

Guys i need your help here, so im playing on a server that it uses this anti bot captcha but the admin changed it a bit and the script does not work, when the anti bot moves you to town it says '' you failed clicking on the bog, '' it doesnt even make sense, do u know what can i change on the script or at least try something to see if it will work.   Thank you in advance 

Link to comment
Share on other sites

53 minutes ago, xbadjoke said:

hello anyone know script to change shadow weapon when dissapear?

var

shadowWeap: TL2Item;

 

begin

while delay(555) do begin

if inventory.user.byid(*****, shadowWeap) and not shadowWeap.equipped then begin

engine.useitem(shadowWeap);

end;

end;

end.

//Replace ***** with weapon id

  • Like 1
Link to comment
Share on other sites

Hi @adr.bot any idea how use skill after pm any string to buffer?

Example:

 

"MyBD warrior
 My Bladedancer uses warrior dances

 

"MyPP archer

  My Prophet uses buffs for archers

"MyPP mage

  My Prophet uses buffs for mages

Link to comment
Share on other sites

2 hours ago, Luigicol said:

Hi @adr.bot any idea how use skill after pm any string to buffer?

Example:

 

"MyBD warrior
 My Bladedancer uses warrior dances

 

"MyPP archer

  My Prophet uses buffs for archers

"MyPP mage

  My Prophet uses buffs for mages

begin
  while delay(555) do
  begin
    if chatmessage.unread and (pos('test',chatmessage.text) > 0) then
    begin
      // do stuff
    end;
  end;
end.

 

Link to comment
Share on other sites

  • 3 weeks later...

HI @adr.bot, how are u? I hope fine.

 

I'm trying to farm using my spoiler, but it does not always use the sweeper skill. I'm playing l2 lionna, classic 2.8. Would you have some script to spoil and use sweeper? Or something like that, because I feel like I'm losing a lot of farm (I'm trying to farm eab / ewb).

 

Thanks in advanced

Link to comment
Share on other sites

1 hour ago, thalestvn said:

HI @adr.bot, how are u? I hope fine.

 

I'm trying to farm using my spoiler, but it does not always use the sweeper skill. I'm playing l2 lionna, classic 2.8. Would you have some script to spoil and use sweeper? Or something like that, because I feel like I'm losing a lot of farm (I'm trying to farm eab / ewb).

 

Thanks in advanced

hi, no i dont have

Link to comment
Share on other sites

Any idea how to get the coordinates of these points (for the captcha) on L2Pandora? 

 

capcha.jpg

 

The HTML captcha does not give any hint about correct answer. Example html table: https://dpaste.de/4bMC

 

Any idea how to proceed?

Link to comment
Share on other sites

Hi @adr.bot can u help me? :D Or some 1

 

I'm making a script to autofarm but when I die I can sometimes respawn in giran and another 1 in gludio, how can I make it move to one place or another depending on the city where i respawn?
 
Im trying with this:
 
 
 
    if not User.Buffs.ByID(1413, buff) and user.inrange(81153, 148677, -3464, 3500) then begin
	            Engine.MoveTo(82015, 147986, -3495);
	                    delay(1000);
	    Engine.MoveTo(83176, 148352, -3432); //buffer giran
	   if not User.Buffs.ByID(1413, buff) and user.inrange(-14404, 123473, -3112, 4000) then begin
	   Engine.MoveTo(-14210, 123813, -3112);     //buffer gludio				
 
 
But it does not move in either of the two cities.
Sorry if it's something obvious I'm starting and I'm saturated in some things with so much information of scripts and such.
 
Thanks.
 
I alrdy fixed it, thanks anywais :D
Edited by xCarroza
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...