Almost got DN's OOG working

09/16/2007 14:39 akuzura#1
So I followed the guide at maxcheaters.com 's forum to make a bot, and I must say, I almsot got everything working, the only things left I need is the DN's token and a token patcher for L2W.
If anyone could share this with me, then I will share the guide to get DN OOG with you guys, and boy is it hard.
09/25/2007 23:53 rnway#2
did you know that they got some bot protection?
10/16/2007 22:00 tony1011#3
got the bot working. to share secret i want a small ingame fee pm me
10/17/2007 20:58 Jack's Smirking Revenge#4
Quote:
Originally Posted by tony1011 View Post
got the bot working. to share secret i want a small ingame fee pm me
You are wrong here - Learn to share.
10/18/2007 11:29 rnway#5
Maxbastards.com allready made DN OOG working.
[Only registered and activated users can see links. Click Here To Register...]

So here it's

Quote:
holy moly. More cool stuff
Working DN OOG.

This is a bad hack because I did not actually break the encryption. I don't play on DN so I don't have time to try to figure it out. This script works in a different way. First, you have to connect to the server using the official DN client. This will capture the RequestAuthLogin packet containing the encrypted password. This password is then saved to WPF/Custom/DN_passwords.txt (you shouldn't have to edit this file). From then on, you can log in regularly with the OOG running this script. In case of mistyped info in the recorded packet, simply delete your DN_passwords.txt and start over.

You only have to log the login packet for each account you have once. Once that's done, the recording part is done forever.

In order to log the packet, you will have to use the official DN client through a proxy client. The simplest client is bundled with WP504f. You should have miniproxer.exe. Go proxy tab, set the path to your official DN client directory and click the sun. Other proxy clients including proxycap, sockscap.. etc.


The remaining steps involve being able to do the same things as my other guides:
-The use of a PPC script
-The use of proxy inside walker
-other easy stuff.

refer to my other guides for info on that.

85.14.217.252
port 3456
token 5F3B352E5D39342D33313D3D2D257854215E5B24
Code: (The script.)

var
PasswordBuffer : TStrings;

Procedure OnCreate;
begin
PasswordBuffer := TStringList.Create;
end;

procedure OnDestroy;
begin
PasswordBuffer.free;
end;

procedure getAccounts;
var
thisAccount : String;
currentAccount : String;
i : integer;
begin
try
thisAccount := trim(copy(_gBuff,4,));
PasswordBuffer.LoadFromFile(_gCustomDir+'DN_Passwo rds.txt');
for i:= 0 to PasswordBuffer.count-1 do begin
currentAccount := trim(copy(HStr(PasswordBuffer[i]),4,));
if strcmp(lowercase(thisAccount),lowercase(currentAcc ount)) then begin
_gOutBuff := HStr(PasswordBuffer[i]);
exit;
end;
end;
except
Writelogln(ExceptionMessage);
end;
updateFile;
end;

procedure updateFile;
begin
writelogln('Account not found / file not found');
PasswordBuffer.Add(buftohex(_gBuff));
PasswordBuffer.SaveToFile(_gCustomDir+'DN_Password s.txt');
end;

begin
if (_gAbsNumPkt = 2) and (not _gFromServ) then begin
getAccounts;
end;
end.

This script does both the packet recording and the packet fixing afterwards.


as always this is Fastscript(FS) and not WPScript(WPS)

Better yet, save it as XML in the script tester to pretty much get rid of the compile time.

oh, and don't share the packet log file.


The end.


Simpler steps
1-Setup WP's PPC to run the script on IP 85.14.217.252(More detailed info on that in my L2Gold OOG thread)
2-Start miniproxer.exe (should be in your WP directory) go proxy tab, change the path to your official DN client folder. Once this is done press the Sun
3-Start your official DN client, login. Once you logged in, you can close the official DN client. Your account info is saved in WPF/custom/DN_passwords.txt (don't change this file unless you need to.. ie because you mistyped your info)
4-You may now login on this account with a properly setup walker (token, IP, port and proxy). If you don't know how to do this, refer to the 1039509 guides on how to use walker on this forum

For every other account simply login using the official DN client and login using the other info.
Gimme some nice Thanks ^^
10/20/2007 21:24 lhdlp#6
I say you give me some nice thanks for copy pasting my thread at the very least.
10/20/2007 21:31 Karco#7
I think, that there are some errors in script...Like... if strcmp(lowercase(thisAccount),lowercase(currentAcc ount)) then begin.... "currentAccount"
10/20/2007 21:35 lhdlp#8
that's because vbulletin breaks words when they are too long. My original script was obviously right, this is only because some retard decided he'd copy it without credits on here
11/11/2007 13:32 KaTzu#9
so is it working rught?