Guest User

Untitled

a guest
Apr 20th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. menu channel {
  2. Ops
  3. ..Perm Ops :{
  4. set %opnick $$?"What nick to you want to perm op?"
  5. set %level $$?"What level should they be?"
  6. /cs access # add %opnick %level
  7. }
  8. }
  9. menu channel {
  10. Ops
  11. ..Temp Ops :{
  12. set %tempopnick $$?"What nick to you want to temp op?"
  13. set %temp $$?"What level should the be set at (Using +q,+a,+o,+h or -q,-a,-o,-h)?"
  14. /mode # %temp %tempopnick %tempopnick
  15. }
  16. }
  17. menu channel {
  18. Ops
  19. ..delete Ops :{
  20. set %opnick $$?"What nick to you want to delete?"
  21. /cs access # del %opnick
  22. }
  23. }
  24.  
  25. menu channel,nicklist {
  26. Ops
  27. ..Ban $1 :{
  28. set %banmsg $$?"What do you want the ban kick message to be?"
  29. mode $chan +b $address($1,2)
  30. kick $chan $1 %banmsg
  31. }
  32. }
  33. menu channel,nicklist {
  34. Ops
  35. .. Kick $1 :{
  36. set %kickmsg $$?"What would you like the kick message to be"
  37. kick $chan $1 %kickmsg
  38. }
  39. }
  40.  
  41. menu channel {
  42. Ops
  43. ..Nick :{
  44. set %changenick $$?"What do you want your nick to be"
  45. set %nick $me
  46. /nick %changenick
  47. }
  48. }
  49. menu channel {
  50. Ops
  51. ..ChangeNickBack :{
  52. /nick %nick
  53. }
  54. }
  55. menu channel {
  56. Ops
  57. .Group Nick :{
  58. set %main $$?"What is the main nick"
  59. set %password $$?"What is your password"
  60. ns group %main %password
  61. }
  62. }
  63. menu channel {
  64. Ops
  65. ..DEGroup Nick :{
  66. set %dropnick $$?"What nick would you like to drop"
  67. /ns Drop %dropnick
  68. }
  69. }
  70. menu channel {
  71. Ops
  72. .. Identify :{
  73. set %identify $$?"Enter Nick And Password with a Space seperating them"
  74. /ns identify %identify
  75. }
  76. }
  77. menu channel {
  78. Ops
  79. ..Server :{
  80. set %server $$?"What server would you like to connect to ie irc.name.com?"
  81. /server -m %server
  82. }
  83. }
Add Comment
Please, Sign In to add comment