22.03.2014, 18:14
pawn Code:
CMD:r(playerid,params[])
{
if(sscanf(params, "s[128]", params[0]))
return SendClientMessage(playerid, -1, "Use: /r [texto]");
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(PlayerInfo[playerid][pGang] == PlayerInfo[i][pGang])
{
new str[128];
format(str,sizeof(str),"** [Rбdio %s] %s, cambio. **", Nome(playerid), params[0]);
SendClientMessage(i, GetPlayerColor(playerid), str);
}
}
return 1;
}

