Correct way is with TextMsg, not SayText, but you can do as you want.
PHP Code:
// czero\resource\czero_english.txt for real format
// "Game_radio" "^2%%s1 (RADIO): %%s2"
// "Game_radio_location" "^3%%s1^1 @ ^3%%s2^1 (RADIO): %%s3"
{
emessage_begin(MSG_ONE, gmsgTextMsg, .player=iPlayer)
ewrite_byte(PRINT_RADIO) // PRINT_RADIO = 5
ewrite_string(szId) // player index converted to string
ewrite_string("^3%%s1^1 @ ^3%%s2^1 (RADIO): %%s3")
ewrite_string(szName) // %%1 is replaced with this string
ewrite_string(szLocation) // %%2 is replaced with this string
ewrite_string(szMessage) // %%3 is replaced with this string
emessage_end()
}
You can make an idea reading following plugin's source :
http://forums.alliedmods.net/showthread.php?p=573867
Anyway, if you use amxx1.8.3, i suggest to only use client_print_color native.
__________________