are u trying to have this msg be displayed every new round? im not the best coder, but the only was i can get stuff to display every round is with the hook hud option.
PHP Code:
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
register_event("ResetHUD", "hook_hud", "b")
}
//-------------------------------------------------------------------------------------------
public hook_hud(id)
{
server_print("-- DEBUGGED BY CODE -- [hooking hud]",0.01)
//maybe this is where u call your stopstr ??
stopstr(index)
return PLUGIN_HANDLED
}
im not possative, but this seems like it should work.
__________________