Top

Oper Control/Channel Serv


mIRC Code
+ 0 likes
Please Register to submit score.
Bookmark and Share
Average Score  5.0 (of 1 scores)
Date Added  Dec 15, 2005
Last Updated  Dec 15, 2005

Introduction

Just some operator commands and some using chanserv. Dialoged. Pretty simple to use, any questions or comments, you can find me in irc.animelab.com:6667 @ #truth_or_dare

Grab the Code

on *:Load: { dialog -m op op }
dialog op {
  title "Operator "   
  size 35 40 500 75
  button "+mMRc", 1, 0 0 60 30
  button "-mMRc", 2, 60 0 60 30
  button "Kick",3, 120 0 32 30
  button "Ban",4, 152 0 33 30
  button "+M", 5, 185 0 30 25
  button "+R", 6, 185 25 30 24
  button "+c", 7, 185 49 30 24
  button "-M", 8, 215 0 30 25
  button "-R", 27, 215 25 30 24
  button "-c", 10, 215 49 30 24
  button "+o", 11, 245 0 30 25
  button "+v", 12, 245 25 30 24
  button "-o", 13, 275 0 30 25
  button "-v", 14, 275 25 30 24
  button "whois", 15, 275 49 30 24
  button "ping", 16, 245 49 30 24
  button "Aop Add",17, 305 0 60 25
  button "Aop deL",18, 305 25 60 24
  button "Sop Add",19, 365 0 60 25
  button "Sop deL",20, 365 25 60 24
  button "Akick Add",21, 305 49 60 24
  button "Akick Add",22, 365 49 60 24
  button "NickServ Info",23, 425 37 75 36
  button "ChanServ Info",24, 425 0 75 36
  button "Kick + Ban",25, 120 30 65 43
  text "Made by `Kazuma; Channel Serv/Oper Controls",26, 0 30 120 43
}
on *:DIALOG:operator:sclick:11:{
  if ($me isop $active) {
    mode $active +o $$?="Give op to who?"
  }
}
on *:DIALOG:operator:sclick:13:{
  if ($me isop $active) {
    mode $active -o $$?="DeOp Who?"
  }
}
on *:DIALOG:operator:sclick:12:{
  if ($me isop $active) {
    mode $active +v $$?="Give voice to who?"
  }
}
on *:DIALOG:operator:sclick:14:{
  if ($me isop $active) {
    mode $active -v $$?="DeVoice Who?"
  }
}
on *:DIALOG:operator:sclick:3:{
  if ($me isop $active) {
    kick $active $$?="Kick who?" Random Kick
 
  }
}
on *:DIALOG:operator:sclick:4:{
  if ($me isop $active) {
    ban $active $$?="Ban who?" 4
 
  }
}
on *:DIALOG:operator:sclick:15:{
  whois $snick $$?="/whois Who?"
}
on *:DIALOG:operator:sclick:16:{
  ctcp $$?="Ping who?" ping
}
on *:DIALOG:operator:sclick:5:{
  mode $active +M
}
on *:DIALOG:operator:sclick:1:{
  mode $active +mMRc
}
on *:DIALOG:operator:sclick:2:{
  mode $active -mMRc
}
on *:DIALOG:operator:sclick:8:{
  mode $active -M
}
on *:DIALOG:operator:sclick:7:{
  mode $active +c
}
on *:DIALOG:operator:sclick:6:{
  mode $active +R
}
on *:DIALOG:operator:sclick:27:{
  mode $active -R
}
on *:DIALOG:operator:sclick:14:{
  mode $active -V
}
on *:DIALOG:operator:sclick:10:{
  mode $active -c
}
on *:DIALOG:operator:sclick:25:{
  ban $active $$?="Ban who?" 4
  kick $active $$?="Kick Who?" K+ban in affect!
}
on *:DIALOG:operator:sclick:26:{
  chanserv op $active $$?="Use chanserv to give OP to who?"
}
on *:DIALOG:operator:sclick:23:{
  nickserv info $$?="Info on who?" ALL
}
on *:DIALOG:operator:sclick:24:{
  chanserv info $active ALL
}
on *:DIALOG:operator:sclick:17:{
  chanserv aop $active add $$?="Who to add to AOP?"
}
on *:DIALOG:operator:sclick:18:{
  chanserv aop $active del $$?="Del Who from AOP?"
}
on *:DIALOG:operator:sclick:19:{
  chanserv sop $active add $$?="Who to add to SOP?"
}
on *:DIALOG:operator:sclick:20:{
  chanserv sop $active del $$?="Del Who from SOP?"
}
on *:DIALOG:operator:sclick:21:{
  chanserv akick $active add $$?="Add Who to akick? ex; Guest09218 - or host? ex; *!*@*.fl.comcast.net"
}
on *:DIALOG:operator:sclick:22:{
  chanserv akick $active del $$?="Delete who from akick; or what host?"
}
menu channel {
  -
  Oper Control:/dialog -m op op
}
 

Comments

  (10)  RSS
xDaeMoN
Comments: 695
 
mIRC Snippet:  Oper Control/Channel Serv
Posted on Dec 15, 2005 2:10 pm
The dialog could be made better. Too small and crowded. Good to see you working on dialogs. Good luck.
`Kazuma
Comments: 254
 
mIRC Snippet:  Oper Control/Channel Serv
Posted on Dec 15, 2005 2:29 pm
I'll edit it then. Yeah, it's still pretty confusing and hard to make. Thanks, xDaeMon.
RoninWarrior
Comments: 252
 
mIRC Snippet:  Oper Control/Channel Serv
Posted on Dec 15, 2005 2:55 pm
`kazuma think of a dialog like a fine glass of wine! smoothe as can be good work but alot of the commands the dialog selivers could be grouped togather also think about that.
`Kazuma
Comments: 254
 
mIRC Snippet:  Oper Control/Channel Serv
Posted on Dec 15, 2005 3:36 pm
Hm, Thanks Ronin. That makes it sound alot easier and not so stressful.
xDaeMoN
Comments: 695
 
mIRC Snippet:  Oper Control/Channel Serv
Posted on Dec 15, 2005 3:45 pm
You can also use dialog studio for easier dialog making, can't remember the link though. ;)
`Kazuma
Comments: 254
 
mIRC Snippet:  Oper Control/Channel Serv
Posted on Dec 15, 2005 3:49 pm
I'll google it then.
Whatever
Comments: 29
 
mIRC Snippet:  Oper Control/Channel Serv
Posted on Dec 15, 2005 10:34 pm
Pretty good. Makes life on IRC so much easier.
F*U*R*B*Y*
Comments: 637
 
mIRC Snippet:  Oper Control/Channel Serv
Posted on Dec 19, 2005 6:34 pm
doesn't work :$
HassanAbbas
Comments: 18
 
mIRC Snippet:  Oper Control/Channel Serv
Posted on Nov 27, 2006 12:35 pm
what commands to use it :s
damdempsel
Comments: 19
 
mIRC Snippet:  Oper Control/Channel Serv
Posted on Aug 22, 2008 8:21 pm
Umm...Where do you put the nick in? You fail...

Commenting Options

Register or Login to Hawkee.com or use your Facebook or Twitter account by clicking the corresponding button below.

  
Bottom