SetGameModeText

From SA-MP Wiki

Revision as of 13:03, 27 December 2015; view current revision
←Older revision | Newer revision→
Jump to: navigation, search


Description:

Set the name of the game mode, which appears in the server browser.


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


Return Values:

This function does not return any specific values.


Example Usage:

public OnGameModeInit()
{
    SetGameModeText("Team Deathmatch");
    return 1;
}
In other languages