Quakenet Command Script with Dialogs

By Defero on Sep 26, 2013

If you're on the irc Quakenet you can use this Script if you don't know all the commands you can use
It has some commands but not all.
Report any bugs etc. on the IRC: irc.quakenet.org Port: 6667 Channel: #Defero or in the comments!
Have fun!

alias commands {
  dialog -m Commands Commands
}

menu * {
  Quakenet Commands:/dialog -m Commands Commands
}

dialog Commands {
  title "Quakenet Commands"
  size -1 -1 98 98
  option dbu
  button "OP", 1, -1 -1 25 25
  button "DEOP", 2, 24 -1 25 25
  button "VOICE", 3, 49 -1 25 25
  button "DEVOICE", 4, 74 -1 25 25
  button "KICK", 5, -1 24 25 25
  button "BAN", 6, 24 24 25 25
  button "KB", 7, 49 24 25 25
  button "TOPIC", 8, 74 24 25 25
  button "NICK", 9, -1 49 25 25
  button "JOIN", 10, 24 49 25 25
  button "PART", 11, 49 49 25 25
  button "SERVER", 12, 74 49 25 25
  button "MODE", 13, -1 74 25 25
  button "UM", 14, 24 74 25 25
  button "QUERY", 15, 49 74 25 25
  button "NOTICE", 16, 74 74 25 25
}

on *:dialog:Commands:sclick:1:{
  var %nick $?="Enter a nick you want to op"
  var %channel $?="Enter the channel you want to op the nick on (With -#-)"
  mode %channel +o %nick
}

on *:dialog:Commands:sclick:2:{
  var %nick $?="Enter a nick you want to deop"
  var %channel $?="Enter the channel you want to deop the nick on (With -#-)"
  mode %channel -o %nick
}

on *:dialog:Commands:sclick:3:{
  var %nick $?="Enter a nick you want to voice"
  var %channel $?="Enter the channel you want to voice the nick on (With -#-)"
  mode %channel +v %nick
}

on *:dialog:Commands:sclick:4:{
  var %nick $?="Enter a nick you want to devoice"
  var %channel $?="Enter the channel you want to devoice the nick on (With -#-)"
  mode %channel -v %nick
}

on *:dialog:Commands:sclick:5:{
  var %nick $?="Enter the nick you want to kick"
  var %channel $?="Enter the channel you want to kick the nick on (With -#-)"
  var %reason $?="Enter the reason"
  kick %channel %nick %reason
}

on *:dialog:Commands:sclick:6:{
  var %nick $?="Enter the nick you want to kick"
  var %channel $?="Enter the channel you want to kick the nick on (With -#-)"
  mode %channel +b %nick
}

on *:dialog:Commands:sclick:7:{
  var %nick $?="Enter the nick you want to Kickban"
  var %channel $?="Enter the channel you want to Kickban the nick on (With -#-)"
  var %reson $?="Enter the reason why you want to Kickban the nick"
  mode %channel +b %nick
  kick %channel %nick %reason
}

on *:dialog:Commands:sclick:8:{
  var %topic $?="Enter the topic you want to set"
  var %channel $?="Enter the channel you want to change the topic on (With -#-)"
  topic %channel %topic
}

on *:dialog:Commands:sclick:9:{
  var %nick $?="Enter the nick you want to have"
  nick %nick
}

on *:dialog:Commands:sclick:10:{
  var %channel $?="Enter the channel you want to join"
  join %channel
}

on *:dialog:Commands:sclick:11:{
  var %channel $?="Enter the channel you want to part"
  part %channel
}

on *:dialog:Commands:sclick:12:{
  var %server $="Enter the server you want to join (Example: irc.quakenet.org)
  server -m %server
}

on *:dialog:Commands:sclick:13:{
  var %mode $?="Enter the mode you want to set on your channel"
  var %channel $?="Enter the channel you want to set a mode"
  mode %channel %mode
}

on *:dialog:Commands:sclick:14:{
  var %mode $?="Enter the usermode you want to set"
  mode $me %mode
}

on *:dialog:Commands:sclick:15:{
  var %nick $?="Enter the nick you want to query"
  var %msg $?="Enter the query message"
  query %nick %msg
}

on *:dialog:Commands:sclick:16:{
  var %nick $?="Enter the nick you want to notice"
  var %msg $?="Enter the message you want to send to the nick"
  notice %nick %msg
}

Comments

Sign in to comment.
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.