LeonardoBradoks

Comando /Membros Fórum SA-MP

Mar 25th, 2018
340
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.92 KB | None | 0 0
  1. CMD:membros(playerid) {
  2.     if(!Player[playerid][Organizacao]) return SendClientMessage(playerid, 0xFF0000FF, "[BLC] Você não é de uma organização.");
  3.     static CountMembers = 0, nome[MAX_PLAYER_NAME], string[MAX_PLAYER_NAME];
  4.     foreach(Player, i) {
  5.         if(Player[i][Organizacao] == Player[playerid][Organizacao] && i != playerid) {
  6.             if(!CountMembers) SendClientMessage(playerid, -1, "/-----Membros da Organização Online -----/");
  7.             GetPlayerName(i, nome, sizeof(nome));
  8.             format(string, sizeof(string), "%s", nome);
  9.             SendClientMessage(playerid, -1, string);
  10.             CountMembers++;
  11.         }
  12.     }
  13.     SendClientMessage(playerid, CountMembers >= 1 ? (-1) : (0xFF0000FF), CountMembers >= 1 ? ("/----- Membros da Organização Online -----/") : ("[BLC] Fora você não há nenhum(a) outro(a) membro(a) da sua organização está online."));
  14.     return true;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment