Start Param

02/13/2017 02:54 geheimerbauer#1
Hello Guys,

is it possible that a server has got 2 start parameters? And if yes how can i find those?
02/13/2017 03:55 /Aiden\#2
Quote:
Originally Posted by geheimerbauer View Post
Hello Guys,

is it possible that a server has got 2 start parameters? And if yes how can i find those?
1)[Only registered and activated users can see links. Click Here To Register...]
2)Patch
3)Replace original Neuz with this one
4)Klick on "Start"
5)See all startup arguments
02/14/2017 11:17 Wanetrain#3
Quote:
Originally Posted by geheimerbauer View Post
Hello Guys,

is it possible that a server has got 2 start parameters? And if yes how can i find those?
Already exists for Twn FlyFF (Patcher Login) so look @[Only registered and activated users can see links. Click Here To Register...]mdLine in NeuzMsgProc.cpp.

You See:

Quote:
TCHAR szArg1[64] = {0, };
TCHAR szArg2[64] = {0, };
TCHAR szArg3[64] = {0, };
TCHAR szArg4[64] = {0, };
TCHAR szArg5[64] = {0, };

_stscanf( lpCmdLine, "%s %s %s %s %s", szArg1, szArg2, szArg3, szArg4, szArg5 );
"szArg1" = "sunkist"
"szArg2" = ""
...

So if you want a second one you can check szArg2 for it. ;)