Code:
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#include <colorchat>
#define PLUGIN "I'm Simon"
#define VERSION "1.0"
#define AUTHOR "SpeeD"
new bool:Simon
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd("say /simon","simoncmd")
register_logevent("ResetSimon",2,"1=Round_End ")
register_event("TextMsg", "ResetSimon", "a", "2&#Game_C", "2&#Game_w")
}
public simoncmd(id)
{
if(get_user_team(id) != 2)
ColorChat(id,GREEN,"You are not allowed to be Simon.")
if(!Simon)
{
new name[32]
get_user_name(id,name,31)
set_hudmessage( 0, 100, 255, 1.0, 0.05, 0, 0.1, 1.0, 0.1, 0.1, 4 );
show_hudmessage( 0, "%s - Is now simon.", name );
Simon = true
return PLUGIN_HANDLED;
}
else
ColorChat(id,GREEN,"There is already Simon!")
return PLUGIN_HANDLED
}
public ResetSimon()
Simon = false
Hud message disappears how i can make so it stays until next round
Please help

i dont ask much