30.06.2013, 09:28
SendRconCommand("mapname", MAPNAME);
But this gives one warning, so whats the right way to use it?
But this gives one warning, so whats the right way to use it?
SendRconCommand("mapname MAPNAME");
#define MAPNAME "n00b world"
//OnGameModeInit/OnFilterScriptInit
SendRconCommand("mapname "#MAPNAME");
#define MAPNAME "n00b world"
//OnGameModeInit/OnFilterScriptInit
SendRconCommand("mapname "#MAPNAME");
mapname MAPNAME
new string[128]; format(string, sizeof(string), "hostname %s", ServerName); SendRconCommand(string);