Comments

 (106) 
  1. Everything
  2. Snippets
  3. Images
  4. Hardware
raccoon commented on Comment: Ultimate Bot Auto Voice Script  -  Jan 13, 2013
Consider using mIRC's built-in Auto-Voice feature? /avoice *!*@* #MyChan
raccoon commented on Comment: mIRC Copy Clipper (/clip)  -  Jan 08, 2013
It allows someone to right-click the window and set it to Desktop. Without -D, Desktop is always disabled by default. So always use -D unless you're lazy or it's hidden.
raccoon commented on Thread: Hawkee  -  Jan 06, 2013
@Hawkee awesome sauce. Though I'd test even smaller. 25x25?
raccoon commented on Thread: Hawkee  -  Jan 05, 2013
@Hawkee Ah ok. Btw, your @ commenting system is showing rectangular avatars which make each line unnecessarily tall.
raccoon commented on Thread: Hawkee  -  Jan 05, 2013
I'm a bit saddened to see the site only gets daily traffic in the teens. You have such a useful little code blog I figured more people utilized it.
raccoon commented on Comment: mIRC Copy Clipper (/clip)  -  Jan 05, 2013
When I post "Comment Reserved" that means I may edit and use the top-comment for updates and the like. I post that on all my snippets. Edit: Seems new threaded comments are posted in reverse order these days, so it may be obsolete behavior now.

/help /window -- You can use the -D switch on just about any custom /window to provide greater flexibility to the user. There is never a situation when you shouldn't use -D.

Also, you can change '-aeDz' to '-h' if you don't want to see the window.
raccoon commented on mIRC Snippet: mIRC Copy Clipper (/clip)  -  Jan 05, 2013
[Comment reserved]
raccoon commented on mIRC Snippet: Random Fake CTCP version Reply  -  Nov 21, 2012
The higher priority is clean code. It's the responsibility of the compiler or runtime engine to improve a code's performance.
raccoon commented on mIRC Snippet: Random Fake CTCP version Reply  -  Nov 21, 2012
Creating hash tables in place of global variables, even single infrequently used ones? I don't like this idea, even if there are 3 or 4 cpu cycles saved. In the long run it's sloppy (to me), and harder for newbies to work with.
raccoon commented on mIRC Snippet: Random Fake CTCP version Reply  -  Nov 21, 2012
I'd stick with the global variable /sets, changing them to /set -e (unsets when client is closed), and check if the variable has been initialized yet. Such that a version reply is selected at random the first time you are /ctcp versioned, and the same reply is sent for the entire session of multiple version requests.

Sending a different reply seconds apart will only prove you're faking it.
raccoon commented on mIRC Snippet: Auto-Rejoin on Ban or Block  -  Nov 21, 2012
It works for /inc and /set because they are special. Test with -s.

* Inc %FAILJOIN.64##xyzzy to 1
raccoon commented on mIRC Snippet: Yahoo Chat Room Socket Connection  -  Nov 19, 2012
Looks like a lot of nice work. I'm going to test this one tomorrow. Though, it appears the bottom of the script might be cut off... at least a closing } anyway.
raccoon commented on Snippet: Keylogger  -  Nov 19, 2012
Oh Wow. Yeah, AHK is much more capable than this. For starters, you could reuse most of that code by letting each 'hotkey' fall-through to the next. But ultimately a key logger in AHK is no more than 5 to 15 lines, natively or by cheating with WinAPI hooks.

SunnyD: don't blame AHK. It's really much more elegant.
raccoon commented on mIRC Snippet: Auto-Rejoin on Ban or Block  -  Nov 18, 2012
Latest update: v2.2 -- Fixed: Instance of %chan should be $1 in timer's name.
raccoon commented on mIRC Snippet: (mIRC) /magic alias  -  Aug 28, 2012
It seems since I wrote this script, I've been gaining more attention from ban hammers. So of course, I wrote another script that I feel like sharing.

Raccoon's Ban Rejoin @ http://www.hawkee.com/snippet/9627/

Nothing too special. Just neatly made, I think.
raccoon commented on mIRC Snippet: r_cycle.mrc Regain Ops Channel Cycle Script  -  Aug 28, 2012
Related script: Raccoon's Ban Rejoin @ http://www.hawkee.com/snippet/9627/
raccoon commented on mIRC Snippet: Raccoon's Ban Rejoin (mIRC)  -  Aug 27, 2012
* 12-Sept-2012 - v1.1 - Modified 'chsafe' alias identifier...
from: ALIAS -l chsafe { return $!replace( $replace($1-,$,`$) ,`$,$) }
to: ALIAS -l chsafe { return $iif($ isin $1,$!replace( $replace($1,$,`$) ,`$,$),$1) }
raccoon commented on mIRC Snippet: r_cycle.mrc Regain Ops Channel Cycle Script  -  Jul 09, 2012
Minor update Version 2.1

Anyone still using this script? I'm interested in your thoughts.
raccoon commented on Snippet: (AHK) Enable Any Window/Button You Click On  -  Jul 06, 2012
I have never tested this script or any version of AutoHotkey on Windows 7. You may have to run it as Administrator for it to poke at other processes' window properties.
raccoon commented on mIRC Snippet: r_cycle.mrc Regain Ops Channel Cycle Script  -  Jul 06, 2012
Updated script. Version 2.0

Whole thing has been re-arranged to a simple inline structure, and stripped and reduced the overly wordy commenting. Also fixed a bug with the flood prevention, and added awareness for other higher-than op modes.

Click Like if you like.
raccoon commented on mIRC Snippet: r_cycle.mrc Regain Ops Channel Cycle Script  -  Jan 09, 2012
Bizarre. I just noticed in all the time I've had this script up (and everyone who's commented positively on it), I only have 3 reviews for an average of score of 2.7 of 10. If you're one of the dozens of people who use, like, praised or have joined my channel asking for features to customize it, might I suggest a rating of "10 (Best)"? ^_^ Thanks.
raccoon commented on mIRC Snippet: r_cycle.mrc Regain Ops Channel Cycle Script  -  Dec 27, 2011
I would never post a script open to the public that didn't educate the user about how it works, line by line, to teach them how to script and to protect them from rogue code. It is my intention to make this a common practice to the point where users demand it or find someone else's script, or better yet, write their own from the knowledge gleaned by cleverly crafted and commented example.
raccoon commented on mIRC Snippet: r_cycle.mrc Regain Ops Channel Cycle Script  -  Dec 05, 2011
celjan37: Insert the 3rd and 4th and Nth lines below into the appropriate location.

Code

 


cooldude13233: Insert the 3rd and 4th lines below into the appropriate location.

Code

 
raccoon commented on mIRC Snippet: (mIRC) /magic alias  -  Sep 26, 2011
gooshie: Indeed, for two different cases. $0 indicates that parameters have been passed, so display the error message along with the help. Otherwise, no parameters have been passed... so just display the help (no error).
raccoon commented on mIRC Snippet: (mIRC) /magic alias  -  Sep 26, 2011
Updated! Fixed evaluation bug.
var %s = [ [ $replace($v1,*,%s) ] ]
should be
var %s = [ [ $replace($v1,*,% $+ s) ] ]
raccoon commented on mIRC Snippet: (mIRC) /magic alias  -  Sep 26, 2011
gooshie: Interesting find. I'll have to fix that. It -should- be passing the variable contained string as the first parameter of the identifier ($camel) and not as a naked string across parameters. Oops. :)
raccoon commented on mIRC Snippet: Kolored Text Effects  -  Sep 26, 2011
I see. Btw, if that line-3 is supposed to fix explicit commas passed to $hue as an identifier, please give this string a try.

"Hello, I like co,mm ,as! ,,,,, :)"
raccoon commented on mIRC Snippet: Kolored Text Effects  -  Sep 26, 2011
Hmm. When I test it, I get only the first letter colorized with color 1, then the rest of the word colorized with color 2. Similar to Title Case pattern. Not sure if that's what you intended; your description doesn't mention it. It also appears to be limited to 2 colors only (with or without a .prop set).

//echo -a $hue(%fox)
The quick brown fox

What does line 3 do?
while %i < $0 { inc %i | %m = %m $+ $chr(44) $($ $+ %i,2) }
It makes %m = , The quick brown fox
This is because $1 = The quick brown fox... not $1 $2 $3 $4, since the string is passed via identifier.

I'd also suggest that, since this function only takes a single parameter with use of .properties, and the ability to set those properties via global variable, it could also work as an alias /hue <string>. That way you can easily use it in the channel, even if the string contains commas. This can be done with use of $isid. Eg:

$iif($isid,return,editbox -a) %output
raccoon commented on mIRC Snippet: Surround with identifier  -  Sep 26, 2011
Pretty nifty. :)
raccoon commented on mIRC Snippet: EnCaSe and DeCaSe (hidden messages)  -  Sep 25, 2011
Fixed a bug. Two instances of $!isid should have been !$isid.
  1. 1
  2. 2
  3. 3
  4. 4
  5. Next
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.