Code:
/* Show HUD Message */
#include <amxmodx></p>
#include <amxmisc></p>
#define PLUGIN "Show Hud Message"</p>
#define VERSION "1.0"</p>
#define AUTHOR "Rolnaaba"</p>
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
}
public startround(id)
{
set_hudmessage(0, 0, 255, -1.0, -1.0, 0, 6.0, 12.0)
show_hudmessage(id, "YOUR TEXT HERE")
set_task(0.2, "show_hudmsg")
}
public show_hudmsg(id)
{
set_hudmessage(0, 0, 255, -1.0, -1.0, 0, 6.0, 12.0)
show_hudmessage(id, "YOUR TEXT HERE")
set_task(0.2, "show_hudmsg")
}
just change YOUR TEXT HERE to w/e you want (make sure to have both YOUR TEXT HERE messages the same
__________________