22.02.2014, 21:51
Quote:
First one is :I want the server reserved all commands until the player register or login ,cuz the commands work if he didn't login
Second: if I got a VPS ,How to change the players slots and if the server closed ,how to open it or how to restart it |
pawn Код:
static LoggedIn[MAX_PLAYERS];
pawn Код:
LoggedIn[playerid] = 1;
Then in each of the commands,
pawn Код:
If(LoggedIn[playerid] == 1)
{
//Do something here
}