Quick question how do i make a sound go off after a certain amount of time is up i cant seem to figure that out
Times and sounds
Posted by Hobson on Sat 22 Mar 2003 04:01 PM — 5 posts, 23,423 views.
ok maybe i didnt word this right ok after 11minutes i want a certain sound to be played.. but theres nowhere to put sounds in timers
Hmm, I am surprised Nick doesn't have this ability built in. I'm sure he'll take it as a suggestion to implement in a future version.
In the meantime, you will have to call a script from your timer, to play the sound for you.
Use this MUSHclient function:
http://www.mushclient.com/scripts/function.php?name=Sound
In the meantime, you will have to call a script from your timer, to play the sound for you.
Use this MUSHclient function:
http://www.mushclient.com/scripts/function.php?name=Sound
hmmm i guess ill have to wait for future version cause i dont understand script at all
The script in this case is pretty darn simple. Make the timer call it by putting its name (eg. TimerSound) into the "script" field of the timer. The script goes into your script file. You could append to the exampscript.vbs file that comes with MUSHclient.
sub TimerSound (timername)
world.Sound "c:\my_sounds_directory\mysound.wav"
end sub