Jump to content

New L2Net release - June3_2018


devmvalvm

Recommended Posts

Hello all,

I took the liberty to take the very latest version of L2Net (2015-09-10) and make it usable for Hi5.
    Previously, this version would only work in official's Lindvior server.
    There are many small changes that happened from the latest official release of L2Net by mpj and oddi. So, take these advantages.

 

What drove me to do this was a goddamn annoying memory leak bug in L2Net's OOG (1.5 GB of RAM per client after 12 hours of botting. GG).
    This bug has been present since L2Net's inception, I believe.

 

A 7zip file is available here:
    https://github.com/devmvalvm/L2Net/blob/master/L2Net_June3_2018 .7z


Be sure to follow the normal setup (l2.ini file in system folder, have .NET installed, etc. Read any L2Net guide)

Code is completely available and open. This is the GitHub page:
    https://github.com/devmvalvm/L2Net

 

This is the change log:
    Took latest L2Net and reverted it back to H5
    Fixed a pretty nasty memory leak that affected OOG mode.
    Put back parsing -o/-options from command line arguments
        Options file will now be loaded at EnterWorld
    Created a new global variable for scripting: PARTY_LEADER
        When loading Party Info, PartyLeader (ID number) is now stored
        PARTY_LEADER will use this info
    Various minor fixes, code refactoring and optimization changes.

 

One of the minor fixes is that the default IP is now L2Idle's (I'm lazy, that's why I bot). I have no relationship to this server, other than that I played the last two months in this server to satiate my desire to bot.

The server allows bots, so if you want to bot and script, check it out. http://lineage2idle.com/

 

Many thanks to Oddi and mpj123, those guys are the real stars.

I'll keep supporting the project, but only for groundbreaking bugs. If you find one, let me know in GitHub.

 

Regards,
-devmvalvm

Edited by Vision
  • Thanks 1
Link to comment
Share on other sites

This... is... AWESOME! The memory leak was so frustrating. I've been scripting for sometime on L2net for secondary farming (Academy, low spoil, craft services and etc.), but it was so annoying to get 'cock blocked' by memory leak. Thank You devmvalvm

 

We used to play on http://lineage2idle.com/ too, great idea, that's what I needed in my gaming life - not to worry if I will get busted botting, and having to tone down bot capabilities to look more like real player. I hope it catches more popularity soon. Now we jumped over to https://l2toggle.com 

 

Once again, so many thanks from us! We owe You a beer or something :D

Link to comment
Share on other sites

This is actually quite interesting. Back in the days we were all using L2Net, and there was a reason for that. I think it is still the best botting program around :)

Link to comment
Share on other sites

7 minutes ago, Solomun said:

This is actually quite interesting. Back in the days we were all using L2Net, and there was a reason for that. I think it is still the best botting program around :)

Yeah, back in the day it was way better then walker/divine.

Link to comment
Share on other sites

21 minutes ago, sanyika13 said:

Hello,

First, thanks for the new release of L2Net :)
Can i ask u, maybe i can change the server port from 7777 to another?

Thank U

 

Hey, create a shortcut to l2net.exe and in target field You can write arguments from commands.txt file.

In Your case You should use arguments

-d: data login port

or if You need change listening port
-x: data IG local listen port

 

So target might look like this "C:\PATH TO\L2Net\L2Net.exe  -d:7777"

To find more useful arguments see commands.txt file.

Link to comment
Share on other sites

24 minutes ago, sanyika13 said:

still said : 20:38:32 :[client -> bot gameserver : using port 7777 :(

From commands.txt file:

-overidegameserver enables the gameserver overide 
-gameserverip ip address of gameserver 
-gameserverport port of gameserver 

Link to comment
Share on other sites

18 minutes ago, sanyika13 said:

\L2Net\L2NET.exe -gameserverport:9988 i try this , but as i said , still use 7777

\L2Net\L2NET.exe -gameserverport:9988 -overidegameserver 

Link to comment
Share on other sites

8 minutes ago, Mantosh said:

\L2Net\L2NET.exe -gameserverport:9988 -overidegameserver 

Oke, i got this, and its not work:\ maybe the srv protection.. in OOG, i can choose srv but after nothing..
Thank u for the help :)

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.

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

    • do anyone knows a solution for ALT key to not block the movement on newer clients/classic ? lot of players are useing the key for push to talk and is annoying and rly problematic in PVP
    • You just need time and dedication - if you don't have those, you probably shouldn't lose your time developing. Moreover with the astronomical amount of shared customs, guides and alike content over all L2J related forums / youtube channels. If you don't want to "academically" learn Java, but get some fun learning how L2J (and Java) works, the best is to simply try to adapt customs over a vanilla source. Second step would be to modify it as you like, and the third step would be to code your own. Start with easy to adapt customs, then go into more complex stuff. You have to read first about basic Java concepts, called OOPs concepts, to avoid to waste your time. It's mandatory and will save you some time. L2J is 30% Java and 70% project hierarchy understanding, seeing how bad and lame some "developers" are, strictly anyone with some time can become a "L2J developer" (which is mostly copy-pasting code made by other, talented, people and reselling it). A good source is normally organized and Javadoc documented. If not, avoid to use that. Finally, client and server are two entirely different concepts (one is illegal and the other legal, btw :D), and generally ppl tend to "subclass" on either one or the other.
    • Hello and greetings guys, i come from the scene of L2OFF    so today i will share with you on how to make a custom quest in L2OFF  Lets get started. You will need the GMPanel for decompiling AIs can be downloaded here: https://filebin.net/650x1g0vvbzcon5o   so lets open The AI Editor. To make the quest repeatable we need to base our quest in an already repeatable one, lets say the Ghost Explorer one (Relics of the Old Empire) so the NPC that has the quest in AI is  explorer_ghost_a , find it and decompile it , you should have this code above https://pastebin.com/WjvYxi6E  so the quest is as this above.    now we are gonna make our changes   first we need to copy the code and have it in a notepad close completely the AI editor or just recompile it , reopen the gmpanel / ai editor and the ai.obj itself   and press on the " New " or Ctrl + N  class name = for example put "quest_daily_npc" and parent  "citizen" and press ok .. so your base is ready. https://ibb.co/3MfPHfW <- example is here Now i will explain you everything related on this in order to adjust it by yourself:   first of all :   you paste the code from the previous quest that we copied.   Now your quest must look like this:   https://pastebin.com/YY3uUXDS   so lets make the modifications     https://pastebin.com/c871yGdQ       619 is the quest id you can change it with your desired or you can delete the already existing and just modify this one     ------------------------------------------------------------------------- https://pastebin.com/9knBBGwG   on the case2: is the check for the reward.. practicly this quest is non stop , it checks if you have at least 1000 broken antiques and regarding the check it opens the html pages that correspond to the checks, if you want to replace the number with another amount and the quest item just do it by checking my comments on the pastebin link       now lets move to the :      https://pastebin.com/qirhF0Fn     you can change again here the html with your desired   so  we are finally in the time of the reward    the reward code is here: https://pastebin.com/BRB4F19Y you can add/ make less rewards   If you want to make it like:  You get rewarded then cooldown until next day you must edit   if( myself::GetCurrentTick() - talker.quest_last_reward_time > 1 ) { talker.quest_last_reward_time = myself::GetCurrentTick();   to if( myself::GetCurrentTick() - talker.quest_last_reward_time > 12 * 60 * 60 ) { talker.quest_last_reward_time = myself::GetCurrentTick(); I hope i gave you a good base.. Sincerely thank you , if you find my guide bad, i can edit some parts of it to be more clear  
    • Seuranasi is a scammer, don't buy from him
  • Topics

×
×
  • Create New...