Flyff.exe not executing the neuz

05/23/2014 16:34 skylight25#1
Hello, my problem i am creating the autopatch. Is dowloading my files fine but when i press the start button , the patch closes but the neuz is not executed. I can open the neuz directly without problems and play , but i dont get why the flyff.exe dont execute the neuz. Did i miss something here? . Btw i using blessed source (Betapatchclient) and i already use the debug and release flyff.exe.
05/23/2014 17:45 .SnoX#2
Check the salt of the Neuz and then you should change it in the flyff.exe too..
05/23/2014 18:14 skylight25#3
Quote:
Originally Posted by .SnoX View Post
Check the salt of the Neuz and then you should change it in the flyff.exe too..
I know where to change in neuz but where in flyff.exe ? I have the source of the autopatch and i cant find anything about the salt(patom) there.

Edit: Look like the CreateProcess from runclient() is not working. The creatprocess is returning true but the neuz.exe is not executed. So i dont what else to do.

if( CreateProcess( NULL, szBuffer, NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi ) ) ---->> this return true but not neuz.exe is created
{
if( AfxGetMainWnd() )
AfxGetMainWnd()->PostMessage( WM_CLOSE );
}


edit2 : the problem was the sunkist. szBuffer =neuz.exe sunkist , this comand is not working ( i tested using a .bat ) i used only neuz.exe and it worked.
before = int nCount = _snprintf( szBuffer, 2047, "neuz.exe %s", "sunkist" );
after = int nCount = _snprintf( szBuffer, 2047, "neuz.exe %s", "" );
05/23/2014 21:11 .SnoX#4
here..
Quote:
void CBetaPatchClientApp::RunClient()
..
int nCount = _snprintf( szBuffer, 2047, "Neuz.exe %s", "sunkist" );
-edit-
Ah sorry you found it yourself.