2 Attachment(s)
[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
Attachment 149152
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
Attachment 149153
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