#include <amxmodx>public plugin_init(){ register_concmd("say /t", "test") }public test(){ new Float:COLOR[3] COLOR[0] = COLOR[0] ? 255 : 0 COLOR[1] = COLOR[1] ? 0 : 0 COLOR[2] = COLOR[2] ? 0 : 255 set_hudmessage(COLOR[0], COLOR[1], COLOR[2], -1.0, 0.0, 0, 6.0, 1.0) show_hudmessage(0, "Test")}