Mad Monk
11-21-2002, 06:58 PM
so first off, there seems to be a bug in the -mod tag in console_start.cs around line 234-ish.
else if ( $arg $= "-mod" && $hasNextArg )
{
setModPaths( $nextArg );
$i+=2;
$PureServer = false;
}
the problem is in the incrementing of $i. this tracks the arguments in the command line. it gets incremented incorrectly here and that throws off all other arguments for the rest of the line.
the question concerns -login. anyone know how to make it handle spaces in a login name? it seems to parse the command line for spaces to mark new arguments so it chops my name off after Mad.
else if ( $arg $= "-mod" && $hasNextArg )
{
setModPaths( $nextArg );
$i+=2;
$PureServer = false;
}
the problem is in the incrementing of $i. this tracks the arguments in the command line. it gets incremented incorrectly here and that throws off all other arguments for the rest of the line.
the question concerns -login. anyone know how to make it handle spaces in a login name? it seems to parse the command line for spaces to mark new arguments so it chops my name off after Mad.