Jump to content

Recommended Posts

Posted
11 minutes ago, the_martines said:

Thanks a lot @Vinter! I've almost lost hope this is possible at all. 

Yeah np if you have any problems hit me up on PMs. I tested this on protocol 152 so it might not work on your version depending if the packets have changed or not. I also didn't make a buy store script cause I usually find myself doing it manually, but it can be easily modified to add buy store aswell.

Again make sure you have the items in your inventory and that you have the amount or you're gonna send a bad packet to the server which might do nothing or straight up ban you right there and then.  

Also because the packet uses objectId instead of itemId, if you have 2 items that are not stackable (ex a +16 B grade bow and a +0 B grade bow) the script will pick the first one it finds in your inventory, so be careful about that too. I know pretty shoddy code but that's how I roll.

Posted
4 hours ago, MrAnGel_700 said:

Script for L2Reality.com  Auto Captcha (Captcha Anti Bot with photo.. ) 
 

Plz help me 

 

A little tip for next time, if you want someone to actually help you, provide actual information. There are dozens of catpchas going around, and most use "photos." What you need to do in this case is post a screenshot of your captcha, and if possible the full HTML window code. (please, with proper CODE tags, it's the symbol "<>" avobe the text body when you post.) If we don't have this information, unless we download whatever system your server runs and create a character ourselves (which guess what I'm not gonna do) people can't help you. Do that and the people that would help you, will.

Posted
On 1/9/2018 at 2:12 AM, Vinter said:

 

A little tip for next time, if you want someone to actually help you, provide actual information. There are dozens of catpchas going around, and most use "photos." What you need to do in this case is post a screenshot of your captcha, and if possible the full HTML window code. (please, with proper CODE tags, it's the symbol "<>" avobe the text body when you post.) If we don't have this information, unless we download whatever system your server runs and create a character ourselves (which guess what I'm not gonna do) people can't help you. Do that and the people that would help you, will.

thx you for info bro chek  AntiBot  Captcha
 


4Photo ELF  HUMAN  LINEAGE  DARK ELF 

Screenshot_1.png

Posted
13 hours ago, MrAnGel_700 said:

thx you for info bro chek  AntiBot  Captcha
 


4Photo ELF  HUMAN  LINEAGE  DARK ELF 

Screenshot_1.png

 

  • 2 weeks later...
Posted

I've been trying to make a script to automatically farm this quest. Basically, I need my char to farm mobs until 300 items (quest goes to stage 2), then he has to turn quest in and reopen it and restart the farming.


Here's what I've done this far:

       var
item: TL2Item;

function deadCheck: Boolean;
begin
Result := false;
    if User.Dead then begin
        Print('Dead. Pressing to clanhall.');
        Delay(1000);
        Engine.FaceControl(0,false);
        Engine.GoHome(rtClanHall);
        Delay(10000);
   end;
end;
procedure script1;
begin
engine.settarget('Tunatun');
delay(1000);
engine.dlgopen;
delay(1000);
engine.dlgsel('Quest');
delay(1000);
engine.dlgsel('Home Security');
delay(1000);
engine.dlgsel('Listen to his concern');
delay(1000);
engine.dlgsel('Offer to help');
delay(5000);
end;
procedure script2;
begin
while true do begin
delay(150);

  if User.Dead then begin
    deadCheck;
    end;

      Engine.MoveTo(53131,-84124,-2720);
        Delay(500);
        Engine.MoveTo(53736,-87114,-2456);
        Delay(500);
    if Engine.QuestStatus(278, 1) then begin
        Engine.FaceControl(0,true);
        Engine.LoadZone('BeastFarm');
    end;
    if Engine.QuestStatus(278, 2) then begin
    script3
    end;
    end;
end;

procedure script3;
begin
while true do begin
delay(150);

  if User.Dead then begin
    deadCheck;
    end;
    if Engine.QuestStatus(278, 2) then begin
    Engine.FaceControl(0,false);
        Engine.MoveTo(53736,-87114,-2456);
        Delay(500);
        Engine.MoveTo(53131,-84124,-2720);
        Delay(500);
        Engine.MoveTo(53658, -83826, -2720);
        Delay(500);
        engine.settarget('Tunatun');
        delay(500);
        engine.dlgopen;
        delay(500);
        engine.dlgsel('Quest');
        delay(500);
        engine.dlgsel('Home Security');
        delay(500);
        engine.dlgsel('Accept Reward');
        delay(1000);
        if Engine.QuestStatus(278, 0) then begin
    script1
    end;
    end;
     end;
end;
begin
Script.NewThread(@script1);
Script.NewThread(@script2);
Script.NewThread(@script3);
end.


I'm encountering 2 issues with this: first, while farming mobs sometimes my char seems to try to go to the next point, then he resumes kiling mobs, he goes a little batshit crazy, so I gues it's an indicator of something going wrong. 

The main issue though, is that it seems I can't make the procedures go into a loop, after he turns the quest in he doesn't restart from the beginning. I'm really not good at programmin, I've just been using the guide found on this forum and went for trial and errors, but at this point it seems I can't make it right.

Any help, pleaaaase?

  • 3 weeks later...
Posted

hello to all!! any1 know how can i take buffs with .buffer ? i mean in the server i am playing i must type .buffer and i open the dialogue.. my problem is how to stop attacking and type .buffer

Posted (edited)
On 1/2/2018 at 7:31 PM, Manowar81 said:

I've been trying to make a script to automatically farm this quest. Basically, I need my char to farm mobs until 300 items (quest goes to stage 2), then he has to turn quest in and reopen it and restart the farming.


Here's what I've done this far:

 


       var
item: TL2Item;

function deadCheck: Boolean;
begin
Result := false;
    if User.Dead then begin
        Print('Dead. Pressing to clanhall.');
        Delay(1000);
        Engine.FaceControl(0,false);
        Engine.GoHome(rtClanHall);
        Delay(10000);
   end;
end;
procedure script1;
begin
engine.settarget('Tunatun');
delay(1000);
engine.dlgopen;
delay(1000);
engine.dlgsel('Quest');
delay(1000);
engine.dlgsel('Home Security');
delay(1000);
engine.dlgsel('Listen to his concern');
delay(1000);
engine.dlgsel('Offer to help');
delay(5000);
end;
procedure script2;
begin
while true do begin
delay(150);

  if User.Dead then begin
    deadCheck;
    end;

      Engine.MoveTo(53131,-84124,-2720);
        Delay(500);
        Engine.MoveTo(53736,-87114,-2456);
        Delay(500);
    if Engine.QuestStatus(278, 1) then begin
        Engine.FaceControl(0,true);
        Engine.LoadZone('BeastFarm');
    end;
    if Engine.QuestStatus(278, 2) then begin
    script3
    end;
    end;
end;

procedure script3;
begin
while true do begin
delay(150);

  if User.Dead then begin
    deadCheck;
    end;
    if Engine.QuestStatus(278, 2) then begin
    Engine.FaceControl(0,false);
        Engine.MoveTo(53736,-87114,-2456);
        Delay(500);
        Engine.MoveTo(53131,-84124,-2720);
        Delay(500);
        Engine.MoveTo(53658, -83826, -2720);
        Delay(500);
        engine.settarget('Tunatun');
        delay(500);
        engine.dlgopen;
        delay(500);
        engine.dlgsel('Quest');
        delay(500);
        engine.dlgsel('Home Security');
        delay(500);
        engine.dlgsel('Accept Reward');
        delay(1000);
        if Engine.QuestStatus(278, 0) then begin
    script1
    end;
    end;
     end;
end;
begin
Script.NewThread(@script1);
Script.NewThread(@script2);
Script.NewThread(@script3);
end.

 


I'm encountering 2 issues with this: first, while farming mobs sometimes my char seems to try to go to the next point, then he resumes kiling mobs, he goes a little batshit crazy, so I gues it's an indicator of something going wrong. 

The main issue though, is that it seems I can't make the procedures go into a loop, after he turns the quest in he doesn't restart from the beginning. I'm really not good at programmin, I've just been using the guide found on this forum and went for trial and errors, but at this point it seems I can't make it right.

Any help, pleaaaase?

 

here u have test it:

 

item: TL2Item;
procedure checkDeath;
begin
  if (User.Dead) then
  begin
    Print('Dead. Pressing to clanhall.');
    Delay(1000);
    Engine.FaceControl(0,false);
    Engine.GoHome(rtClanHall);
    Delay(10000);
  end;
end;
procedure tunatun;
begin
  Engine.SetTarget('Tunatun');
  Delay(1000);
  Engine.DlgOpen;
  Delay(1000);
  Engine.DlgSel('Quest');
  Delay(1000);
  Engine.DlgSel('Home Security');
  Delay(1000);
  Engine.DlgSel('Listen to his concern');
  Delay(1000);
  Engine.DlgSel('Offer to help');
  Delay(1000);
if (not Engine.QuestStatus(278, 1)) then
  tunatun;
end;
procedure moveToSpot;
begin
  Engine.MoveTo(53131,-84124,-2720);
  Delay(500);
  Engine.MoveTo(53736,-87114,-2456);
  Delay(500);
end;
procedure itemSelMahumManeQuest;
begin
  Engine.LoadConfig(script.path+'BeastFarm');
  Engine.CancelTarget;
  Engine.FaceControl(0, true);
  repeat
    Delay(100);
    checkDeath;
  until ((Inventory.Quest.ById(15531, item)) and (item.Count >= 300));
  if (not Engine.QuestStatus(278, 1)) then
  itemSelMahumManeQuest;
  Engine.FaceControl(0, false);
  Delay(1000);
end;
procedure moveToReward;
begin
  Engine.MoveTo(53736,-87114,-2456);
  Delay(500);
  Engine.MoveTo(53131,-84124,-2720);
  Delay(500);
  Engine.MoveTo(53658, -83826, -2720);
  Delay(500);
  Engine.SetTarget('Tunatun');
  Delay(500);
  Engine.DlgOpen;
  Delay(500);
  Engine.DlgSel('Quest');
  Delay(500);
  Engine.DlgSel('Home Security');
  Delay(500);
  Engine.dlgSel('Accept Reward');
  Delay(1000);
end;
begin
  while true do
  begin
  Delay(100);
  tunatun;
  moveToSpot;
  itemSelMahumManeQuest;
  moveToReward;
  end;
end.

 

Edited by catamen
Posted

¿Hola chicos, cómo están? ¿Alguien me ayuda con un comando (Script) para el bot de adrenalina, que resuelve este Captcha solo?

 

 

 

 

InkedShot00000_LI2.jpg.ebe20762c4f16758a19fd483e7e0bb2d.jpg1.

Posted

Hello guys , i am new in botting , just got my first adrenaline. 

I came with an ask .. i need a script for farming Ancient Adena for example , does some1 has it to share it ? 

Thanks !

Posted
1 minute ago, siriys_blek said:

I came with an ask .. i need a script for farming Ancient Adena for example , does some1 has it to share it ?

 

just let a char farm on catas for seal stones,why u need scrip?

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



  • Posts

    • There was a time when SMS and MMS actually meant something. 📱 You’d hear that message tone, your heart would skip a beat — who texted? what did they say? Every “Hey :)” mattered, because every SMS cost money, and an MMS? That was pure luxury.     Now it’s simpler — no waiting, no saving characters, no wondering if it’ll deliver. You just go to VibeSMS.net — pick a country, choose a number, and get your code in seconds. ⚡     Back then we cherished every message. Now we just make sure everything gets delivered.   🌐 Website: vibe-sms.com 📢 Telegram Channel: https://t.me/vibe_sms
    • I fixed it now my friends can join too, with what do you want help with? Also can you upload the interlude client of gx-ext for c4? just to have it because i deleted the rar i just have the folder
    • me ayudas a montar ese pack por que no entiendo tanto es para tener de prueba
    • GX-C4 pack, its ok...just used it.
    • This post originally appeared on MmoGah. Arena Breakout: Infinite is a hardcore tactical extraction shooter that demands precision, patience, and strategy. This guide will walk you through everything a beginner needs to know—from gear and combat to survival and extraction.     What Is Arena Breakout: Infinite? Arena Breakout: Infinite (ABI) is a free-to-play online extraction shooter developed by MoreFun Studios and released on Steam in September 2025. Unlike traditional battle royales, ABI focuses on risk vs. reward rather than being the last one standing. Players enter instanced maps called "raids," where they must scavenge loot, survive enemy encounters, and extract safely.   Core Gameplay Mechanics 1. Raids and Extraction Each raid features 4–6 teams (solo or squad) dropped into a map. The goal is to loot valuable items and extract through designated points. Extraction is not exclusive—multiple teams can leave the map alive. 2. PvPvE Combat You'll face both human players and AI enemies. AI can be unpredictable and deadly, especially in high-tier zones. 3. No Hand-Holding ABI offers no tutorials or guidance. You learn by dying—and surviving.   Gear and Loadouts 1. Choose Wisely Your gear determines your survivability. Armor, helmets, and medical supplies are essential. Weapons vary in recoil, damage, and handling. Start with low-cost rifles like the AKS-74U or MP5. 2. Insurance System You can insure gear to recover it if you die and it isn't looted. Use insurance for expensive items, but don't rely on it blindly. 3. Backpacks and Storage Larger backpacks allow more loot but make you a bigger target. Organize your inventory to quickly access meds and ammo during combat.   Tactical Tips for Beginners 1. Know What to Loot Prioritize high-value items like weapon parts, medical kits, and rare electronics. Learn loot hotspots on each map—warehouses, bunkers, and military zones often yield better gear. 2. Sound Is Everything Footsteps, gunfire, and reloads are loud. Use headphones and move cautiously. Crouch-walking and slow peeking reduce noise and improve stealth. 3. Map Knowledge Study maps offline or in low-risk raids. Learn extraction points, choke zones, and sniper nests. 4. Stamina Management Sprinting drains stamina, which affects aim and movement. Rest in safe zones and avoid overexertion during firefights.   Combat and Survival 1. Engage Smartly Don't chase kills—survival and extraction are the real goals. Use cover, lean mechanics, and suppressive fire to control fights. 2. Healing and Damage ABI features a detailed health system: limbs can be fractured, bleeding, or disabled. Carry splints, bandages, and painkillers. Know how to treat each condition. 3. Death Is a Lesson You will die—a lot. Use each death to learn positioning, gear value, and enemy behavior.   Progression and Economy 1. Free-to-Play Friendly ABI is generous with starter gear and daily rewards. You can earn the currency Arena Breakout: Infinite Koens through successful raids and selling loot. 2. Marketplace Trade gear with other players or sell to vendors. Prices fluctuate—learn market trends to maximize profit. 3. No Skill Trees Unlike similar games, ABI doesn't use operator skills. Progression is gear-based and tactical, not RPG-style.   Settings and Optimization 1. Graphics and Performance Lower shadows and post-processing for better visibility. Use high FPS settings for smoother combat. 2. Keybinds Customize controls for quick access to healing, leaning, and inventory. Practice muscle memory in offline raids. 3. Audio Settings Maximize footstep and gunfire volume. Reduce ambient noise to focus on threats.   Beginner Loadout Recommendation Slot Item Notes Primary Gun AKS-74U or MP5 Low recoil, easy to handle Secondary Pistol (optional) Backup for emergencies Armor Basic Vest Better than nothing Helmet Light Helmet Protects against headshots Backpack Medium Balance between space and size Meds Bandages, Splints Treat bleeding and fractures Ammo 2–3 extra mags Always reload before fights         Final Advice for New Players Start slow: Don't rush into high-tier zones. Learn the basics in low-risk areas. Play with friends: Squad play improves survival and makes learning easier. Watch and learn: Study streamers and guides to understand advanced tactics. Don't hoard: Use your gear. Hoarding leads to stagnation and fear of loss. Extract often: Surviving and extracting builds confidence and resources. Arena Breakout: Infinite is brutal, but deeply rewarding. With patience and practice, you'll evolve from a terrified scavenger to a confident operator. Every raid is a story—make yours one of survival and triumph.
  • Topics

×
×
  • 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