Here is the code for a hud message in red that says "TEST" for 5 seconds at the start of the round :
Code:
public plugin_init()
{
register_plugin("Test","0.1","DarlD")
register_event("ResetHUD","new_round","b")
}
public new_round(id)
{
set_hudmessage(255, 0, 0, -1.0, -1.0, 0, 6.0, 5.0, 0.5, 1.5, 4)
show_hudmessage(0, "TEST")
return PLUGIN_HANDLED
}