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!

ACV Tool Release, ACV Unpacker

Newbie Spellweaver
Joined
May 19, 2007
Messages
24
Reaction score
0
can you send me some rgm file
pls?
pls.. upload it

rgm files are in 001.acv u can use old acv tool to unpack and pack it again..
to edit it u can download rgm import from fou gilang and open it with 3d max studio..
 
Initiate Mage
Joined
Mar 13, 2009
Messages
1
Reaction score
0
Have somebody cna tell me how to unpack acv 047?


Please.


send code or acvtool for me.

Thanks.
 
Initiate Mage
Joined
Jan 21, 2009
Messages
1
Reaction score
0
I've checked the unpacker with some KAU files.
Seems like it cannot unpack 021.acv and other acvs higher than 056.acv (it's an old ver client, so the current may not be like this)
 
Newbie Spellweaver
Joined
May 20, 2009
Messages
5
Reaction score
0
hmm..
can someone send me a source code of acv_tool?? maybe i can edit it..
or give me link^^

Edited : It's doesn't work for 021.acv 044.acv 059.acv

ThX
 
Newbie Spellweaver
Joined
Dec 10, 2008
Messages
57
Reaction score
0
hmm..
can someone send me a source code of acv_tool?? maybe i can edit it..
or give me link^^

Edited : It's doesn't work for 021.acv 044.acv 059.acv

ThX

source :

#include "zlib.h"
#include "stdio.h"
#include "stdlib.h"
#include "conio.h"
#include "windows.h"
#include "tchar.h"
#include <locale.h>

char basedir[MAX_PATH] = "decompress";
int basedirlen = 0;
FILE *facv = NULL;
FILE *fp = NULL;
unsigned long dwFileCount = 0;
unsigned long ptr = 0;
unsigned long curid = 0;
BOOL unicode = FALSE;
unsigned int start_ptr = 4;
unsigned int each_block_size = 176;

BOOL FolderExist(char *strPath)
{
WIN32_FIND_DATA wfd;
BOOL rValue = FALSE;
char szPath[MAX_PATH] = {0};
HANDLE hFind = NULL;
FILE *tmp = NULL;

strcpy(szPath,strPath);
if (strlen(szPath) == 3 && ((szPath[0] >= 'A' && szPath[0] <= 'Z') || (szPath[0] >= 'a' && szPath[0] <= 'z')) && szPath[1] == ':')
{
return TRUE;
}else{
strcat(szPath,".");
}

hFind = FindFirstFile(szPath, &wfd);
if ((hFind != INVALID_HANDLE_VALUE) && (wfd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY))
{
rValue = TRUE;
}
FindClose(hFind);
return rValue;
}

BOOL FileExist(char *strFileName)
{
WIN32_FIND_DATA wfd;
return FindFirstFile(strFileName, &wfd) != INVALID_HANDLE_VALUE;
}

BOOL CreateFolder(char *strPath)
{
SECURITY_ATTRIBUTES attrib;
attrib.bInheritHandle = FALSE;
attrib.lpSecurityDescriptor = NULL;
attrib.nLength = sizeof(SECURITY_ATTRIBUTES);
//
 
Newbie Spellweaver
Joined
May 20, 2009
Messages
5
Reaction score
0
ThX for the source..
but i doesn't know.^^
can someone give me some explenation..what programming language is used in that source?
 
Initiate Mage
Joined
Nov 24, 2009
Messages
1
Reaction score
0
pano po ba ma edit yung licence ng audition ph? para mapabagal po yung sa bpm non kasi wala ako bot na magamit ngayon. Thanks po.
 
Back
Top