[TOOLS] ArcheAge launcher with the function of redirecting traffic

Results 1 to 2 of 2
  1. #1
    The Cyber Fox adastmin is offline
    MemberRank
    Feb 2011 Join Date
    WashingtonLocation
    407Posts

    [TOOLS] ArcheAge launcher with the function of redirecting traffic

    Create a launcher with the function of redirecting traffic from the client ArcheAge on your login server.

    As is known in ArcheAge address and port of the server login the game client receives from the launcher on the command line, as an encrypted string.


    something like this:

    Code:
    archeage.exe keFMZFKNM2nMGIKN
    dll with one export function which generates just want us to string key. as well as a small source code to use the library.

    archive:
    project with an example of using dll under VisualStudio 12
    itself dll
    it Heder header.h
    Lieb and .lib


    Sample.zip



    Example of use:
    Code:
    int _tmain(int argc, _TCHAR* argv[])
    {
    	char * str = new char[20];
    	generateInitStr(127,0,0,1,1237,str);
    	std::cout << str ;
    	return 0;
    }
    generateInitStr function gets 5 integer parameters (address and port) and returns a string in parameter str

    Launcher
    Alaunch.zip
    Last edited by adastmin; 06-12-14 at 01:15 PM.


  2. #2
    Enthusiast xorvar is offline
    MemberRank
    Aug 2013 Join Date
    29Posts

    Re: [TOOLS] ArcheAge launcher with the function of redirecting traffic

    nice adastmin is there any chance that you have the latest source code of ArcheEmu ? i can't find it since the developement of it is closed



Advertisement