PHP Code:
#pragma semicolon 1
#include <amxmodx>
#include <amxmisc>
// Define the Plugin Version
new const VERSION[] = "1.0";
new g_msgSayText;
public plugin_init()
{
register_plugin("Clear MSG Test", VERSION, "Shuttle_Wave");
register_logevent("EventRoundStart", 2, "1=Round_Start");
g_msgSayText = get_user_msgid("SayText");
}
public EventRoundStart()
{
message_begin(MSG_BROADCAST, g_msgSayText);
write_byte(0);
write_string("^n^n^n^n");
message_end();
}