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

    • Try to add before the row " ; " like in File_52= ;File_52={{[chatfilter.ini];{363E6F64AABB21A81C61E9C89737B84F}}}   [CliExt_Files] Enabled=1 MostrarMensajesConsola=1 ;File_1={{[ALAudio.dll];{9BBF6199558AE72F3CB8C54D4A09009F}} ;File_2={{[Core.dll];{B519540B5F7F5B9153263ECB492E88CC}} ;File_3={{[D3DDrv.dll];{8AB869364379486F220259FA1C6C7D90};{F99D13D552D2E19F5EFD195B264BC2F8}} ;File_4={{[defopenal32.dll];{ECAB7CB66244BFB9FD926ADBDEEB0412}} ;File_5={{[dsetup.dll];{230173F19C0AD3648B455F50C9088EA2}} ;File_6={{[encvag.dll];{DC48574DC8C7B4DF5708A53AF50AFE8A}} ;File_7={{[engine.dll];{BD3F551F5F942CABF7457084E810FD62}} ;File_8={{[Fire.dll];{961D0C1622CC7D41682BA3E2600E62FE}} ;File_9={{[ifc23.dll];{3A1970D3E997B018FBC776560740B95E}} ;File_10={{[IpDrv.dll];{4DCD3F45A05B962B458B13969C5F906B}} ;File_11={{[LineageCreature.dll];{B212DACDECBAB47CC09DB633C232CF18}} ;File_12={{[lineageenv.dll];{3C2506853038560AA66D5DA32DFC795F}} ;File_13={{[msxml4.dll];{7851D6CFA3AA0B41444978F2EAC40FE1}} ;File_14={{[msxml4a.dll];{31AF8904D926B6EDF664E420E0E58865}} ;File_15={{[msxml4r.dll];{644031676F66BC9DBC1989D2F73044E6}} ;File_16={{[nosleep.dll];{E70AFA303842DBA60FF0E8CEFEA3E513}} ;File_17={{[npkcrypt.dll];{A89A8D11CD3C9D8C75B91EA40E3A38FF}} ;File_18={{[npkpdb.dll];{755F8B8BEBC46D524ED232FB46F44575}} ;File_19={{[nwindow.dll];{4AD629893C278777987DA63A2792C6AD};{6C1B532F8FB48657D5BAC6B2944E83B8}} ;File_20={{[ogg.dll];{DB3A7B14F42EE908B966D3E03FB31A44}} ;File_21={{[openal32.dll];{432204FEE4A5CF3D9AF1D518CF135DEF}} ;File_22={{[orc.dll];{292658615568B670CA54CDF0C7F05DA1}} ;File_23={{[vorbis.dll];{991B6CEBEC143D42E2E837A85A67FBC1}} ;File_24={{[vorbisfile.dll];{79DC3FB2408AAFB15A0C7432C3498256}} ;File_25={{[Window.dll];{769B7A97B3EF8693DCEDEF0916005767}} ;File_26={{[WinDrv.dll];{A01CA9CBE89CE9AB665BA4D64CF15865}} ;File_27={{[wrap_oal.dll];{3F4A774BE86425D0FE098F9D82C12DE9}} ;File_28={{[Core.u];{16FC24769D23435B7F25C7B93B7396D3}} ;File_29={{[Editor.u];{1FF6A7867E913AB658D2AB9CEC5A3A19}} ;File_30={{[Engine.u];{F3CD3D4BFF79246C6D54AB381DE8E7CA}} ;File_31={{[Fire.u];{D3627A58A9339565EF9A313C58130C24}} ;File_32={{[GamePlay.u];{F0CFF07EB8318E45AAFDB8FDD32ABE44}} ;File_34={{[IpDrv.u];{E37822CA6BD9DED36858EBBE91F5A6BA}} ;File_35={{[LineageCreature.u];{4DAFE33542B9E86519A2931EEA1B0244}} ;File_36={{[LineageDeco.u];{F71E69C0F16A285DC860F63BFDF93747}} ;File_37={{[lineageeffect.u];{65F0DBB83A8DC7C859FD990D7B2DED0E};{17D901593A7B3042084E2A0A0ACCEE36}} ;File_38={{[lineageenv.u];{8982D65168E1319770237EFC3D0FD4E4}} ;File_39={{[LineageMonster.u];{512232DBC8DF6D027363C9925D86D0CD}} ;File_40={{[LineageMonster2.u];{74BEC9C4E3384885CACA83590EF240CC}} ;File_41={{[LineageMonster3.u];;{2838C03A1D38A218F68B7101BD6A5B76}} ;File_42={{[lineagenpc.u];{A5DE036E6C69FFDDD386FB7F33BB699E}} ;File_43={{[lineagenpc2.u];{4D603979200EFCC17BE4DBF342358799}} ;File_44={{[lineagenpcev.u];{A569BA469C17DB6FE5DBD9E5B6170AF6}} ;File_45={{[LineageVehicle.u];{51764074182854077DB32528223E2678}} ;File_46={{[LineageWarrior.u];{CCF42641F30C4639ED8D316B9A4E1F42};{FA89E977FD204296FC0E9D59F0E9A272}} ;File_47={{[nwindow.u];{360DFAFDCD0509E48B09CD491242FD54}} ;File_48={{[udebugmenu.u];{8195778FB290CCD62C5DEF2F6671C11C}} ;File_49={{[UWindow.u];{5D7CAF94751BF1FCDEBB9B2BEF502B02}} ;File_50={{[L2.exe];{379A0AD30E300AD8BB5DD8A149EBC515}} ;File_33={{[interface.u];{014A36E6A55EE1A7F9C3D37B5B877613};{F191D538FCEA5E4B3038B428E04C7ECD};{1B4DD48DEC6F97B6C8D3255B1147E9EC}} ;File_51={{[interface.xdat];{078434CCE990486A1D7B41835E69FABB};{8B6090820C7B32204BE5AA9ABABDEFF3}} ;File_53={{[_Interface.u];{00000000000000000000000000000000}} ;File_54={{[CliExx.dll];{00000000000000000000000000000000}} ;File_55={{[l2ui.dll];{00000000000000000000000000000000}} ;File_56={{[npkscrypt.dll];{5908C3EE24B40F6F08F1500723B1A41D}} ;File_52={{[chatfilter.ini];{363E6F64AABB21A81C61E9C89737B84F}} ;File_53={{[Client.ini];{1906F536DB0890BA89AEB12A81A44876}} ;File_54={{[l2.ini];{F1C1441E187AC18A0473F8D6C7E3F90D}} ;File_55={{[Lineage2us.ini];{DF2166EAD1F750E22F8EBC18DC1FA14C}} ;File_56={{[Localization.ini];{FBA90399D006FF4A842D1EF832BFB5DF}} ;File_57={{[Option.ini];{626C690FF12E4AB1BA974FB2E4A3C1BD}} ;File_58={{[s_info.ini];{D34E9E0B34595812A72AABA13997F097}} ;File_59={{[ttfontinfo.ini];{CBEB6D54158002449958B24DFB13BFFD}} ;File_60={{[user.ini];{325704B1149A55CDA0B52B01329AC3F6}}   or generate new MD5 hash for your patch! 
    • no have autofarm system
    • Which part is a scam exactly? Please explain me. My project, my rules. I don't ask that much. I'm not some charity. And it's not my problem if the customer ruins his server pack by himself and refuses pay for updates. I don't work just for fun. The most important thing he had the only one problem that told me and it was about boss stat, because he felt it's wrong.... He did not have anything to compare, he just felt it's wrong. Smart? Yeah it's very smart...  More info here:  This guy doesn't understand how the server works and changed many things without understanding/knowledge what he is actually doing. He changed random configs, tried add stats by himself. He mixed files, server pack updates without the right server core. These customers like him are just a severe headache... However, I tried to help him every time and never disappeared, but he did many times. Now I see why. It's weird like people acts, one day he says thanks and in next, he calls me a scammer.  What he needed to do, just a get membership that costs 5GBP/week... Just 5GBP 😐  It's even ridiculously small. So, he needed just update his server pack up to the latest or ask me to do it and that's all, but no, he worked on his own and ruined the server. End of story. And now I'm a scammer? Why? I work my job and I'm not charity. If you can't pay just 5GBP then sorry, but server is not for you, because you won't be available to pay your bills for his own server's website, VDS, guard and so on. This screenshot also proves that I never disappeared until he did. 🙂   and this one about - he never talked to me about any other problem and when I asked about his friend comments here at this forum I didn't get any answer, but this post. Thanks a lot 🙂  You're like a rabid dog that needs to be put to sleep. Everywhere every time  where you see me or my project name you always finds what to say bad. Please don't forget visit your doctor, because something really wrong with you.
  • 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