This is what i wrote:
PHP Code:
#include <amxmodx>
public plugin_init()
{
register_plugin( "Round Start Sound", "1.0", "AMXX Community" );
register_event("HLTV", "event_new_round", "a", "1=0", "2=0")
}
public plugin_precache()
{
precache_sound("misc/predatortheme.mp3")
}
public event_new_round()
{
client_cmd( 0,"mp3 stop")
client_cmd( 0,"mp3 play", "predatortheme" )
}
Now sound is disabled completely...im starting to feel like trying to kill a fly with a cannon