22.03.2011, 01:03
Is it possible to get the gamemode text and save it as a value? ex. new gmt = GetGameModeText(); Or something like that..
new gmtext[32];
public OnGameModeInit()
{
SetGameModeText("Test");
strmid(gmtext, "Test", 0, strlen("Test"), 255);
return 1;
}
GetGameModeText()
{
return gmtext;
}