Zaloguj się by uzyskać pełen dostęp. Nie masz jeszcze konta? Założ je już teraz w kilka sekund.
GTAONLINE.PL
Tematy otagowane jako: biały)
1. [INNE] Ranga kolorowy tekst na czacie (w drugiej linijce bia
Witam
Mam problem kt?ry polegan tym ?e gdy Head Admin napisze co? d?ugie na czacie ?e b?dzie kilka linijek to w 1 linijce tekst jest danego koloru a w dalszych si? zmienia.

ScreenShoot:



Kod:
Pawn

public OnPlayerText(playeridtext[])
{

new 
ranga[256];
new 
nick[MAX_PLAYER_NAME];
GetPlayerName(playeridnicksizeof(nick));

if(
IsPlayerAdmin(playerid)) //Tutaj tylko dla admin?w
{
format(rangasizeof(ranga), "{FF2400}|Head Admin|: {FF3333}%s"text);
SendPlayerMessageToAll(playeridranga);
return 
0;
}

if(
strcmp(nick"brak"true)== 0)
{
format(rangasizeof(ranga), "(vip): %s"text);
}
else if(!
IsPlayerAdmin(playerid))
{
format(rangasizeof(ranga),"|Gracz %d|: %s"playeridtext);
}
SendPlayerMessageToAll(playeridranga);




return 
0;
}