I'm going to make an update because the HTML source on the server has been modified slightly, not because of this addon but a new feature has been added. I'll try and get this update out some time today.
Regards,
-Andy
sladekravencommented on mIRC Snippet: Cm3
-
Mar 07, 2006
*There is still no mp3.rep command.
*I don't like your exit alias as it overwrites mIRC's existing /exit command to close mIRC.
*When shuffle is selected and my current song finishes i get:
$did (line 35, script17.mrc)
*The timer should be halted if the dialog is closed, regardless of the button as (Esc) could accidently be hit.
*As noted some buttons wont work (Only tried Playlist Text File)
On a more positive note, love the progress and volume bar, nice interface. Well done, hope to see the above fixes. :)
This is a good snippet, it's easy and efficient. However, when the dialog starts (init) you'll notice a loadbuf error in status. This wont account for everyone as some people will probably have a quote.txt file. Other than that there was some lines where you repeated yourself checking to if the box is checked. All it needed was a simple $iif(). :)
Your:
did -r quotes 10
did -a quotes 10 Total Quotes: $lines(quote.txt)
I got the idea of putting it in mIRC from http://www.blueharvest.net/games/name/
Since two of the full 2 mIRC scripts I have are Star Wars related I thought it'd be pretty cool to echo that instead of your full name when mIRC loads up.
I didn't add that echo or startup just the core of it.
alias F4 {
if (!$away) {
set %bnick $me
nick $$?="Away nick:"
set %away.reason $iif($editbox($active),$editbox($active),$$?="Reason:")
away %away.reason
ame %away.reason
}
else {
away
nick %bnick
ame Back from $awaymsg
}
}
If you have text in your editbox when you press F4 that will be your away message. If no text is in the editbox, a user input field will popup.
I've looked in the mIRC help file and found "autojoin" but how to add channels is beyond me. I couldn't see how to add. If mIRC's is server specific then ignore this but the way it's set up now you can have 2 channels. #mIRC is on (irc.server1.com) and #moo is on (irc.server2.com) When you join irc.server1.com uoi will join #mIRC but not #moo vice versa.
Regards,
-Andy