[Tutorial] La funcion Break,Continue,Throw en pawn
#5

[break] Banear al primer jugador con el nъmero 15 o mayor:
pawn Код:
for(new i = 0; i < MAX_PLAYERS; i ++)
{
  if(i > 14)
  {
    Ban(playerid);
    break;
  }
}
[continue] Mostrar todos lo jugadores que no sean administradores:
pawn Код:
for(new i = 0; i < MAX_PLAYERS; i ++)
{
  if(IsPlayerAdmin(i)) continue;
 
  new name[24];

   GetPlayerName(i, name, 24);
   printf("[ID:%d]: %s.", i, name);
}
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)