Mostrar ID en el chat y color de admin
#3

pawn Код:
public OnPlayerText(playerid, text[])
{
  new str[128], name[MAX_PLAYER_NAME];
  GetPlayerName(playerid, name, sizeof(name))
  if(IsPlayerAdmin(playerid)){
    format(str, sizeof(str), "admin %s [%d]: %s", name, playerid, text);
    SendClientMessageToAll(color, str);
  }
  else{
    format(str, sizeof(str), "%s [%d]: %s", name, playerid, text);
    SendClientMessageToAll(GetPlayerColor(playerid), str);
  }
  return 0;
}
hay una forma mejor, pero ahora no me la acuerdo y no ando con mucho tiempo.
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)