PHP Code:
#include <amxmodx>
#include <amxmisc>
public plugin_init()
{
register_logevent("RoundEnd",2,"1=Round_End")
}
public RoundEnd()
{
set_hudmessage(255, 0, 0, -1.0, 0.35, 0, 3.0, 1.2, 1.3, 1.4, 4)
show_hudmessage(id, "the round is end")
}
__________________