14.04.2013, 23:20
Quote:
Damn dude, you got a lot of custom functions and string defines there don't you? Lol.
For "PlayerIsOn", why not just use "IsPlayerConnected()"? Lol. |
pawn Код:
stock PlayerIsOn(playerid)
{
if(PlayerLogged(playerid) && playerid != INVALID_PLAYER_ID)
return true;
return false;
}
stock NotConnectedMSG(playerid)
{
return ServerMSG(playerid, "This player is not connected.");
}