The title say it all.
I want to execute stopsound for everyone on new round, but i can't really fix it.
This one doesn't work.
PHP Code:
#include <amxmodx>
public plugin_init() {
register_plugin("Stopsound on new round","1.0","Rirre")
register_logevent("Event_RoundStart", 2, "1=Round_Start")
}
public Event_RoundStart(id) {
client_cmd(id,"stopsound")
}