ongamemodeexit
#1

Hi,

In this callback i can check variables, or they are already deleted or nulled?

like

OnGameModeExit

if( something == true )
{
// do something
}
Reply
#2

Did you test it.........?
Reply
#3

i saw nothing error but if you want do this

Код:
public OnGameModeExit()
{
    print("Gamemode ended.");
    return 1;
}
Reply
#4

Quote:
Originally Posted by RedRex
Посмотреть сообщение
i saw nothing error but if you want do this

Код:
public OnGameModeExit()
{
    print("Gamemode ended.");
    return 1;
}
That's not what he was meaning...

Код:
public OnGameModeExit()
{
    if(TempVar=1337)
    {
        print("Gamemode ended properly.");
    }
    return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)