SetGameModeText

SetGameModeText

Description:
Function SetGameModeText set the name of the game mode, which appears in the server browser.


Parameters:
(string[])
string string The gamemode name to display.


Return Values:
This function does not return any specific values.


Examples:
public OnGameModeInit()
{
    SetGameModeText("Team Deathmatch");
    return 1;
}