new name[MAX_PLAYER_NAME], String[175]; GetPlayerName(playerid, name, sizeof(name)); format(String, sizeof(String), "%s [%d]: {2ba4ac}%s", name, playerid, text); // Aplicando formato. SendClientMessageToAll(GetPlayerColor(playerid), String); // Enviando el mensaje con GetPlayerColor, que es el color actual del jugador. return 0; // Ignorando el texto por defecto, terminando la funciуn. |
new name[MAX_PLAYER_NAME], String[175]; GetPlayerName(playerid, name, sizeof(name)); format(String, sizeof(String), "{%06x}%s [%d]: %s", GetPlayerColor(playerid) >>> 8, name, playerid, text); SendClientMessageToAll(-1, String); return 0;
Porque No Me Salen Los Nombres Con Diferentes Colores Todos Salen Negros y Como Agrego La Variable para Que Los Nick De Los Admin Digan Admin y Los Vip VIP |
important Note: GetPlayerColor will return nothing (0) unless SetPlayerColor has been used first. |