Advertisement
krock186

IRC tutorial

Jan 3rd, 2016
306
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.24 KB | None | 0 0
  1. Written by Krock <mk939@ymail.com> - Revision 2, 160209
  2.  
  3.  
  4. The 5 steps from "register your nick" until "assign a BotServ nick"
  5. This works on Rizon and any other IRC servers with the specified services.
  6.  
  7. Notice: The <> brackets are placeholders. Do NOT write them in the console commands!
  8. Skip step 1 (and 2?) if you already registered your nickname.
  9.  
  10. Step 1 - Register your nick
  11. =============================
  12. "/ns" is an alias for "/msg NickServ".
  13.  
  14. Change your nick:
  15. /nick <nick>
  16.  
  17. Register your nickname:
  18. /ns register <password> <email>
  19.  
  20. Check your email inbox and confirm the account creation.
  21. /ns confirm <key>
  22.  
  23. Identify your nick after the account was confirmed:
  24. /ns identify <channel> <password>
  25.  
  26.  
  27. Step 2 - Get your own VHost
  28. =============================
  29. "/hs" is an alias for "/msg HostServ".
  30.  
  31. A VHost hides your hostmask.
  32. Rules: https://wiki.rizon.net/index.php?title=VHost
  33.  
  34. Request a VHost:
  35. /hs request <vhost>
  36.  
  37. After it's approved (you will get a message from HostServ)
  38. /hs on
  39.  
  40.  
  41. Step 3 - Register a channel
  42. =============================
  43. "/cs" is an alias for "/msg ChanServ".
  44.  
  45. Register your channel:
  46. /cs register <channel> <admin password> <description>
  47. Example:
  48. /cs register #dontjoinitsatrap flying4rocket2 A trap channel
  49.  
  50. Set a channel topic:
  51. /topic <channel> <topic text>
  52.  
  53. Enable the flags system (best control about user privileges):
  54. /cs set <channel> accesstype flags
  55.  
  56. Optional commands
  57. -------------------
  58. If you want an additional "Protected" rank:
  59. /cs set <channel> protectmode on
  60.  
  61. If you want an additional "Owner" rank:
  62. /cs set <channel> ownermode on
  63.  
  64.  
  65. Step 4 - Add channel staff
  66. ============================
  67.  
  68. Get a list of all flags:
  69. /cs help flags
  70.  
  71. Add someone as OP:
  72. /cs flags <channel> <nick> +oO
  73.  
  74. Add someone as HOP:
  75. /cs flags <channel> <nick> +hH
  76.  
  77. Add someone as VOICE (with kick abilities):
  78. /cs flags <channel> <nick> +vVru
  79.  
  80.  
  81. Step 5 - Assign a BotServ nick
  82. =================================
  83. "/bs" is an alias for "/msg BotServ".
  84.  
  85. Get the complete list of different bot names:
  86. /bs botlist
  87.  
  88. Assign one to your channel:
  89. /bs assign <channel> <bot name>
  90.  
  91. Hide your rank:
  92. .deop
  93. Or for for someone else:
  94. .deop <nick>
  95.  
  96. Or the inverse:
  97. .op (<nick>)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement