When I click on my mirc to start it I have a 15 sec wav play. What I would like to have happen is after the wav comes to an end mirc will then start to connect on its own and after it has joined the server then say another wav like ex: mirc ready. I'm a newbie so try to explain in newbie terms thanx alot guys/gals
on MIDIEND, on WAVEEND, and on MP3END events trigger when mIRC finishes playing a sound on *:WAVEEND: { if ($filename == Begining.wav) { server irc.irchat.tv } } on *:connect: { splay -w connected.wave }
that code works only thing is my mirc loads and connects to the server before my startup wav gets done playing which in turn i'm hearing the comready.wav before my startup wav stops anyway to fix that ?? Thanx
You need to uncheck "Connect to Server" under mIRC Options > Connect > Options. This will stop your mIRC from connecting when you open mIRC. Then you need to place your timers for the begining wav file. Then a timer for the connect then the on connect code to play the connected wav file.
Code:
on *:start:{
.splay $mircdirsounds/startup.wav
.timer 1 [color:red]16[/color] /server $network
}
on *:connect:{
.splay $mircdirsounds/comready.wav
}
Thats not what he asked for, that will connect him no matter what in 16 seconds, he needs to uncheck the connect on start up and make sure he has the path/filenames correct