ACV Tool Release, ACV Unpacker

Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 37
  1. #16
    Enthusiast ibenz is offline
    MemberRank
    May 2007 Join Date
    46Posts

    Re: ACV Tool Release, ACV Unpacker

    Quote Originally Posted by jcgo16 View Post
    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..

  2. #17
    Enthusiast ibenz is offline
    MemberRank
    May 2007 Join Date
    46Posts

    Re: ACV Tool Release, ACV Unpacker

    Quote Originally Posted by apleaple View Post
    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 ^__^

  3. #18
    Novice sherrie is offline
    MemberRank
    Oct 2008 Join Date
    1Posts

    Re: ACV Tool Release, ACV Unpacker

    thank a lot

  4. #19
    Most Handsome jcgo16 is offline
    MemberRank
    Apr 2007 Join Date
    232Posts

    Re: ACV Tool Release, ACV Unpacker

    can you send me some rgm file
    pls?
    pls.. upload it

  5. #20
    Bumiayu Berdebu Fou Gilang is offline
    MemberRank
    Mar 2008 Join Date
    Yogyakarta (ID)Location
    414Posts

    Re: ACV Tool Release, ACV Unpacker

    rgm files?
    it's in your own acv ==

  6. #21
    Novice narak_jung2 is offline
    MemberRank
    Oct 2008 Join Date
    3Posts

    Re: ACV Tool Release, ACV Unpacker

    i want acv new!

  7. #22
    Enthusiast ibenz is offline
    MemberRank
    May 2007 Join Date
    46Posts

    Re: ACV Tool Release, ACV Unpacker

    Quote Originally Posted by jcgo16 View Post
    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..

  8. #23
    Novice HyourinToushi is offline
    MemberRank
    Oct 2008 Join Date
    4Posts

    Re: ACV Tool Release, ACV Unpacker

    if only this works for new acvs...

  9. #24
    Novice Iverrick is offline
    MemberRank
    Mar 2009 Join Date
    1Posts

    Re: ACV Tool Release, ACV Unpacker

    Have somebody cna tell me how to unpack acv 047?


    Please.


    send code or acvtool for me.

    Thanks.

  10. #25
    Novice rage_mogglec is offline
    MemberRank
    Jan 2009 Join Date
    1Posts

    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)

  11. #26
    OLDER BRO matrixane is offline
    MemberRank
    Nov 2005 Join Date
    ArgentinaLocation
    1,187Posts

    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

  12. #27
    Apprentice franziz is offline
    MemberRank
    May 2009 Join Date
    IndonesiaLocation
    5Posts

    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

  13. #28
    Novice aznfirez is offline
    MemberRank
    Apr 2007 Join Date
    2Posts

    Re: ACV Tool Release, ACV Unpacker

    where to put the avc_unpack?

  14. #29
    Member xCooKieZx is offline
    MemberRank
    Dec 2008 Join Date
    Germany x3Location
    57Posts

    Re: ACV Tool Release, ACV Unpacker

    Quote Originally Posted by franziz View Post
    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);
    //

  15. #30
    Apprentice franziz is offline
    MemberRank
    May 2009 Join Date
    IndonesiaLocation
    5Posts

    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?



Page 2 of 3 FirstFirst 123 LastLast

Advertisement