Jump to content

L2.NET for RPG-CLUB


Shomid

Recommended Posts

Well IG bot need smaller amout of work than l2Net so i wouldn't be so sceptic.

 

@killik

If we speak about scripts,than bots are not for all players,if you can't handle it thats just your problem.

 

Link to comment
Share on other sites

 

@killik

If we speak about scripts,than bots are not for all players,if you can't handle it thats just your problem.

 

invalid argument

bots are there for what?

to make it easier to xp not harder

you shouldnt be forced to learn a script language to bot

Link to comment
Share on other sites

invalid argument

bots are there for what?

to make it easier to xp not harder

you shouldnt be forced to learn a script language to bot

 

use the GUI, I've botted 9 man partys with no scripts... I'm not sure what everyone is crying about.

Link to comment
Share on other sites

Gui=bot options? then you get stuck at every corner

As i said the fighter script 358+ is there and can be used without big trouble

 

Still lets focus

Small bump to this:

the solution seems here but i dont have 150 posts :)

http://allcheats.ru/post1942170-314/

So if anyone can help send me a message XD

could wininject be of any use with  ingame walker 2.13 (since the russian post mentions it) ?

http://rapidshare.com/files/351224562/Winject.rar

 

some1 leet experiment and find out plax

Link to comment
Share on other sites

the solution seems here but i dont have 150 posts :)

http://allcheats.ru/post1942170-314/

So if anyone can help send me a message XD

 

walker 1 l2net 0

what a let down :(

This doesn't works. Have a ru friend and i asked him about it.

Link to comment
Share on other sites

Could the problem be fixed  without looging into DLL?

for example with CPP packets , the only problem is that we need to get ID corrector as  from hellbound outcomming  packets are renamed (their IDs) somehow.

And if we find stable new target ID we could jsut replace it in walker or im not right

Link to comment
Share on other sites

from hide

1. сначало надо зайти с ихнем l2.exe потом до выбора персонажа( считывает ключ в ини файл), потом ставим любой чистый l2.exe от финала и заходим в игру.

 

2. Внимание из за неточной расшифровки 2 ключа верефиципуется не с 1 раза 1 - 10 заходов в игру как повезет.

(если не верефицировался небудет выделять цели)

 

3. Внимание расщитано под логин из 5 букв больше если у вас непытайтесь зайти!

 

Код:

var

p1,s1,p2,hz,s2,o1,o2,key,s:integer;

k,p,s11,s22,i:string;

ini: TMemIniFile;

 

begin

 

if _gAbsNumPkt=3 then begin

ScanPck5(_gBuff,36, 'dd', o1, o2, null, null, null);

ScanPck5(_gBuff,20, 'ddd', p1, hz, p2, null, null);

if o2 > 0 then begin

key:=p1*32+o1;

ini:=TMemIniFile.Create(_gCustomDir+'key.ini');

ini.Clear;

ini.WriteInteger('ID', 'key', key) ;

ini.UpdateFile;

ini.Free;

end;

if o2 = 0 then begin

ini:=TMemIniFile.create(_gCustomDir+'key.ini');

Ini.ReadInteger('ID', 'key', s);

p:=copy(_gBuff,1,35);

s22:=copy(_gBuff,40,4);

s1:=key-(p1 * 32);

s2:= (p2 div 32) + 3;// вот это параметр меняется то он +1 то + 3 то + 5 то + 7 может и - 7 такчто зайдем с раза 10) как повезет...

_goutBuff:=p+IntToBin(s1)+IntToBin(s2);

end;

end;

end.

This guy on Help section said thats what's writen on that russian forum, hiden. Used google translator but still didnt understand it so ill leave it as original. Hope it helps:S

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.



  • Posts

    • Thank you for your reply. I have removed it from the L2Server.exe file, but the L2Server still crashes. It doesn't crash if I don't start l2npc, otherwise it will crash within a few days at the latest.
    • Welcome to my store :  https://topestore.mysellix.io/fr/ 2015-2022 Aged Discord Account 2015 Discord Account : 50.99 $ 2016 Discord Account : 10$ 2017 Discord Account :3.99 $ 2018 Discord Account : 3.50$ 2019 Discord Account : 2.70 $ 2020 Discord Account :1.50$ 2021 Discord Account :0.99$ 2022 Discord Account :0.70$ Warranty :Lifetime Payment Methods : Crypto/ PayPal Contact Me On Discord Or Telegram Discord : @ultrasstore11 Telegram : https://t.me/ultrastore1 Welcome to my store :  https://topestore.mysellix.io/fr/ 2015-2022 Aged Discord Account 2015 Discord Account : 50.99 $ 2016 Discord Account : 10$ 2017 Discord Account :3.99 $ 2018 Discord Account : 3.50$ 2019 Discord Account : 2.70 $ 2020 Discord Account :1.50$ 2021 Discord Account :0.99$ 2022 Discord Account :0.70$ Warranty :Lifetime Payment Methods : Crypto/ PayPal Contact Me On Discord Or Telegram Discord : @ultrasstore11
    • L2 ArenaWar: Low Rate PvP Server with Free Buffs & Autofarm [PVP]⚔️ [Free]🆓 Classic Interlude with  3x XP rates! Free starter pack(no grade) to kickstart your adventure! Autofarm for convenient grinding! Free buffs to keep you fighting fit! (2 job buffs) No experience loss on death! (Except with Karma) Clear Karma system to keep things fair! ⚖️ Active community of 800-1k players! Join our Discord to learn more! >> Discord <<     Server website: https://l2arenawar.com/en/    
    • This is dedication! 2 years working on a problem. Congratulations!
    • You indeed have to save player position over Enterworld to properly clean it up later (if you don't, even trying to delete packet content would eventually keep it up), that's what we do with debug packet (which is a reusable Map of ExServerPrimitive packets) on aCis.   It doesn't solve the FPS stuttering - more you draw/delete lines, more your client becomes laggy. It's like if client wasn't deleting drawn points/lines properly, but instead simply hide them and redrawn content above.   If you got a solution, I would happy to integrate it.   You should check aCis#Player _debug packet integration, it allows very big amount of lines/points to be drawn, it is also reusable.   https://gitlab.com/Tryskell/acis_public/-/blob/master/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/Player.java?ref_type=heads https://gitlab.com/Tryskell/acis_public/-/blob/master/aCis_gameserver/java/net/sf/l2j/gameserver/network/clientpackets/EnterWorld.java?ref_type=heads  
  • Topics

×
×
  • Create New...