Spawn button.
#1

How can I make the spawn button not clickable until the login or register dialogs are disappeared?
Reply
#2

Create a variable and set it to one once they login,

pawn Код:
public OnPlayerRequestSpawn(playerid)
{
    if(VariableLogged[playerid] == 0) return // Return the login dialog.
    return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)