Jump to content
  • 0

pomoc Potrebujem poradiť s farbami...


Gatsby^

Dotaz

Zdravím, na officialnom fóre som našiel tutorial ako spraviť TAG pred meno hráča, no mám problém, že tag aj meno hráča mi zobrazuje celé čierne. 

 

Kod: 

format(string, sizeof(string),"[TAG] %s: %s", pName, text);
SendClientMessageToAll(GetPlayerColor(playerid), string);

Chcel by som to spraviť aby bol tag napríklad červeny a meno aby malo takú farbu akú má už od prihlasenia danú...

Link to comment
Share on other sites

16 odpovědí na tuto otázku

Recommended Posts

  • 0

toto ti musí fungovať...

format(string, sizeof(string),"[TAG] {%06x}%s: {FFFFFF}%s",(GetPlayerColor(playerid) >>> 8),pName, text);
SendClientMessageToAll(0xFF0000AA,string);

(dúfam že pri prihlásení/pripojení používaš SetPlayerColor :think:)

Link to comment
Share on other sites

  • 0

toto ti musí fungovať...

(dúfam že pri prihlásení/pripojení používaš SetPlayerColor :think:)

 

Nie nepoužívam SetPlayerColor

 

 

 

 

format(string, sizeof(string),"{FF0000}[TAG] %x%s: %s", GetPlayerColor(playerid),pName, text);

SendClientMessageToAll(-1, string);

 

 

Namiesto toho %x mi píše ID hráča

Link to comment
Share on other sites

  • 0

Do OnPlayerConncect som si šupol : SetPlayerColor(playerid, 0xFF66FFAA);

 

Pod tým mam:

public OnPlayerText(playerid, text[])
{
     new string[256], pName[MAX_PLAYER_NAME];
	 GetPlayerName(playerid, pName,sizeof(pName));
     format(string, sizeof(string),"[TAG] {%06x}%s: {FFFFFF}%s",(GetPlayerColor(playerid) >>> 8),pName, text);
     SendClientMessageToAll(0xFF0000AA,string);
    return 0;
}
Link to comment
Share on other sites

  • 0

mne to ide normálne

[19:48:15] {FFFFFF}SA-MP {B9C9BF}0.3z {FFFFFF}Started
[19:48:18] Connecting to 127.0.0.1:7777...
[19:48:18] Connected. Joining the game...
[19:48:18] Connected to {B9C9BF}milous22 test server
[19:48:25] [TAG] {FF66FF}milous22: {FFFFFF}asdawfa
[19:48:27] [TAG] {FF66FF}milous22: {FFFFFF}asfcrwad

kIE2fRJ.jpg?1

 

chyba je vo vašom prijímači...

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...