SA-MP Forums Archive
OnPlayerText - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Español/Spanish (https://sampforum.blast.hk/forumdisplay.php?fid=29)
+---- Thread: OnPlayerText (/showthread.php?tid=636567)



OnPlayerText - Gamerd - 30.06.2017

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
Quote:

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.




Re: OnPlayerText - EdgarHN - 30.06.2017

Код HTML:
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;



Re: OnPlayerText - Daniel-92 - 30.06.2017

Quote:
Originally Posted by Gamerd
Посмотреть сообщение
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
La wiki samp dice lo siguiente con respecto a GetPlayerColor
Quote:

important Note:
GetPlayerColor will return nothing (0) unless SetPlayerColor has been used first.

https://sampwiki.blast.hk/wiki/GetPlayerColor