Top

Comments

  (5)  RSS
bugyou's
bugyou
Comments: 5
 
mIRC Snippet:  multi server connect
Posted on Feb 14, 2009 9:25 am
ah thnkx, that came very handy ,nice job dude :P
bugyou
Comments: 5
 
mIRC Snippet:  Simple multi network away script
Posted on Dec 5, 2008 2:31 am
I had to change a bit for it to work

alias away {
/set %reason. [ $+ [ $network ] ] $1-
/set %away.1. [ $+ [ $network ] ] $ctime
/set %awayscript. [ $+ [ $network ] ] on
/me I am now away. $1- $+ .
}
alias back {
if (%awayscript. [ $+ [ $network ] ] == on) {
/me I am back from %reason. [ $+ [ $network ] ] $+ . I was away for $duration($calc($ctime - %away.1. [ $+ [ $network ] ] ))
/unset %reason. [ $+ [ $network ] ]
/unset %away.1. [ $+ [ $network ] ]
/set %awayscript. [ $+ [ $network ] ] off
}
}
on *:text:**:#: {
if $1 != $me $+ ? { halt }
if (%awayscript. [ $+ [ $network ] ] == on) {
/notice $nick I am currently away. Reason: %reason. [ $+ [ $network ] ] $+ . I have been away for $duration($calc($ctime - %away.1. [ $+ [ $network ] ] ))
}
}
bugyou
Comments: 5
 
Product Review:  Awesome player!
Posted on Aug 17, 2008 12:08 am
if you want some awesome headphones for a cheap price ($20) go buy some skullcandy ink'd headphones. they are have the highest 'quality to price' ratio outh there.
bugyou
Comments: 5
 
mIRC Snippet:  Kill game
Posted on Jun 4, 2007 5:11 pm
Now anytime I try to do any form of "!kill" i get a message like
(18:14:44) -CIS-BOT- you cant use this command so fast after eachother. please wait a while longer.
bugyou
Comments: 5
 
mIRC Snippet:  Channel Counter(Channel peak) Via !Count
Posted on Mar 3, 2006 5:26 pm
This is got to be the dumbest snippet ever. It shows only current user count, never "peak count", ie maximum number of users on channel. Besides, on input means that only you can use !count... and why on earth would you like to message the number of users to the channel?! And what is with the halt there?! Not to mention, where should the poor snippet get the $nick and $chan as this is private event?!
Bottom