Here is a new up to date emu, i have no idea how to get a client connect to the server so have fun.
Loads of things work in this emu.
SRC:
Tera.rar
Compiled:
conpiled.rar
Data:
data.rar
Web launcher:
newteraonline.ru.rar
Some info i found that might help find out how to get the client connect to server
Code:
D =& P1 = K_TERA & P3 = http://newteraonline.ru/test/real/
Пример: F:\TERA\TERA_REL\ExLauncher.exe D=&P1=K_TERA&P3=http://newteraonline.ru/test/real/
Code:
# Include "windows.h"
# Include "shellapi.h"
void main ()
{
SHELLEXECUTEINFO shExecInfo ;
shExecInfo . cbSize = sizeof ( SHELLEXECUTEINFO );
shExecInfo . lpVerb = NULL ;
shExecInfo . lpFile = "ExLauncher.exe" ;
shExecInfo . lpParameters = "D = & = K_TERA P1 & P3 = http://newteraonline.ru/xlauncher.php" ;
if (! ShellExecuteEx (& shExecInfo ))
{
MessageBox ( 0 , "Unable to run TERA." , "Error" , 16 );
return ;
}
else
{
return ;
}
}