Re: ACV Tool Release, ACV Unpacker
Quote:
Originally Posted by
jcgo16
are you talking about dds?
you have to install photoshop first
no, but about .rgm file...
dds can edit the colour but can't edit the model..
the 3d model for haricut, clothes, pants, etc..
do u know how to edit it ? cuz i already searching in google but i can't find the program that can open the .rgm file.. ~__~
it's must be fun if we can edit the model.. maybe we can create new clothes or haircut and devil wings..
Re: ACV Tool Release, ACV Unpacker
Quote:
Originally Posted by
apleaple
Ma`am,may I ask do you know how to read scripts .slk?
to read .slk file u can open with microsoft excel but to edit it, u can't edit it.. cuz it read only file..
to edit it u can search in the google war3skilledit, acctually that program for warcraft but u can edit the read only .slk file with that.. keep searching ^__^
Re: ACV Tool Release, ACV Unpacker
Re: ACV Tool Release, ACV Unpacker
can you send me some rgm file
pls?
pls.. upload it
Re: ACV Tool Release, ACV Unpacker
rgm files?
it's in your own acv ==
Re: ACV Tool Release, ACV Unpacker
Re: ACV Tool Release, ACV Unpacker
Quote:
Originally Posted by
jcgo16
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..
Re: ACV Tool Release, ACV Unpacker
if only this works for new acvs...
Re: ACV Tool Release, ACV Unpacker
Have somebody cna tell me how to unpack acv 047?
Please.
send code or acvtool for me.
Thanks.
Re: ACV Tool Release, ACV Unpacker
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)
Re: ACV Tool Release, ACV Unpacker
here can unpack all acv ..working and easy to do. only cant unpack the last ACV protected for nprotect.
http://www.mediafire.com/download.php?fzyyzetknoh
Re: ACV Tool Release, ACV Unpacker
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
Re: ACV Tool Release, ACV Unpacker
where to put the avc_unpack?
Re: ACV Tool Release, ACV Unpacker
Quote:
Originally Posted by
franziz
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 :
[SIZE="1"]
#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);
//
Re: ACV Tool Release, ACV Unpacker
ThX for the source..
but i doesn't know.^^
can someone give me some explenation..what programming language is used in that source?