Como criar O comando /admins para DM
#5

Pawno Code
Code:
if(strcmp(cmdtext, "/admins", true) == 0){
new Jogador[24];
new count = 0;
new msg[120];
for(new i=0; i<MAX_PLAYERS; i++){
if(IsPlayerConnected(i) && IsPlayerAdmin(i)){
GetPlayerName(i,Jogador,24);
format(msg,sizeof(msg),"Admins Online: %s", Jogador);
SendClientMessage(playerid, 0x000FFFAA, msg);
count++;
}
}
if(count == 0){
SendClientMessage(playerid, COR_VERMELHO, "Nгo tem nenhum adm online agora!");
}
return 1;
}
Reply


Messages In This Thread
Como criar O comando /admins para DM - by Rafael_Nerd - 11.01.2010, 13:50
Re: Como criar O comando /admins para DM - by rannyere - 11.01.2010, 13:57
Re: Como criar O comando /admins para DM - by Sucre Pleasure - 11.01.2010, 16:58
Re: Como criar O comando /admins para DM - by Guilherme_Canani - 11.01.2010, 19:36
Re: Como criar O comando /admins para DM - by cabelo - 16.02.2010, 23:38
Re: Como criar O comando /admins para DM - by Guilherme_Canani - 17.02.2010, 00:44
Re: Como criar O comando /admins para DM - by OxygenBR - 17.02.2010, 07:36

Forum Jump:


Users browsing this thread: 1 Guest(s)