#include < amxmodx > new const SOUND[] = "sounds/test"; public plugin_init() { register_event("HLTV", "event_round_start", "a", "1=0", "2=0"); } public event_round_start(id) { client_cmd(id, "spk test/%s", SOUND); } public function(id) { client_cmd(id, "stopsound %s", SOUND); }