Quote:
Originally Posted by Shadoww5
Se todos vгo ser kickados para que mandar a mensagem ?
Ou vocк pхe a mensagem antes ou entгo kick todos, exceto aquele que executou o comando.
|
Perceba --'
pawn Код:
SendClientMessage(playerid, 0xE31919FF, string); // Nгo sei quem vai ler a mensagem mais tudo bem rsrs.
Leia antes de postar.
Abaixo segue alguns comando que podem serem usados em todos do servidor
.
pawn Код:
if(strcmp("/tapaall", cmdtext, true) == 0)
{
new string[60];
for(new i=0; i<MAX_PLAYERS; i++)
{
new Float:P[3];
GetPlayerPos(playerid, P[0], P[1], P[2]);
SetPlayerPos(playerid, P[0], P[1], P[2]+15.0);
}
format(string, sizeof(string), "[~] {FFFFFF}[ID:%d]%s {E31919}tapeou todos do servidor!", playerid, pNome(playerid));
SendClientMessage(playerid, 0xE31919FF, string);
printf("[ID:%d]%s executou o comando /tapaall", playerid, pNome(playerid));
return 1;
}
pawn Код:
if(strcmp("/banall", cmdtext, true) == 0)
{
new string[60];
for(new i=0; i<MAX_PLAYERS; i++)
{
Ban(i);
}
format(string, sizeof(string), "[~] {FFFFFF}[ID:%d]%s {E31919}baniu todos do servidor!", playerid, pNome(playerid));
SendClientMessage(playerid, 0xE31919FF, string); // Nгo sei quem vai ler a mensagem mais tudo bem rsrs.
printf("[ID:%d]%s executou o comando /banall", playerid, pNome(playerid));
return 1;
}
pawn Код:
if(strcmp("/vfullall", cmdtext, true) == 0)
{
new string[60];
for(new i=0; i<MAX_PLAYERS; i++)
{
SetPlayerHealth(i, 100);
}
format(string, sizeof(string), "[~] {FFFFFF}[ID:%d]%s {E31919}setou o life de todos do servidor para 100!", playerid, pNome(playerid));
SendClientMessage(playerid, 0xE31919FF, string);
printf("[ID:%d]%s executou o comando /vfullall", playerid, pNome(playerid));
return 1;
}
pawn Код:
if(strcmp("/vzall", cmdtext, true) == 0)
{
new string[60];
for(new i=0; i<MAX_PLAYERS; i++)
{
SetPlayerHealth(i, 0);
}
format(string, sizeof(string), "[~] {FFFFFF}[ID:%d]%s {E31919}matou todos do servidor riariariariara!", playerid, pNome(playerid));
SendClientMessage(playerid, 0xE31919FF, string);
printf("[ID:%d]%s executou o comando /vzall", playerid, pNome(playerid));
return 1;
}
pawn Код:
if(strcmp("/cfullall", cmdtext, true) == 0)
{
new string[60];
for(new i=0; i<MAX_PLAYERS; i++)
{
SetPlayerArmour(i, 100);
}
format(string, sizeof(string), "[~] {FFFFFF}[ID:%d]%s {E31919}setou o colete de todos do servidor para 100!", playerid, pNome(playerid));
SendClientMessage(playerid, 0xE31919FF, string);
printf("[ID:%d]%s executou o comando /cfullall", playerid, pNome(playerid));
return 1;
}
pawn Код:
if(strcmp("/czall", cmdtext, true) == 0)
{
new string[60];
for(new i=0; i<MAX_PLAYERS; i++)
{
SetPlayerArmour(i, 0);
}
format(string, sizeof(string), "[~] {FFFFFF}[ID:%d]%s {E31919}setou o colete de todos do servidor a 0!", playerid, pNome(playerid));
SendClientMessage(playerid, 0xE31919FF, string);
printf("[ID:%d]%s executou o comando /czall", playerid, pNome(playerid));
return 1;
}