02.05.2013, 07:26
Do this below:
Quote:
enum pInfo { pBanned, }; Then with onplayerconnect if(PlayerInfo[playerid][pBanned] == 1) { SendClientMessage(playerid, COLOR_HERE, "[Server Message:] You have been banned from our community"); Kick(playerid); } if(PlayerInfo[playerid][pBanned] == 0) { There Spawning information here |