Quote:
|
Originally Posted by ZerroQ
The line in red is what i have added to the script! Any suggestions, comments ?
Is it possible to change the color of the centered text ? ( IM ingame )
|
Honestly, I'd use a hudmessage. They're pretty n' such. >_>
http://amxmodx.org/funcwiki.php?go=func&id=28
But if you wanted to change the color of text...
Code:
// This is from Damaged Soul's post a while back...
message_begin(MSG_ONE, get_user_msgid("SayText"), {0,0,0}, id)
write_byte(id)
write_string("^x03Team colored text ^x01Normal color")
message_end()
Yeeea... You can only use Red, Green, White, though.
Tis' built into the game engine.
Sooo maybe...
Code:
message_begin(MSG_ONE,get_user_msgid("SayText"),{0,0,0},0);
write_byte(0)
write_string(string[])
message_end()
Would setting the id as 0 send it to everyone? I'm not very experienced with messages, honestly. :S