PHP Code:
#include <amxmodx>
public plugin_init()
{
register_plugin("Bomb Def Sound", "1", "AmoneL");
register_event("SendAudio", "event_bomb_defuse", "a", "2=Defused_The_Bomb");
}
public event_bomb_defuse()
{
client_print(0, print_chat, "Bomb was defused!")
}
This should eliminate the "Counter-Terrorists Win" sound and print a message when the bomb is defused right ?