GetGameModeText
#1

Is it possible to get the gamemode text and save it as a value? ex. new gmt = GetGameModeText(); Or something like that..
Reply
#2

ANYONE??
Reply
#3

Save it in a variable...

pawn Код:
new gmtext[32];

public OnGameModeInit()
{
    SetGameModeText("Test");
    strmid(gmtext, "Test", 0, strlen("Test"), 255);
    return 1;
}

GetGameModeText()
{
    return gmtext;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)