mIRC Home    About    Download    Register    News    Help

Print Thread
#153900 24/07/06 09:48 AM
Joined: Mar 2006
Posts: 16
B
brantje Offline OP
Pikka bird
OP Offline
Pikka bird
B
Joined: Mar 2006
Posts: 16
Hi,
i made a small menu:
Code:
Sounds
.Turn Sounds on /soundon
.Turn Sounds off /soundoff


This is for the join sounds:
Code:
ON 1:JOIN:#:/splay sound/joinsound.wav

How can i turn the sounds on/off with the commands?

Joined: Dec 2002
Posts: 1,245
M
Hoopy frood
Offline
Hoopy frood
M
Joined: Dec 2002
Posts: 1,245
if you mean you want to enable the sound you wanted to have playing when someone joins, or at other times disable the sound, look at using groups. Also look at using spaces and properly constructing your commands
ON 1:JOIN:#:/splay sound/joinsound.wav
should be more like
ON 1:JOIN:#: splay joinsound.wav

inside a "group"

#joinsound on
ON 1:JOIN:#: splay joinsound.wav
#joinsound end

it is important to note this is used in the remotes, not in the aliases or popups

with the "on / off" in the channel menu
Code:
menu channel {
Join Sound
.Turn On: enable #joinsound
.Shut Off: disable #joinsound
}
#joinsound on
ON 1:JOIN:#: splay joinsound.wav 
#joinsound end


Link Copied to Clipboard