Comments

 (140) 
  1. Everything
  2. Scripts
  3. Snippets
  4. Images
KuTsuM commented on mIRC Snippet: Chatspace Proxy Detector  -  Oct 01, 2009

if i had a chatspace server that I knew of i probably would attempt it again. lol
KuTsuM commented on mIRC Snippet: Chatspace Proxy Detector  -  Jun 22, 2009
Truthfully, I would delete this snippet. I had a working version and a non working version way back when and accidentally posted the wrong one. Now it's been so long I have neither, lol.
KuTsuM commented on mIRC Snippet: Basic mIRC Based Web Server  -  Nov 20, 2008
haha dude, you must be one angry person. FYI this code again is 2 and a half years old and it was never meant to be an advanced web server. If that was the case I would have made an addon rather than snippet, don't you think? Also, the sockread event is only for the initial connection. After that point it is not needed because mIRC then sends the content of the html page to the client and then the connectin is no longer needed (same would happen if the Connection: close parameters are sent in the initial request). Now I know this has it's bugs and at one point did work, and I haven't updated it at all since I originally posted it because it's meant as basically an example for sockets. I know how to do sockets, just check my tutorial in the tutorials section of the forum, buddy :)
KuTsuM commented on mIRC Snippet: Outwar.com Stats Lookup  -  Oct 27, 2008
Nope I didn't rip this. Where is this addon?
KuTsuM commented on Image: I R 1337!  -  Sep 30, 2008
I hope someone wouldn't intentionally change their songs around to make that happen..
KuTsuM commented on mIRC Snippet: |:|:|:| Lag meter |:|:|:|  -  Dec 05, 2007
This doesn't work. You get a /drawpic error.
KuTsuM commented on mIRC Snippet: improved htmlfree  -  Oct 27, 2007
What if the website used <br> tags? Might as well add that in too.
KuTsuM commented on mIRC Snippet: $iscaps  -  Oct 03, 2007
Ignore the above question: You should use the prop parameter ($prop)
KuTsuM commented on mIRC Snippet: $iscaps  -  Oct 03, 2007
Why do you need to declare "get"? Good regex example.
KuTsuM commented on mIRC Snippet: mp3 information  -  Oct 03, 2007
Just for cleaner code you should edit this
if ($isid) {
if ($inmp3) {
to
if ($isid) && ($inmp3) {

Just because you have no use for them to be seperated. Otherwise, good job :)
KuTsuM commented on mIRC Snippet: Lag checker  -  Oct 03, 2007
This will always result in 0: var %u $calc($ticks - $ticks) Hence the reason it always displays the lag time as 0secs..
KuTsuM commented on mIRC Snippet: $getasc  -  Oct 03, 2007
You should shorten this:
if ($isid) {
if ($1-) {
to
if ($isid) && ($1-) {

Also using the = in the var command I beleive allows you to add more length to variable (I heard this somewhere on here a while back)
KuTsuM commented on mIRC Snippet: caps kicker  -  Oct 03, 2007
Whoops I meant .7 not .5 :)
KuTsuM commented on mIRC Snippet: caps kicker  -  Oct 03, 2007
First thing. You can't kick someone who's talking to you in a query. You can do this however:
if ($chan) { kick $v1 $nick blah blah }
else { close -m $nick }

Also, the above would work, but you can use this for shorter code too:

on *:TEXT:*:#: {
var %x = 1,%y
while (%x <= $len($1-)) {
if ($right($left($1-,%x),1) isupper) inc %y
inc %x
}
if (%y > $calc($len($1-) * .5)) { do action... }
}
KuTsuM commented on mIRC Snippet: Deck Keeper 2.0  -  Oct 03, 2007
Interesting waste of space. Hawkee, you should delete this ;)
KuTsuM commented on mIRC Snippet: Sick_Puppy's Pop-ups  -  Oct 03, 2007
Relatively clean code, although I would get rid of the /'s and some of the spaces before the commands in order to save space on the hd :)
KuTsuM commented on mIRC Snippet: Clan greet script  -  Oct 03, 2007
Oh yeah, and you should also check to make sure $2 is specified or else you could get error messages. [if ($2) { }]
KuTsuM commented on mIRC Snippet: Clan greet script  -  Oct 03, 2007
Although I didn't understand what mountaindew was pointing out, you need to get rid of the or (||) symbols in your if statement under the !addleader command.
KuTsuM commented on PHP Snippet: Check a Port  -  Nov 19, 2006
"Yoinx, if you have it on your Domain and thats not hosted off of your computer then no it won't show it online."

127.0.0.1 is localhost no matter what system a server is hosted on and who is connecting to it..
KuTsuM commented on mIRC Snippet: The iphone  -  Aug 02, 2006
This is what xDaeMoN means..

var %nicks = $1-,%y = 1
while (%y <= $numtok(%nicks,32)) {
msg $gettok(%nicks,%y,32) ItachiPhone now engaged.
inc %y
}
KuTsuM commented on mIRC Snippet: Chatspace Proxy Detector  -  Jun 20, 2006
Ports can be added, plus your script doesn't cover closed proxies, only open. Plus, you can add all the ports you need to, and theres alot more ports than that are used by proxies. 65536 ports can be used by a proxy. Next time you comment, please make sure it's constructive, thanks :)
KuTsuM commented on mIRC Snippet: Last X Lines v2.0  -  Jun 13, 2006
errr... try this:

alias last {
if ($1) {
savebuf $1 $active last.txt
loadbuf $1 $active last.txt
.remove last.txt
}
}
KuTsuM commented on mIRC Snippet: Infect Game[UPDATED](Again)  -  May 31, 2006
Raichu,

A. Why did Nikola Tesla improve electricity from DC to AC?
B. Who said Thomas Edison use the work of Micheal Faraday for each and one of his inventions?

You theories are just plain selfish and posessive. He gave credit to the script owner, and as stated in Hawkee.com's rules, is all that is needed. You are just proving yourself a hypocrite for saying this, considering you've made many scripts that have used methods and formats as old as mIRC, pretty much. Really, what your saying is if someone made this script:
on *:JOIN:#: { msg $chan Hi $nick }
and someone remade it to
on *:JOIN:#: { msg $chan Hello $nick }
Honestly, should person B have to ask person A for permission to use the same format? The mimic script is older then i've even known mIRC existed. So why don't we just trace back to the person who had the idea and ask them?
KuTsuM commented on mIRC Snippet: Infect Game[UPDATED](Again)  -  May 29, 2006
Riachu.. people "rip" ideas all the time. It's called making improvements. If this didn't happen, we wouldn't be talking because the internet wouldn't exist.
KuTsuM commented on mIRC Snippet: raw numeric figure-out-er  -  May 26, 2006
Just horrible pig latin.
KuTsuM commented on mIRC Snippet: Fulgore Black List  -  May 18, 2006
Your while loop is set up in a bad. You should perform checks to make sure your reading actual lines of the text file

This is yours:

while ($read(blacklist.txt,%blacklist) != $null) {
did -a blacklist 6 $read(blacklist.txt,%blacklist)
inc %blacklist
}

A better one should be:

while (%blacklist <= $lines(blacklist.txt) {
did -a blacklist 6 $read(blacklist.txt,%blacklist)
inc %blacklist
}

The $lines identifier returns the number of lines in a text file. Although both formats will still grab everything from a txt file, this is a cleaner way of doing it
KuTsuM commented on mIRC Snippet: Simple Inputs..  -  May 14, 2006
Also, (sorry I forgot this in the last post), for the ban-kick, rather than performing both the mode and kick commands, you can use ban -k # $2 5 $3-
KuTsuM commented on mIRC Snippet: Simple Inputs..  -  May 14, 2006
You should probably do a few more checks within the if-than-else to make sure that your script doesn't try to perform a command without sufficient information, and use a bit cleaner code, IE:
elseif (.bk == $1) { mode # +b $2 | kick # $2 $3- }
should be:
elseif (.bk == $1) && ($3) { mode # +b $2 | kick # $2- }

See what I mean?
KuTsuM commented on mIRC Snippet: P2p Kill  -  May 09, 2006
I think it'd be better if you use the on open event, this way if you p2p someone you can keep the p2p kill on and they won't get killed. Not bad though ;)
KuTsuM commented on mIRC Snippet: /loadfile  -  May 03, 2006
$1 on that string is "my", besides I don't see how it's usefull. It takes a lot of system resources to split strings up, and if you just want to return the entire string, use $1-, rather than splitting the string up once again
  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 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.