06.01.2015, 14:07
Use a boolean to determine whether the player is logged in. If they're not, make the command return false.
pawn Код:
// Below your includes, outside any callback/function.
new bool: Logged[MAX_PLAYERS];
// After logging in:
Logged[playerid] = true;
// Under the commands:
if(!Logged[playerid]) return false;