raccoon

raccoon

Joined:
Feb 22, 2010

Activity Stream

raccoon posted a Snippet  -  Mar 25, 2013
raccoon commented on a Snippet, mIRC Copy Clipper (/clip)  -  Jan 05, 2013
[Comment reserved]
 Respond  
raccoon posted a Snippet  -  Jan 05, 2013
raccoon commented on a 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.
 Respond  
raccoon commented on a 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.
 Respond  
raccoon commented on a 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.
 Respond  
raccoon commented on a 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
 Respond  
raccoon commented on a 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.
 Respond  
raccoon commented on a 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.
 Respond  
raccoon commented on a 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.
 Respond  
raccoon posted a Snippet  -  Nov 18, 2012
raccoon commented on a 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.
 Respond  
raccoon commented on a Snippet, r_cycle.mrc Regain Ops Channel Cycle Script  -  Aug 28, 2012
Related script: Raccoon's Ban Rejoin @ http://www.hawkee.com/snippet/9627/
 Respond  
raccoon posted an Image  -  Aug 27, 2012
raccoon commented on a 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) }
 Respond  
raccoon posted a Snippet  -  Aug 27, 2012
raccoon commented on a 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.
 Respond  
raccoon posted an Image  -  Jul 08, 2012
raccoon commented on a 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.
 Respond  
raccoon commented on a 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.
 Respond  
raccoon posted a Snippet  -  Feb 25, 2012
raccoon commented on a 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.
 Respond  
raccoon commented on a 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.
 Respond  
raccoon commented on a 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

 
 Respond  
raccoon commented on a 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).
 Respond  
raccoon commented on a Snippet, (mIRC) /magic alias  -  Sep 26, 2011
Updated! Fixed evaluation bug.
var %s = [ [ $replace($v1,*,%s) ] ]
should be
var %s = [ [ $replace($v1,*,% $+ s) ] ]
 Respond  
raccoon commented on a 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. :)
 Respond  
raccoon commented on a Snippet, Surround with identifier  -  Sep 26, 2011
Pretty nifty. :)
 Respond  
raccoon commented on a Snippet, EnCaSe and DeCaSe (hidden messages)  -  Sep 25, 2011
Fixed a bug. Two instances of $!isid should have been !$isid.
 Respond  
raccoon posted an Image  -  Sep 24, 2011
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.