Top

Lazy Modes


mIRC Code
+ 0 likes
Please Register to submit score.
Average Score  4.7
Scores Submitted  3
Date Added  Apr 14, 2007
Last Updated  Apr 14, 2007
Tags  dialog  lazy  modes  xstatic 

Introduction

this is for them lazy people to do the modes, type /lm when its in your remotes and the dialog will open. Select the nickname and hit the mode you want to do, or select the kick to do it.



Thank you to Sean for the help he contributed

Grab the Code

Comments

  (7)  RSS
sean
Comments: 99
 
mIRC Snippet:  Lazy Modes
Posted on Apr 14, 2007 7:56 am
not bad :)
DarthReven
Comments: 468
 
mIRC Snippet:  Lazy Modes
Posted on Apr 14, 2007 3:14 pm
Might want to associate each nick to a channel and add only the nicks in the channels that you have @ or % in
S*A*U*R*A*B*H
Comments: 40
 
mIRC Snippet:  Lazy Modes
Posted on Apr 15, 2007 5:44 am
Nice ^^
F*U*R*B*Y*
Comments: 551
 
mIRC Snippet:  Lazy Modes
Posted on Apr 15, 2007 5:57 am
DarthReven, ok, sicne your a better scripter then me, can you show me how i would do that please :)
peterpowell
Comments: 48
 
mIRC Snippet:  Lazy Modes
Posted on Apr 15, 2007 9:47 am
perhaps have tabs on the left/top to choose the channel ;) (if this is possible)
Shadow Clash
Comments: 40
 
mIRC Snippet:  Lazy Modes
Posted on May 13, 2007 2:09 am
Try putting +a, -a, -q, -o etc etc all the minus o_o
Lindrian
Comments: 729
 
mIRC Snippet:  Lazy Modes
Posted on May 13, 2007 4:28 am
FURBY:
Code:

on me:*:join:#: {
var %x = 1, %y = $nick($chan,0)
while %x <= %y {
if $nick($chan,%y) isop $chan {
did -a DNAME ID $nick($chan,%y).pnick
}
inc %x
}
}

Something within thoose lines.

Also, what about using 1 button, for + and -.
If the guy has voice, the + will be a -, instead of having two buttons. Im sure you can do that :-)

Please Register or Login to start posting comments.
Bottom