mIRC Snippet:
Simple Inputs (to make IRC life easier)
Posted on Jan 5, 2009 12:23 am
Posted on Jan 5, 2009 12:23 am
if ($1 == .h) { /mode $chan +h $2 }
if ($1 == .dh) { /mode $chan -h $2 }
if ($1 == .o) { /mode $chan +o $2 }
etc.
On all of these you can clean up the code by removing the /.
if ($1 == .h) { mode $chan +h $2 }
if ($1 == .dh) { mode $chan -h $2 }
if ($1 == .o) { mode $chan +o $2 }
if ($1 == .dh) { /mode $chan -h $2 }
if ($1 == .o) { /mode $chan +o $2 }
etc.
On all of these you can clean up the code by removing the /.
if ($1 == .h) { mode $chan +h $2 }
if ($1 == .dh) { mode $chan -h $2 }
if ($1 == .o) { mode $chan +o $2 }
mIRC Snippet:
*Update* Mini Fantasy
Posted on Dec 22, 2005 12:34 pm
Posted on Dec 22, 2005 12:34 pm
you missed the "}", closing bracket, at the end of the lasergun 'if.' add one there and remove one at the end, and the script is finished...
That one's done too. Sorry I missed those, I just assumed since I was working off a predone code it was fine, and I probably started typing in between the lasergun thing and the and, so there's an extra brackett at the end.
That one's done too. Sorry I missed those, I just assumed since I was working off a predone code it was fine, and I probably started typing in between the lasergun thing and the and, so there's an extra brackett at the end.
mIRC Snippet:
*Update* Mini Fantasy
Posted on Dec 22, 2005 12:31 pm
Posted on Dec 22, 2005 12:31 pm
you missed the "n" after the "o", that is why stage 7 doesnt work.
I also just fixed this one, thanks :)
I also just fixed this one, thanks :)
mIRC Snippet:
*Update* Mini Fantasy
Posted on Dec 22, 2005 12:30 pm
Posted on Dec 22, 2005 12:30 pm
ermm actualy your command is wrong it should be on *:Text:!~:#: {
also !proceed_into_castle and !climb_ladder triggers do not work
I fixed this. Thanks!
also !proceed_into_castle and !climb_ladder triggers do not work
I fixed this. Thanks!
mIRC Script:
Dragon Script V4.0
Posted on Oct 20, 2005 3:45 pm
Posted on Oct 20, 2005 3:45 pm
Dareios, I think it does, if you don't that's fine.
mIRC Snippet:
Nick Mentioned Update
Posted on Oct 2, 2005 12:09 pm
Posted on Oct 2, 2005 12:09 pm
Huh? Thought what was about the @ window?
mIRC Snippet:
Monitor Window
Posted on Sep 25, 2005 9:25 am
Posted on Sep 25, 2005 9:25 am
You might have to restart the client to get it working again :\
mIRC Snippet:
Monitor Window
Posted on Sep 25, 2005 9:14 am
Posted on Sep 25, 2005 9:14 am
Oh, it doesn't include the person who was opped, etc? It should...
mIRC Snippet:
Monitor Window
Posted on Sep 25, 2005 9:14 am
Posted on Sep 25, 2005 9:14 am
"(14:09:58) omgW Opped in #zero.
(14:09:59) vanISH Opped in #eu.
(14:10:41) c- Opped in #z-ya.
(14:10:41) Thab0mb Opped in #z-ya.
(14:22:35) 3rr0r Voiced in #qaz.
(14:38:49) desi Unbanned"
What's the problem???
(14:09:59) vanISH Opped in #eu.
(14:10:41) c- Opped in #z-ya.
(14:10:41) Thab0mb Opped in #z-ya.
(14:22:35) 3rr0r Voiced in #qaz.
(14:38:49) desi Unbanned"
What's the problem???
mIRC Snippet:
Monitor Window
Posted on Sep 25, 2005 9:03 am
Posted on Sep 25, 2005 9:03 am
"I have noticed it uses on connect.What if you are already connected and then turn it on? I get errors such as above."
Yea, I noticed that. I'll fix it right now.
Yea, I noticed that. I'll fix it right now.
mIRC Snippet:
Thanks. (Voice & Op)
Posted on Sep 24, 2005 11:03 am
Posted on Sep 24, 2005 11:03 am
You had lots of errors.... Updated code:
on *:Op:#:{
if ($opnick == $me ) && ($nick == $me) msg $chan I opped myself.
else msg $chan 12• 15•Thanks15• 15•for15• 15•the15• 15•@15• $nick 12•
}
on *:Voice:#:{
if ($vnick == $me) && ($nick == $me) msg $chan I voiced myself.
else msg $chan 12• 15•Thanks15• 15•for15• 15•the15• 15•+15• $nick 12•
}
on *:Op:#:{
if ($opnick == $me ) && ($nick == $me) msg $chan I opped myself.
else msg $chan 12• 15•Thanks15• 15•for15• 15•the15• 15•@15• $nick 12•
}
on *:Voice:#:{
if ($vnick == $me) && ($nick == $me) msg $chan I voiced myself.
else msg $chan 12• 15•Thanks15• 15•for15• 15•the15• 15•+15• $nick 12•
}
mIRC Snippet:
a few modes
Posted on Sep 11, 2005 4:36 pm
Posted on Sep 11, 2005 4:36 pm
I know, brottor. People just come through and give it a rating to bump their count. I've been saying this for awhile.
mIRC Snippet:
lol,brb and more
Posted on Sep 4, 2005 2:10 pm
Posted on Sep 4, 2005 2:10 pm
on *:Text:*:#:{
if (lol isin $1-) msg $chan $nick is laughing out loud.
if (brb isin $1-) msg $chan $nick is going to be right back.
if (bbl isin $1-) msg $chan $nick is going to be back later.
if (g2g isin $1-) msg $chan $nick has to leave.
if (bbl isin $1-) msg $chan $nick is going to be back later.
if (rofl isin $1-) msg $chan $nick is rolling on the floor laughing.
if (roflmao isin $1-) msg $chan $nick is rolling on the floor laughing his ass off.
}
mIRC Snippet:
Slap back script
Posted on Sep 4, 2005 1:54 pm
Posted on Sep 4, 2005 1:54 pm
Because I was going to do something with it but decided it wasn't necessary. You can delete the on nick and on connect.
mIRC Snippet:
Slap back script
Posted on Sep 3, 2005 12:24 pm
Posted on Sep 3, 2005 12:24 pm
on *:connect:{ set %a $me }
on *:nick:{
if ($nick == $me) set %a $me
}
on *:Action:*slaps $me*:*:{
if ($chan == $null) set %n $nick
else set %n $chan
msg %n $nick has just attempted to slap me!
describe %n dodges $nick's slap and counter-attacks $nick
}
I just revised it a little bit.
mIRC Snippet:
Goggled_Bot Version 2.0
Posted on Aug 31, 2005 4:30 pm
Posted on Aug 31, 2005 4:30 pm
Actually it is! $chan(35) turns out as # in the text! Will add that in an update, though. Guys I need more ideas here!
mIRC Snippet:
*Update* Mini Fantasy
Posted on Aug 31, 2005 4:28 pm
Posted on Aug 31, 2005 4:28 pm
on *:Text!~:#: {
if (%stage5 == on) {
You type !~ for the last symbol. It should work.
if (%stage5 == on) {
You type !~ for the last symbol. It should work.
mIRC Snippet:
Goggled_Bot Version 2.0
Posted on Aug 30, 2005 4:43 pm
Posted on Aug 30, 2005 4:43 pm
Anyone have any comments on the new version


