12.05.2012, 20:35
Do you use the definition properly in your messages?
I have seen some people do things like
But that's wrong, and the proper way to implement "shorter" color codes would be:
But in your case, you're showing us a list of definitions which DOES NOT include COLOR_WHITE. It only has COL_WHITE, but somewhere in your code, you use COLOR_WHITE? Is the problem not too obvious?
I have seen some people do things like
pawn Код:
// WRONG!
#define COLOR_RED "FF0000"
SendClientMessage(playerid, COLOR_WHITE, "Hey, {COLOR_RED}Dude!");
pawn Код:
// RIGHT!
#define COLOR_RED "FF0000"
SendClientMessage(playerid, COLOR_WHITE, "Hey, {"COLOR_RED"}Dude!");