So you know when you run an Armagetron command you can run like "KILL smoothice". What if I wanted to (in C++) get information from multiple parameters?: "KILL smoothice anotherplayer".
You can see this code:
Code: Select all
static void Kill_conf(std::istream &s)
{
if ( se_NeedsServer( "KILL", s, false ) )
{
return;
}
ePlayerNetID * p = ReadPlayer( s );
So basically I'm asking how I can make a command that deals with two players and not just one.