KuTsuM

KuTsuM

Joined
Oct 31, 2004
Occupation
Marketing Manager
Location
Minneapolis, Minnesota
Interests
whatever challenges me ;)

Activity Stream

KuTsuM commented on a Page, Chatspace Proxy Detector  -  Oct 01, 2009

if i had a chatspace server that I knew of i probably would attempt it again. lol

 Respond  
KuTsuM commented on a Page, 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.

 Respond  
KuTsuM commented on a Page, 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 :)

 Respond  
KuTsuM commented on a Page, Outwar.com Stats Lookup  -  Oct 27, 2008

Nope I didn't rip this. Where is this addon?

 Respond  
KuTsuM commented on a Page, |:|:|:| Lag meter |:|:|:|  -  Dec 05, 2007

This doesn\'t work. You get a /drawpic error.

 Respond  
KuTsuM commented on a Page, improved htmlfree  -  Oct 27, 2007

What if the website used
tags? Might as well add that in too.

 Respond  
KuTsuM commented on a Page, $iscaps  -  Oct 03, 2007

Ignore the above question: You should use the prop parameter ($prop)

 Respond  
KuTsuM commented on a Page, $iscaps  -  Oct 03, 2007

Why do you need to declare \"get\"? Good regex example.

 Respond  
KuTsuM commented on a Page, 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 :)

 Respond  
KuTsuM commented on a Page, 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..

 Respond  
KuTsuM commented on a Page, $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)

 Respond  
KuTsuM commented on a Page, caps kicker  -  Oct 03, 2007

Whoops I meant .7 not .5 :)

 Respond  
KuTsuM commented on a Page, 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... }
}

 Respond  
KuTsuM commented on a Page, Deck Keeper 2.0  -  Oct 03, 2007

Interesting waste of space. Hawkee, you should delete this ;)

 Respond  
KuTsuM commented on a Page, 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 :)

 Respond  
KuTsuM commented on a Page, 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) { }]

 Respond  
KuTsuM commented on a Page, 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.

 Respond  
KuTsuM created a Page  -  Sep 26, 2007
270 

This snippet will show you how to add and remove directories, as well as check if they exist already or not in VB.NET.

 Respond   .NET  
KuTsuM created a Page  -  Sep 26, 2007

This snippet will check if your computer is currently logged onto the internet in VB.NET. This is especially useful if you are using winsock

KuTsuM created a Page  -  Sep 26, 2007
1,106 

This snippet will kill a current running process in VB.NET. To load snippet go File>New Project>Console Application

 Respond   .NET  
KuTsuM created a Page  -  Sep 26, 2007
336 

This snippet will list all of your system's current processes that are running into a console window using VB.NET. To load the snippet, go to File>New Project>Console Application and copy paste the module.

 Respond   .NET  
KuTsuM commented on a Page, 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..

 Respond  
KuTsuM commented on a Page, 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
}

 Respond  
KuTsuM commented on a Page, 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 :)

 Respond  
KuTsuM created a Page  -  Jun 19, 2006
5,219 

I'm posting this script to make it more visible than on the forums:

KuTsuM commented on a Page, 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
}
}

 Respond  
KuTsuM commented on a Page, 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?

 Respond  
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.