SA-MP Forums Archive
[Ajuda] Usar variбvel de cor no format - 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: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] Usar variбvel de cor no format (/showthread.php?tid=580511)



Usar variбvel de cor no format - RafaelOsio - 05.07.2015

Olб amigos. Tenho um problema:
Код:
format(string, sizeof (string), "%s{15c177}[Staff]: {FFFFFF}%s", name, text);
SendClientMessage(playerid, -1, string);
O cуdigo acima irб retornar mais ou menos isso:
Nick[Staff]: Mensagem

Eu gostaria que a cor do "Staff" fosse definida por uma variбvel, por exemplo, o player digita o comando /Cor e seleciona uma cor. E a partir daн, a Tag Staff serб da cor que ele selecionou.

OBS.: Fazer o comando e atribuir o valor da cor na variбvel eu jб fiz. O que falta й como usб-lo. Aguardo respostas. Obrigado.


Re: Usar variбvel de cor no format - Krusheer - 06.07.2015

pawn Код:
format(string, sizeof (string), "%s{%06x}[Staff]: {FFFFFF}%s", name, SuaVariavelAqui(playerid) >>> 8, text);
SendClientMessage(playerid, -1, string);
//OBS: No caso, a cor teria que ser salva nesse formato: 0xFFFFFFFF