Advertisement
Juras35

[SA-MP] Reserved slots for very important person.

Jun 27th, 2016
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.39 KB | None | 0 0
  1. #define     MAX_RESERVED_SLOTS     3
  2.  
  3. public OnPlayerConnect(playerid){
  4.     new players = -1;
  5.  
  6.     for(new i = 0; i <MAX_PLAYERS; i++){
  7.         if(!IsPlayerNPC(i)){
  8.             if(IsPlayerConnected(i)) players++;
  9.         }
  10.     }
  11.  
  12.     if(players >= MAX_PLAYERS-MAX_RESERVED_SLOTS){
  13.         if(Player[playerid][VIP] == 0) Kick(playerid); // Player[playerid][VIP] (my new) == 0? bye :-D
  14.     }
  15.     return true;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement