OnPlayerText
#1

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.

Reply
#2

Код 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;
Reply
#3

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
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)