How can i get rid of this ?
#2

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;
Reply


Messages In This Thread
How can i get rid of this ? - by killing - 06.01.2015, 14:01
Re: How can i get rid of this ? - by Dignity - 06.01.2015, 14:07
Re: How can i get rid of this ? - by killing - 06.01.2015, 14:31
Re: How can i get rid of this ? - by Threshold - 06.01.2015, 14:53
Re: How can i get rid of this ? - by Dignity - 06.01.2015, 15:01
Re: How can i get rid of this ? - by Djole1337 - 06.01.2015, 15:05
AW: How can i get rid of this ? - by Nero_3D - 06.01.2015, 15:09
Re: How can i get rid of this ? - by killing - 07.01.2015, 07:52

Forum Jump:


Users browsing this thread: 2 Guest(s)