^on #-kick 1 "*" if (sounds && (N == [$0]) && (fexist($bxdir/sound/kicked.wav) == 1)) {
	^stack push set exec_protection;^set exec_protection off
	^exec $bxdir/sound/wavplay -q $bxdir/sound/kicked.wav 1> /dev/null 2> /dev/null &
	^stack pop set exec_protection
}
^on #-invite 1 "*" if (sounds && (fexist($bxdir/sound/invite.wav) == 1)) {
	^stack push set exec_protection;^set exec_protection off
	^exec $bxdir/sound/wavplay -q $bxdir/sound/invite.wav 1> /dev/null 2> /dev/null &
	^stack pop set exec_protection
}
^on #-llook_join 1 "*" if (sounds && (fexist($bxdir/sound/llook_join.wav) == 1)) {
	^stack push set exec_protection;^set exec_protection off
	^exec $bxdir/sound/wavplay -q $bxdir/sound/llook_join.wav 1> /dev/null 2> /dev/null &
	^stack pop set exec_protection
}
^on #-llook_split 1 "*" if (sounds && (fexist($bxdir/sound/llook_split.wav) == 1)) {
	^stack push set exec_protection;^set exec_protection off
	^exec $bxdir/sound/wavplay -q $bxdir/sound/llook_split.wav 1> /dev/null 2> /dev/null &
	^stack pop set exec_protection
}
^on #-notify_signon_uh 1 "*" if (sounds && (fexist($bxdir/sound/notify_$0.wav) == 1)) {
	^stack push set exec_protection;^set exec_protection off
	^exec $bxdir/sound/wavplay -q $bxdir/sound/notify_$0.wav 1> /dev/null 2> /dev/null &
	^stack pop set exec_protection
}
^on #-notify_signoff_uh 1 "*" if (sounds && (fexist($bxdir/sound/unotify_$0.wav) == 1)) {
	^stack push set exec_protection;^set exec_protection off
	^exec $bxdir/sound/wavplay -q $bxdir/sound/unotify_$0.wav 1> /dev/null 2> /dev/null &
	^stack pop set exec_protection
}
