Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

unpack & pack tool download Jxonline!

Newbie Spellweaver
Joined
Jan 25, 2006
Messages
22
Reaction score
0
Yesterday,I write this tool in C++,The full tool can unpack *.pak file from Jxonlie,addfile to pak file,upadte pak file, pack new pak file.

Now share the unpack tool and full maps .wor file. The more file I'll share it tomorrow.

I don't like see anyone use this tool, but not share the harvest from this tool.
You konw, do the server more people, the server are more full!

for our Jxonline,PLZ share you know! Thank you!

The file đownloa link:
1.all maps wor file and unpack tool


2.new settings with unapck file use for Jxserver


3.Full pack file tool


The tool was use in MSDOS.
input command with:

unpack one file from pak file:
E:\JXOnline\Data\unPackSingle.exe E:\JXOnline_v5\Data\map.pak E:\download\jxserver \settings\item\liuqingqingdroprate.ini
explain:[unpack tool] [pak file] [unpack directory] [want unpack file]

unpack full file from pak file(only get file data no name):
E:\JXOnline\Data\unPackSingle.exe E:\JXOnline_v5\Data\map.pak E:\download\jxserver
explain:[unpack tool] [pak file] [unpack directory]

notice:
By unpack,make sure you unpack directory is exist!
 
Last edited:
Newbie Spellweaver
Joined
Jan 25, 2006
Messages
22
Reaction score
0
unpack full file from pak file can't get filename, because the pak file not record file name only hash in index.
 
Junior Spellweaver
Joined
May 19, 2005
Messages
156
Reaction score
0
2222

help!!!
my unpack is!!......
 

Attachments

You must be registered for see attachments list
Last edited:
Newbie Spellweaver
Joined
Jan 25, 2006
Messages
22
Reaction score
0
bahk1991 said:
help!!!
my unpack is!!......
Is ture, unpack full file from pak file can't get filename, because the pak file not record file name only hash in index.
 
Newbie Spellweaver
Joined
Jul 26, 2004
Messages
10
Reaction score
0
genshing said:
Is ture, unpack full file from pak file can't get filename, because the pak file not record file name only hash in index.

thx, i can unpack,
Please me, pack it?
.
 
Initiate Mage
Joined
Feb 12, 2006
Messages
2
Reaction score
0
genshing ,could u give your jxserver files to me?
thanks , my e-mail:congjunlv@hotmail.com
 
Newbie Spellweaver
Joined
Jan 25, 2006
Messages
22
Reaction score
0
lvcongjun said:
genshing ,could u give your jxserver files to me?
thanks , my e-mail:congjunlv@hotmail.com
My server is download in this forum.
 
Newbie Spellweaver
Joined
Jan 25, 2006
Messages
22
Reaction score
0
IQuit said:
Please share your source code. Thanks!
Source is not help with Jxonline.If you want got it,PLZ give me email adress.
 
Newbie Spellweaver
Joined
Oct 8, 2004
Messages
7
Reaction score
0
Please mail me this source code!

genshing said:
Source is not help with Jxonline.If you want got it,PLZ give me email adress.
Please share me source code, i'll try developer it to get archive's file name fromt .pak file. Because i dont understand structure of .pak file then please share me source code!
My mail: nguyminhduc@yahoo.com:3dflagsdo
 
Newbie Spellweaver
Joined
Jan 25, 2006
Messages
22
Reaction score
0
unsigned long hash(const char *file_name) {
unsigned long id = 0;
const char *ptr = file_name;
int index = 0;
while(*ptr) {
if(*ptr >= 'A' && *ptr <= 'Z') id = (id + (++index) * (*ptr + 'a' - 'A')) % 0x8000000b * 0xffffffef;
else id = (id + (++index) * (*ptr)) % 0x8000000b * 0xffffffef;
ptr++;
}
return (id ^ 0x12345678);
}

This is filename in pak file.
 
Initiate Mage
Joined
Apr 6, 2005
Messages
2
Reaction score
0
ghenshing please for me script of Jxserver .thanks .my email:ngthang12@yahoo.com
 
Newbie Spellweaver
Joined
Mar 5, 2004
Messages
13
Reaction score
0
could you please re-upload urs fle to megaupload or something else , i cant download from rapidshare , it said that i already reach my bandwidth limit........
 
Junior Spellweaver
Joined
May 19, 2005
Messages
156
Reaction score
0
genshing said:
Can't,This is the hash function use record filename in pak file.
hix!! ok!
the maps! how many maps you can unpack!?? Now!!
 
Newbie Spellweaver
Joined
Jan 25, 2006
Messages
22
Reaction score
0
Can't. Client only have Region_C.dat, but server need Region_S.dat.
 
Junior Spellweaver
Joined
May 19, 2005
Messages
156
Reaction score
0
you can add Region_C.dat to server and run server! Ok! i am load 1 maps BaLangHuyen !
 
Back
Top