Colors don't work
3 replies



15.04.11 03:52:07 pm
So I am having a hook on say, and In the function I have this:
msg(player(id, "name")..": ©000255000"..zinute)
And it doesn't color the text of message (zinute). It just shows ©000255000lalala. Any ideas?
msg(player(id, "name")..": ©000255000"..zinute)
And it doesn't color the text of message (zinute). It just shows ©000255000lalala. Any ideas?
You need that color thingy on the start of the string, like this:
Code:
1
msg("©000255000" .. player(id, "name") .. ": " .. zinute)



