19.01.2013, 20:39
Quote:
You mean like this?
Код:
public OnPlayerText(playerid, text[]) { //Now les't make an admin chat, it will be: # <text>. if( (text[0] == '#' || text[0] == '@') && strlen(text) > 1) { new str[128]; new szPlayerName[MAX_PLAYER_NAME]; GetPlayerName(playerid, szPlayerName, MAX_PLAYER_NAME); if(IsPlayerAdmin(playerid)) { format(str, 128, "{FF0000}Admin %s: {DBED15}%s", szPlayerName, text[1]); for(new iPlayerID; iPlayerID < MAX_PLAYERS; iPlayerID++) { if(!IsPlayerConnected(iPlayerID)) continue; if(!IsPlayerAdmin(iPlayerID)) continue; SendClientMessage(iPlayerID, 0xFFFFFFAA, str); } } return 1; } } |
pawn Код:
public OnPlayerText(playerid, text[])
{
//Now les't make an admin chat, it will be: # <text>.
if( (text[0] == '#' || text[0] == '@') && strlen(text) > 1)
{
new str[128];
new szPlayerName[MAX_PLAYER_NAME];
GetPlayerName(playerid, szPlayerName, MAX_PLAYER_NAME);
if(IsPlayerAdmin(playerid))
{
format(str, 128, "{FF0000}Admin %s: {DBED15}%s", szPlayerName, text[1]);
for(new iPlayerID; iPlayerID < MAX_PLAYERS; iPlayerID++)
{
if(!IsPlayerConnected(iPlayerID)) continue;
if(!IsPlayerAdmin(iPlayerID)) continue;
SendClientMessage(iPlayerID, 0xFFFFFFAA, str);
}
}
}
return 1;
}