mIRC Snippet:
Simple Kicks
Posted on Dec 14, 2007 7:50 pm
Posted on Dec 14, 2007 7:50 pm
nice script XD I got quite a few of your scripts :D
mIRC Snippet:
Small Away Script
Posted on Oct 14, 2007 9:56 am
Posted on Oct 14, 2007 9:56 am
Hehe, thanks Tippy. =) I'm sure there's a few things I got fix/tidy up a bit, but we'll see what the rest of hawkee has to say. :D
mIRC Snippet:
Small Away Script
Posted on Oct 14, 2007 6:04 am
Posted on Oct 14, 2007 6:04 am
Well done way to go!I like it and no bugs!
mIRC Snippet:
Another Auto-Join :P
Posted on Oct 2, 2007 9:18 pm
Posted on Oct 2, 2007 9:18 pm
[Updated]:
You no longer need to put the # before the channel name. Though if you do, it doesn't matter. (Thanks to Roy_ ;)
[P.S. The double channel name seems to only be a problem on my one mIRC. It wroks fine on the other. Silly thing.]
You no longer need to put the # before the channel name. Though if you do, it doesn't matter. (Thanks to Roy_ ;)
[P.S. The double channel name seems to only be a problem on my one mIRC. It wroks fine on the other. Silly thing.]
mIRC Snippet:
Another Auto-Join :P
Posted on Oct 2, 2007 8:51 pm
Posted on Oct 2, 2007 8:51 pm
Or you could also try, I'm a little fuzzy on this,
if ($left($did(aj,2).text,1) != $chr(35)) write $+($network,.,ajoin,.,txt) $+($chr(35),$did(aj,2).text) $did(aj,10).text
else { write $+($network,.,ajoin,.,txt) $did(aj,2).text $did(aj,10).txt }
Just in case someone makes a mistake, it already writes it for them.
--Roy
if ($left($did(aj,2).text,1) != $chr(35)) write $+($network,.,ajoin,.,txt) $+($chr(35),$did(aj,2).text) $did(aj,10).text
else { write $+($network,.,ajoin,.,txt) $did(aj,2).text $did(aj,10).txt }
Just in case someone makes a mistake, it already writes it for them.
--Roy
mIRC Snippet:
Another Auto-Join :P
Posted on Oct 2, 2007 8:43 pm
Posted on Oct 2, 2007 8:43 pm
[Updated]:
I've disabled the second editbox and the 'Add' and 'Clear' button until you've entered something into the first editbox. I've yet to add the 'Clear All Channels' button, which I'll be adding sometime soon.
I'll also be working on figuring something out for the 'Delete' button and the # thing...
[NOTE:] I'm having a slight error with adding. When you close it and open it, two of a channel is listed, and I cannot figure out why. So if you see something I messed up, can you please point it out? Thanks in advance. (:
-Akishoot
I've disabled the second editbox and the 'Add' and 'Clear' button until you've entered something into the first editbox. I've yet to add the 'Clear All Channels' button, which I'll be adding sometime soon.
I'll also be working on figuring something out for the 'Delete' button and the # thing...
[NOTE:] I'm having a slight error with adding. When you close it and open it, two of a channel is listed, and I cannot figure out why. So if you see something I messed up, can you please point it out? Thanks in advance. (:
-Akishoot
mIRC Snippet:
Another Auto-Join :P
Posted on Oct 2, 2007 8:41 pm
Posted on Oct 2, 2007 8:41 pm
Just change the $1 to $did(aj,2).text
--Roy
--Roy
mIRC Snippet:
Another Auto-Join :P
Posted on Oct 2, 2007 8:40 pm
Posted on Oct 2, 2007 8:40 pm
It'd probably be along the lines of: if ($left($1,1) iswm $chr(35))
--Roy
--Roy
mIRC Snippet:
Another Auto-Join :P
Posted on Oct 2, 2007 8:37 pm
Posted on Oct 2, 2007 8:37 pm
Not quite sure on how to get it to check to see if what you inputed begins with #. I'm still fooling around with the dialog a bit...
mIRC Snippet:
Another Auto-Join :P
Posted on Oct 2, 2007 5:28 am
Posted on Oct 2, 2007 5:28 am
Thanks for all the suggestions, mountaindew. I'm working on those now, and a few other things. =)
mIRC Snippet:
Another Auto-Join :P
Posted on Oct 1, 2007 7:10 pm
Posted on Oct 1, 2007 7:10 pm
Suggestions:
*Add a clear all channels button
*I suggest you disable the add button until you typed in the edit box, and when theres nothing in it, disable it again
*Also, u might wanna disable the delete button until you click a channel
*Check if what you inputed begins with #
*Disable key until you type in a channel
*make it
*Add a clear all channels button
*I suggest you disable the add button until you typed in the edit box, and when theres nothing in it, disable it again
*Also, u might wanna disable the delete button until you click a channel
*Check if what you inputed begins with #
*Disable key until you type in a channel
| Code: |
| on *:dialog:aj:sclick:5:{ did -ar aj 2 did -ar aj 10 } |
*make it
| Code: |
| did -r aj 2,10 |
mIRC Snippet:
Another Auto-Join :P
Posted on Sep 30, 2007 1:35 pm
Posted on Sep 30, 2007 1:35 pm
Looks good.
mIRC Snippet:
Another Auto-Join :P
Posted on Sep 29, 2007 7:41 pm
Posted on Sep 29, 2007 7:41 pm
[Updated]:
I've changed the .set %ajs and %ajd to var %ajs = 1 and var %ajd = 1. I've also added an alias and it checks to see if the dialog is in use.
I've changed the .set %ajs and %ajd to var %ajs = 1 and var %ajd = 1. I've also added an alias and it checks to see if the dialog is in use.
mIRC Snippet:
Another Auto-Join :P
Posted on Sep 29, 2007 7:04 pm
Posted on Sep 29, 2007 7:04 pm
Pros:
- efficient and easy to use
- Original =)
Cons:
- Setting unnecessary variables
- Doesn't check if the the dialog is in use when opening.
Use local variables: var %ajs 1 and var %ajd 1. You can also create an alias that opens the dialog: alias aj.open { if (!$dialog(aj)) dialog -md aj aj } <- That's just an example. Sometimes it's easier to type the alias. On average, this is a really nice snippet. Good job.
- efficient and easy to use
- Original =)
Cons:
- Setting unnecessary variables
- Doesn't check if the the dialog is in use when opening.
Use local variables: var %ajs 1 and var %ajd 1. You can also create an alias that opens the dialog: alias aj.open { if (!$dialog(aj)) dialog -md aj aj } <- That's just an example. Sometimes it's easier to type the alias. On average, this is a really nice snippet. Good job.
mIRC Snippet:
Simple Kicks
Posted on Sep 27, 2007 2:35 pm
Posted on Sep 27, 2007 2:35 pm
Ur refresh button lists a same Nick twice sometimes when you use it.
try
try
| Code: |
| on *:dialog:km:sclick:28:{ did -r km 9 var %total = $nick($active,0), %x = 1 while ( %x <= %total ) { did -i km 9 %x $nick($active,%x) inc %x } } |
mIRC Snippet:
Simple Kicks
Posted on Sep 27, 2007 2:04 pm
Posted on Sep 27, 2007 2:04 pm
| Code: |
alias km { dialog -md km km } |
make it
| Code: |
alias km $iif($dialog(km),dialog -k km km) dialog -m km km |
mIRC Snippet:
Simple Kicks
Posted on Sep 27, 2007 2:00 pm
Posted on Sep 27, 2007 2:00 pm
This script was made awhile ago, so this was before my current knowledge of scripting. I will be taking this apart and redoing it soon. Thanks for all the pointers/tips. =)
mIRC Snippet:
Simple Kicks
Posted on Sep 27, 2007 10:05 am
Posted on Sep 27, 2007 10:05 am
| Code: |
| set %addy.ban $address($did(9).seltext,2) mode $active +b %addy.ban |
They're right, Aki. However, the variable appears to be completely pointless.. o.o
| Code: |
| mode $active +b $address($did(9).seltext,2) |







