help.txt 82 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887
  1. ::+ban
  2. ### $b+ban$b <hostmask> [channel] [%%<XdXhXm>] [comment]
  3. Adds a ban to the list of bans stored on the bot, with optional comment and
  4. ban time. This ban is stored with your handle as the creator, and will be
  5. in effect for every channel if no channel is specified. Prefixing a comment
  6. with '@' will make it only visible within the bot, and not used as the ban
  7. reason. Ban time has to be expressed in days, hours, and/or minutes.
  8. See also: bans, -ban, stick, unstick
  9. ::+chan
  10. ### $b+chan$b <channel> [options]
  11. Adds a channel to the bot's channel list. If options are specified, the
  12. channel will be configured with the options.
  13. See also: -chan, chanset, chaninfo
  14. ::+chrec
  15. ### $b+chrec$b <handle> [channel]
  16. Adds an empty channel record for the specified user so that channel lastons
  17. and info lines can be saved. No flags are associated with the channel.
  18. See also: -chrec, chattr%{+n}, +chan, -chan%{-}
  19. ::+exempt
  20. ### $b+exempt$b <hostmask> [channel] [%%<XdXhXm>] [comment]
  21. Adds an exempt to the list of exempts stored on the bot, with optional
  22. comment and exempt time. This exempt is stored with your handle as the
  23. creator, and will be in effect for every channel if no channel is specified.
  24. Exempt time has to be expressed in days, hours, and/or minutes.
  25. See also: exempts, -exempt, stick, unstick
  26. ::+host
  27. ### $b+host$b [handle] <hostmask> [anotherhostmask] ...
  28. Adds a hostmask to a user's user record. Hostmasks are used to identify your
  29. handle on IRC. If a handle is not specified, the hostmask will be added to
  30. YOUR user record. List as many hosts as wanted.
  31. See also: -host
  32. ::+ignore
  33. ### $b+ignore$b <hostmask> [%%<XdXhXm>] [comment]
  34. Adds an ignore to the list of ignores stored on the bot, with optional
  35. comment and ignore time. This ignore is stored with your handle as the
  36. creator. Ignore time has to be expressed in days, hours, and/or minutes.
  37. See also: -ignore, ignores
  38. ::+invite
  39. ### $b+invite$b <hostmask> [channel] [%%<XdXhXm>] [comment]
  40. Adds an invite to the list of invites stored on the bot, with optional
  41. comment and invite time. This invite is stored with your handle as the
  42. creator, and will be in effect for every channel if no channel is specified.
  43. Invite time has to be expressed in days, hours, and/or minutes.
  44. See also: invites, -invite, stick, unstick
  45. ::+user
  46. ### $b+user$b <handle> [hostmask] [anotherhostmask] ...
  47. Creates a new user record for the handle given. The new user record will
  48. have no flags, an optional hostmask, and a random pass/secpass.
  49. List as many hosts as needed.
  50. See also: -user, +host, -host%{+ni}, newleaf%{-}
  51. ::-ban
  52. ### $b-ban$b <banmask or number> [channel]
  53. Removes the specified ban from the list of bans stored on the bot. You may
  54. also reference the ban by the number shown by the 'bans' command.
  55. See also: bans, +ban, stick, unstick
  56. :hub:-bot
  57. ### $b-bot$b <bot>
  58. This is exactly the same as $b'%d-user'$b (it removes a user record). It is
  59. included for convenience.
  60. See also: +user, -user%{+n}, newleaf%{-}
  61. ::-chan
  62. ### $b-chan$b <channel>
  63. This removes ALL information about a channel from the bot.
  64. $f*** IMPORTANT ***$f
  65. This erases ALL information about the channel, including channel settings,
  66. bans, exempts, invites, and channel records for users -- $bEVERYTHING$b.
  67. $bDO NOT$b use it to have the bot temporarily leave a channel. This
  68. command is for abandoning a channel (e.g. the channel will have to be
  69. redefined and all user flags for that channel will have to be redone.
  70. If you want to do this try '%dcycle' or '%ddown'
  71. See also: +chan, chanset, chaninfo, cycle, down
  72. ::-chrec
  73. ### $b-chrec$b <handle> [channel]
  74. Removes a channel record for the specified user, including channel lastons,
  75. info lines, and flags.
  76. See also: +chrec, chattr
  77. ::-exempt
  78. Removes the specified exempt from the list of exempts stored on the bot. You
  79. may also reference the exempt by the number shown by the 'exempts' command.
  80. See also: exempts, +exempt, stick, unstick
  81. ::-host
  82. ### $b-host$b <hostmask>
  83. Removes a host from your handle.
  84. %{+m|m}
  85. ### $b-host$b <handle> <hostmask> [anotherhostmask] ...
  86. Removes a hostmask from a user's user record.
  87. %{-}
  88. See also: +host
  89. ::-ignore
  90. ### $b-ignore$b <hostmask/number>
  91. Removes the specified ignore from the list of ignores stored on the bot. You
  92. may also reference the ignore by the number shown by the 'ignores' command.
  93. See also: +ignore, ignores
  94. ::-invite
  95. ### $b-invite$b <hostmask or number>
  96. Removes the specified invite from the list of invites stored on the bot. You
  97. may also reference the invite by the number shown by the 'invites' command.
  98. See also: invites, +invite, stick, unstick
  99. ::-user
  100. ### $b-user$b <handle>
  101. Removes the specified handle's user record.
  102. See also: +user%{+ai}, -bot%{-}%{+nai}, newleaf%{-}
  103. ::about:
  104. ### $babout$b
  105. If you feel you are missing from the list feel free to contact bryan.
  106. :leaf:act
  107. ### $bact$b [channel] <text>
  108. Performs an action on the current console channel (or otherwise
  109. specified channel), as if the bot did it. Just like the /me
  110. command in IRC.
  111. See also: console
  112. ::addline
  113. ### $baddline$b <username>
  114. Shows you a simple line for adding a user to another botnet with the
  115. same hostmasks.
  116. See also: whois
  117. ::addlog
  118. ### $baddlog$b <text>
  119. Adds your comment to the bot's logfile. Bot masters can go back later and
  120. review the log, and will see your comment (with your handle attached). This
  121. is useful for explaining confusing activity.
  122. :leaf:adduser
  123. ### $badduser$b [!]<nickname> [handle]
  124. Creates a new user record for a user on the channel, using their
  125. current hostname. It's similar to a user msg'ing the bot 'hello'
  126. except that no information is sent to that user. If the bot
  127. already knows someone by that nickname, and the user on the channel
  128. doesn't have a bot record, then it does the equivalent of an
  129. 'ident' for that user -- except that, again, no information is
  130. sent to the user telling them that anything was done.
  131. If the user is using a different nickname than the bot normally
  132. knows her by, you can specify her "handle" (the nickname that the
  133. bot remembers).
  134. If you want to add a user using a static hostmask, prefix their nick
  135. with a '!'. i.e. .adduser !Lamer
  136. The user being added is sent a NOTICE with their initial password.
  137. See also: +host, -host%{+m}, +user, -user%{-}
  138. :leaf:authed:
  139. ### $bauthed$b
  140. Displays users who are authed on the bot for chan/msg cmds.
  141. ::away
  142. ### $baway$b [reason]
  143. Marks you as "away" on the party line. Your away message will show up in
  144. the $b'%dwho'$b list, and will be displayed to anyone who tries to send you
  145. a note. Your notes will be stored, and then displayed to you as soon as you
  146. are no longer away. Saying something on the party line will automatically
  147. remove your "away" status, or you can type $b'%dback'$b or $b'%daway'$b by
  148. itself.
  149. See also: back
  150. ::back
  151. ### $bback$b
  152. This marks you as no longer away on the party line.
  153. See also: away
  154. :hub:backup
  155. ### $bbackup$b
  156. This makes the bot write a backup of its entire user list to the disk.
  157. This is useful if you feel the need to backup the userfile and channel
  158. settings.
  159. See also: reload, save
  160. ::bans
  161. ### $bbans$b [[channel/all]/wildcard]
  162. Shows you a list of the global bans active on the current channel, and the
  163. list of channel-specific bans, as well as any bans that are on the channel
  164. but weren't placed by the bot.
  165. Here's a sample entry;
  166. [ 5] *!*habib@*frys.com (perm)
  167. paulie: revolving check policy
  168. Created 15:10
  169. The number (5) can be used to reference the ban if you wish to remove it
  170. (see $b'-ban'$b). Next is the actual hostmask being banned. The "(perm)"
  171. means that the ban is "permanent": that is, it doesn't automatically expire.
  172. If there is an elapsed time showing instead, the time displayed is how long
  173. the ban has been active. These types of bans expire after two hours. The
  174. second line of the ban entry is the comment ("revolving check policy"), and
  175. who set the ban (paulie). The last line shows when the ban was added, and
  176. possibly the last time the ban was activated on the channel (if it's
  177. different from the creation time).
  178. Sometimes there will be a "!" or "*" right before the number. A "!" means
  179. the ban is in the bot's ban list, but is not currently on the channel. A "*"
  180. marks a ban which is NOT in the bot's ban list but IS on the channel.
  181. If you use 'bans' without an argument, it will show you only the bans which
  182. are currently active on the channel. If you use 'bans all', it will show you
  183. every ban in the global ban list and on the channel. If you use 'bans
  184. <wildcard>', it will list all bans (active or not) that match against your
  185. wildcard. Consider it a 'bans all' list matched against your wildcard.
  186. The ban list may change according to which channel you're currently viewing
  187. in the console. Different bans may be active on different channels. If you
  188. specify a channel name, that channel will be used instead of your current
  189. console channel.
  190. See also: -ban, +ban, console%{+m|m}, chanset, chaninfo%{-}, stick, unstick
  191. :hub:bc:
  192. ### $bbc$b <bot> <cmd> [params]
  193. See: botcmd
  194. :hub:boot
  195. ### $bboot$b <handle[@bot]> [reason]
  196. Kicks a user off the party line and displays the reason, if you specify
  197. one. You can also specify a bot, and attempt to boot someone from another
  198. bot on the botnet. You can not boot a bot owner.
  199. :hub:botcmd:
  200. ### $bbotcmd$b <bot> <cmd> [params]
  201. The specified cmd and optional parameters are executed on the specified bot,
  202. all results are displayed back on DCC. For example:
  203. [19:29] #bryan# botcmd wtest whom ...
  204. [19:29] (wtest) #bryan# whom
  205. [wtest] Nick
  206. [wtest] ----------
  207. [wtest] ^bryan
  208. [wtest] ^bryan [idle 1h22m]
  209. [wtest] ^bryan [idle 1h22m]
  210. [wtest] Total users: 3
  211. The bot specified can also have wildcards in it. '*' for 1 or more chars, and
  212. '?' for exactly 1 char. Use this cmd carefuly, and even think about placing
  213. a cmdpass on it.
  214. Just using '?' for 'bot' will choose a random leaf bot.
  215. Just using '&' for 'bot' will do the cmd on all localhub bots. (first bot in config).
  216. This cmd cannot be chained over the botnet, ie, no: .botcmd [bot] botcmd [bot2] ...
  217. See also: bc, cmdpass
  218. ::botjoin
  219. ### $bbotjoin$b <bot> <channel> [options]
  220. Adds a channel to the bot's channel list. If options are specified, the
  221. channel will be configured with the options.
  222. See also: botpart, +chan, -chan, chanset, chaninfo
  223. ::botjump:
  224. ### $bbotjump$b <bot> [server [port [pass]]]
  225. Makes the bot jump to another server. If you don't specify a
  226. server, it will jump to the next server in it's internal list (see
  227. $b'help config'$b). If you specify a server, it will jump to that
  228. server (default port is 6667), and if that server is not in the
  229. internal list already, it will add it (until the bot relinks).
  230. Jumping servers ALWAYS makes the bot lose ops! be careful!
  231. See also: jump, servers, botserver
  232. ::botmsg:
  233. ### $bbotmsg$b <bot> <nickname|#chan> <text>
  234. sends a private message to someone from the bot, just as if the
  235. bot had typed /msg.
  236. See also: msg%{+n}, netmsg%{-}
  237. ::botnick:
  238. ### $bbotnick$b <bot>
  239. The bot will display it's current nick over DCC.
  240. See also: netnick
  241. ::botpart
  242. ### $bbotpart$b <bot> <channel> [options]
  243. Removes bot from the specified channel
  244. See also: botjoin, +chan, -chan, chanset, chaninfo
  245. :hub:bots
  246. ### $bbots$b [nodename]
  247. Shows the list of bots currently on the botnet.
  248. Example:
  249. Bots: cEvin, ruthie, Killa1
  250. There is no indication of which bots are directly connected to this current
  251. bot. %{+n}Use $b'%dwho'$b or $b'%dbottree'$b for that information.%{-}
  252. Specifying a nodename will display all bots up/down on that nodename.
  253. Bots with a * preceeding it's name is down.
  254. See also: downbots%{+n}, bottree%{-}
  255. ::botserver:
  256. ### $bbotserver$b <bot>
  257. The bot will display it's current server and lag over DCC.
  258. See also: netserver, servers%{+n}, config%{-}
  259. :hub:botset:
  260. ### $bbotset$b <bot> [<+/->list] [<var> [data|-]]
  261. Set's a bot specific entry.
  262. <bot> may contain wildcards.
  263. NOTE: 'set' and 'botset' have different entries.
  264. If there is a botset entry for 'name' and a set entry for 'name',
  265. the bot will use the 'botset' entry. Otherwise, the 'set' entry
  266. will be used for all options.
  267. See 'set' for a full help listing.
  268. See also: set
  269. :hub:bottree
  270. ### $bbottree$b
  271. Shows a tree-format diagram of the bots currently on the botnet. It's just a
  272. nice way to get a feel for how the bots are physically connected. If 2 bots
  273. are sharing, a + will be indicated, or a ? if nothing is known.
  274. See also: bots, downbots
  275. ::botversion:
  276. ### $bbotversion$b <bot>
  277. The bot will display it's pack version and uname.
  278. See also: version, netversion, about%{+m|m}, status%{-}
  279. :hub:chaddr
  280. ### $bchaddr$b <bot> <address[:bot port[/user port]]>
  281. Changes the address for a bot. This is the address your bot will try to
  282. connect to when linking. If the bot has a separate port for bots and users,
  283. they should be separated by a slash (/).
  284. %{+a}
  285. It is not recommneded that this is used, you should change your source,
  286. and update all bots instead.
  287. %{-}
  288. See also: link
  289. ::chaninfo:
  290. ### $bchaninfo$b <channel>
  291. This lists all the settings for the bot on the given channel.
  292. It shows any of the following:
  293. $bchanmode$b These modes are enforced on the channel. Both + and -
  294. modes can be enforced.
  295. $bidle-kick$b Kick idle users that are not +f or above on the channel
  296. after how many minutes (set this to 0 to disable).
  297. %{+m|m}
  298. $blimit$b If this is set, the +l bot will raise the limit
  299. to the users in the channel + this ammount. Set to
  300. 0 to disable.
  301. $bstopnethack-mode$b This setting will make the bot de-op anyone who
  302. enters the channel with serverops. There are seven
  303. different modes for this settings:
  304. 0 turn off
  305. 1 isoptest (allow serverop if registered op)
  306. 2 wasoptest (allow serverop if user had op before
  307. split)
  308. 3 allow serverop if isop or wasop
  309. 4 allow serverop if isop and wasop
  310. 5 If the channel is -bitch, see stopnethack-mode 3
  311. If the channel is +bitch, see stopnethack-mode 1
  312. 6 If the channel is -bitch, see stopnethack-mode 2
  313. If the channel is +bitch, see stopnethack-mode 4
  314. $brevenge-mode$b This settings defines how the bot should punish
  315. bad users when revenging. There are four possible
  316. settings:
  317. 0 Deop the user.
  318. 1 Deop the user and give them the +d flag for the
  319. channel.
  320. 2 Deop the user, give them the +d flag for the
  321. channel, and kick them.
  322. 3 Deop the user, give them the +d flag for the
  323. channel, kick, and ban them.
  324. $bclosed-ban$b Set this to 1 to ban users who join +closed
  325. channels. This is probably not needed though, as
  326. +closed maintains +i.
  327. $bclosed-invite$b If a channel is set +closed and this is set
  328. force the channel to always be +i, otherwise don't.
  329. $bclosed-private$b If a channel is set +closed, the bots will
  330. enforce +p as well. The point is to notice the chan
  331. and bots when an /invite is done. This is useful in
  332. seeing when a shell is hijacked ;)
  333. $bban-time$b Set here how long temporary bans will last (in
  334. minutes). If you set this setting to 0, the bot will
  335. never remove them. (This also requires +dynamicbans)
  336. $bexempt-time$b Set here how long temporary exempts will last (in
  337. minutes). If you set this setting to 0, the bot will
  338. never remove them. The bot will check the exempts
  339. every X minutes, but will not remove the exempt if a
  340. ban is set on the channel that matches that exempt.
  341. Once the ban is removed, then the exempt will be
  342. removed the next time the bot checks. Please note
  343. that this is an IRCnet feature.
  344. $binvite-time$b Set here how long temporary invites will last (in
  345. minutes). If you set this setting to 0, the bot will
  346. never remove them. The bot will check the invites
  347. every X minutes, but will not remove the invite if a
  348. channel is set to +i. Once the channel is -i then the
  349. invite will be removed the next time the bot checks.
  350. Please note that this is an IRCnet feature.
  351. $bvoice-non-ident$b If channel is +voice, clients without an ident will
  352. be voiced. Set to 0 to not voice clients without ident.
  353. The following options chose how to respond to specific events.
  354. Each can be set as any of the specified options.
  355. ignore/0 Ignore
  356. deop/1 Deop (chattr +d)
  357. kick/2 Kick (chattr +k)
  358. delete/remove/3 Remove user
  359. $bbad-cookie$b Missing or invalid cookie in bot op line.
  360. $bmanop$b Users who op manually in a -manop chan.
  361. $bmdop$b Users who mass deop.
  362. $bmop$b Users who mass op in a -mop chan.
  363. The following can be set + or - (e.g. .chanset #channel -enforcebans)
  364. $bautoop$b Bots that are +y will auto-op all users with
  365. op access to the channel.
  366. $bbitch$b Only let users with the +o flag have op on the
  367. channel?
  368. $bbotbitch$b Only let $bbots$b with the +o flag have op on the
  369. channel?
  370. $bclosed$b Kick all people who join channel unless they have
  371. op access for the channel.
  372. $bcycle$b Bot will attempt to cycle the channel when opless
  373. or during splits to gain ops.
  374. $benforcebans$b When a ban is set, kick people who are on the channel
  375. and match the ban?
  376. $bfastop$b Setting this will disable cookie-ops. You may
  377. know cookie-ops as an annoying way of bots opping
  378. themselves with +o-b bot *!*@fjdifgjdsgiufufdhgfudghfdgfdg,
  379. but, with -fastop (cookie-ops enabled), opping is much
  380. more secure and the chances of someone hijacking the bot
  381. for ops in your channel are much much less. This is
  382. highly recommened to always be set.
  383. See '%dconfig bad-cookie' for punishment options.
  384. $binactive$b This prevents the bot from joining the channel (or
  385. makes it leave the channel if it is already there). It
  386. can be useful to make the bot leave a channel without
  387. losing its settings, channel-specific user flags,
  388. channel bans, and without affecting sharing.
  389. $bmanop$b With this set, users will be able to op anyone
  390. in the channel manually (as opposed to through the bot.)
  391. With this unset, users are forced to op through the bot.
  392. See '%dconfig manop' for punishment options.
  393. $bnodesynch$b Allow non-ops to perform channel modes? This can stop
  394. the bot from fighting with services such as ChanServ, or
  395. from kicking IRCops when setting channel modes without
  396. having ops.
  397. $bnomop$b Users will not be allowed to set more than 3 +o
  398. modes at any given time.
  399. See '%dconfig mop' for punishment options.
  400. $bprivate$b This by far is probably the single most unique and
  401. important feature of this pack. With this set, users with
  402. global +o will not implicitly have access to the channel.
  403. They will need to have channel |o flag to have access.
  404. Users with global +n override this as they should have
  405. control over the entire botnet and where it goes.
  406. Users who lose access to a channel because of this setting
  407. will see no reference to it over the botnet in any place.
  408. $bprotectops$b Re-op a user with the +o flag if they get deopped?
  409. DON'T USE THIS.
  410. $brevenge$b Remember people who deop/kick/ban the bot, valid ops,
  411. or friends and punish them?
  412. $brevengebot$b This is similar to to the 'revenge' option, but it
  413. only triggers if a bot gets deopped, kicked or banned.
  414. $btake$b Once a bot is opped, it will mass op all other bots
  415. in the channel. After that, they will all attempt to
  416. mass deop in hopes 'taking' the channel. :)
  417. $bvoice$b This feature is somewhat experimental. With it set
  418. the +y bot will voice ALL people who join the channel
  419. unless they are +q globally or +q for the channel.
  420. If a botnet master devoices them, they will remain
  421. devoiced no matter who voices them.
  422. $bdynamicbans$b Only activate bans on the channel when necessary?
  423. This keeps the channel's ban list from getting
  424. excessively long. The bot still remembers every ban,
  425. but it only activates a ban on the channel when it sees
  426. someone join who matches that ban.
  427. $buserbans$b Allow bans to be made by users directly? If turned
  428. off, the bot will require all bans to be made through
  429. the bot's console.
  430. $bdynamicexempts$b Only activate exempts on the channel when
  431. necessary? This keeps the channel's exempt list from
  432. getting excessively long. The bot still remembers every
  433. exempt, but it only activates a exempt on the channel
  434. when it sees a ban set that matches the exempt. The
  435. exempt remains active on the channel for as long as the
  436. ban is still active.
  437. $buserexempts$b Allow exempts to be made by users directly? If
  438. turned off, the bot will require all exempts to be made
  439. through the bot's console.
  440. $bdynamicinvites$b Only activate invites on the channel when necessary?
  441. This keeps the channel's invite list from getting
  442. excessively long. The bot still remembers every invite,
  443. but the invites are only activated when the channel is
  444. set to invite only and a user joins after requesting an
  445. invite. Once set, the invite remains until the channel
  446. goes to -i.
  447. $buserinvites$b Allow invites to be made by users directly? If turned
  448. off, the bot will require all invites to be made through
  449. the bot's console.
  450. The following are flood settings, they are set via "%dchanset <channel>
  451. flood-type number:seconds", where number and second are integers
  452. indicating the number of times in how many seconds the flood will be
  453. triggered. Setting one of these to 0:0, 0:1, or 1:0 will deactivate the
  454. respective flood setting.
  455. $bflood-chan$b Set here how many channel messages in how many seconds
  456. from one host constitutes a flood. Setting this to 0 or 0:0
  457. disables text flood protection for the channel.
  458. $bflood-ctcp$b Set here how many channel ctcps in how many seconds from
  459. one host constitutes a flood. Setting this to 0 or 0:0
  460. disables ctcp flood protection for the channel.
  461. $bflood-join$b Set here how many joins in how many seconds from one
  462. host constitutes a flood. Setting this to 0 or 0:0 disables
  463. join flood protection for the channel.
  464. $bflood-kick$b Set here how many kicks in how many seconds from one
  465. host constitutes a flood. Setting this to 0 or 0:0 disables
  466. kick flood protection for the channel.
  467. $bflood-deop$b Set here how many deops in how many seconds from one
  468. host constitutes a flood. Setting this to 0 or 0:0 disables
  469. deop flood protection for the channel.
  470. $bflood-nick$b Set here how many nick changes in how many seconds from
  471. one host constitutes a flood. Setting this to 0 or 0:0
  472. disables nick flood protection for the channel.
  473. These can all be changed simultaneously with $bflood-*$b
  474. See also: %{-}%{+n}+chan, -chan%{-}%{+m|m}, chanset%{-}
  475. :leaf:channel
  476. ### $bchannel$b [channel-name]
  477. Shows you an extensive display of the users on a channel, and
  478. the current channel attributes. By default, it shows you the
  479. channel you are currently viewing on the console, but you can
  480. specify another channel if you wish.
  481. The first line will look like:
  482. Channel #hiya, 8 members, 45 users, mode +tn:
  483. This means that the bot is sitting on channel #hiya, where 8
  484. other irc'ers are. There are 45 people that the bot knows by
  485. hostmask, and the channel mode is +tn. If the bot isn't on
  486. the channel it is supposed to be on, it will say "Desiring
  487. channel #hiya" instead. Next is a list of the users on the
  488. channel, with each entry looking like this:
  489. NICKNAME HANDLE JOIN HOPS IDLE USER@HOST
  490. @kantSF kantSF 14:53 o 2 6m josh@random.edu
  491. The "@kantSF" means that the user's nickname is kantSF and that
  492. he is a chanop. The second "kantSF" is the nickname that the
  493. bot knows him by. Sometimes this will differ from the nickname
  494. a person is using. The time displayed is the time the user
  495. joined the channel. The next field is the attributes:
  496. n - bot owner o - can get ops (+o)
  497. m - bot master or owner f - channel friend
  498. b - another bot d - cannot get ops (+d)
  499. The last field is the user@host he is using irc from.
  500. See also: status, whois
  501. ::channels:
  502. ### $bchannels$b %{+m}[user]%{-}
  503. Displays channels that you have access to, and any important
  504. flags that are set on them.
  505. %{+m}
  506. Masters: You can specify other users to see what channels their
  507. flags grant them access to.%{-}
  508. See also: whois%{+m}, chattr, chaninfo%{-}
  509. ::chanset
  510. ### $bchanset$b <channel> <settings>
  511. Allows you to change the channel settings (see $b'chaninfo'$b for the
  512. settings) for one specific channel or all channels. Use '*' to to apply the
  513. change to all channels.
  514. Changes are used until the next restart, and are saved
  515. whenever the userfile is saved.
  516. See also: %{+n}+chan, -chan%{-}, chaninfo
  517. ::chat
  518. ### $bchat$b <on/off>
  519. ### $bchat$b <[*]channel number/name>
  520. Changes your current channel on the partyline. When you first connect to
  521. the partyline, it places you on channel 0 (the main party line).
  522. Some channels may have assigned names if the assoc module is loaded. For
  523. these, you can specify the channel by name instead of channel number if
  524. you wish.
  525. $b'%dchat off'$b removes you from all channels, including the main party line.
  526. You can still use bot commands and see the console, but you can't talk to
  527. anyone except via $b'%dnote'$b. $b'%dchat on'$b returns you to the main party
  528. line (channel 0) if you were elsewhere.
  529. If you prefix the channel with a '*', you will join a local channel.
  530. See also: console
  531. ::chattr
  532. ### $bchattr$b <handle> [flags] [channel]
  533. This lets you view and change the flags for a user.
  534. For example, to give Lamer the p and f flags:
  535. .chattr Lamer +pf
  536. To remove Denali from the global op list:
  537. .chattr Denali -o
  538. You may also do any combination of the above:
  539. .chattr Fred1 -m+xj-o
  540. You can also change the flags for Usagi on a specific channel by supplying
  541. the channel after the attributes:
  542. .chattr Usagi -m+dk-o #blah
  543. Changing global and channel specific flags within the same command line is
  544. also possible (global +f, +o #lamer):
  545. .chattr Bill f|o #lamer
  546. Whether or not you change any flags, it will show you the user's attributes
  547. afterwards. To get a list of all possible flags, see $b'%dhelp whois'$b.
  548. $bNOTES:$b Only the owner may add or remove the 'a' (admin) or 'n' (owner) flags.
  549. It is pointless to -a a permanent owner.
  550. You must remove the permanent owner in the binary.
  551. See also: whois
  552. :hub:chhandle
  553. ### $bchhandle$b <oldhandle> <newhandle>
  554. Changes the handle of a user. For example, to change the handle of user
  555. 'gavroche' to 'jamie', you would use 'chhandle gavroche jamie'.
  556. See also: chpass%{+n}, chsecpass%{-}
  557. ::chinfo
  558. ### $bchinfo$b <user> [channel] [info-line/none]
  559. Sets the information line for a user. This line is shown via the /msg
  560. commands $b'who'$b and $b'whois'$b. If you have set greet on, it is also
  561. shown when the user joins the channel. If the info line begins with an '@',
  562. then it is "locked", and that user may no longer change it. If the channel
  563. name is omitted, the default info line is changed. If you specify 'none'
  564. as the info-line, it will be erased.
  565. See also: info
  566. :hub:chnick
  567. See: chhandle
  568. :hub:chpass
  569. ### $bchpass$b <handle> [newpassword|rand]
  570. Changes a user's password. If you do not specify the new password, the user
  571. effectively no longer has a password set. A password is needed to get ops,
  572. join the party line, etc. If the newpassword is 'rand', a random password
  573. will be used.
  574. See also: chhandle%{+n}, chsecpass%{-}
  575. :hub:chsecpass:
  576. ### $bchsecpass$b <handle> [newpassword|rand]
  577. Changes a user's secpass. If you do not specify the new password, the user
  578. effectively no longer has a password set. A secpass is needed to auth and
  579. login via DCC chat. If the newpassword is 'rand', a random password
  580. will be used.
  581. See also: chhandle, chpass
  582. :leaf:clearqueue
  583. ### $bclearqueue$b <queue>
  584. removes all msgs from the specified queue (mode/server/help/all)
  585. :hub:cmdpass:
  586. ### $bcmdpass$b <command> <pass> [newpassword]
  587. Places the specified pass on the cmd so that the cmd will need to be
  588. followed by the specified pass whenever it is called. For example:
  589. !cmdpass whoami BLAH
  590. [19:32] #bryan# cmdpass whoami ...
  591. Set command password for whoami to 'BLAH'
  592. !whoami
  593. Invalid command password. Use !command password arguments
  594. [19:33] bryan attempted !whoami with missing or incorrect command password
  595. !whoami BLAH
  596. You are bryan@hub.
  597. [19:33] #bryan# whoami
  598. To remove a cmdpass for a cmd, specify the old pass and do not specify a new pass
  599. ** Only permanent owners specified in the binary COMPILE config file **
  600. ** can use this cmd. **
  601. ::color:
  602. ### $bcolor$b <on/off>
  603. Enables or disables misc coloring over DCC. mIRC or ANSI method is
  604. chosen automatically.
  605. See also: console, echo, login, page, strip
  606. ::comment
  607. ### $bcomment$b <user> <comment>
  608. Creates or changes the comment field for a user. The comment field can only
  609. be seen via 'whois' or 'match'. Non-masters cannot see the comment field.
  610. Using the comment 'none' will clear a user's comment.
  611. ::conf:
  612. ### $bconf$b <add|del|change|disable|enable|list|set> [options]
  613. This command is used to modify the bot's local shell config. Only
  614. the first bot listed will be able to perform this command. Using the cmd
  615. on a non-'localhub' will result in an error similar to:
  616. [16:42] #bryan# botcmd wtest2 conf ...
  617. [wtest2] Please use 'wtest' for this login/shell.
  618. Simply use the command on the bot specified.
  619. 'add' uses the same syntax as the conf file:
  620. add <bot> [<ip|.> <[+]host|.> [ipv6-ip]]
  621. ip/host/ipv6-ip are all optional and/or can be replaced with '.'
  622. Newly added bots will start immediately, don't forget to 'newleaf'.
  623. 'del' syntax is:
  624. del <bot>
  625. Deleted bots that are running will be killed.
  626. 'change' syntax is the same as 'add'
  627. 'disable' syntax is:
  628. disable <bot>
  629. The bot will be killed, but not removed from userlist. It will not start again
  630. until you use 'enable' oni t.
  631. 'enable' syntax is:
  632. enable <bot>
  633. The bot is enabled. (Only relevant for disabled bots designated via a prefix of '/')
  634. 'list' shows all the bots currently in the config.
  635. 'set' allows changing some variables in the config.
  636. Using with no parameters will show all changable options.
  637. Simply specifiy the option and new setting as follows:
  638. set <what> [option]
  639. WARNING: Options changed MAY OR MAY not affect bots already running,
  640. it is a good idea to restart all bots on the shell
  641. if you change any of the following:
  642. $bhomedir$b, $bbinpath$b, $bbinname$b, $bportmin$b, $bportmax$b, $bpscloak$b
  643. See also: newleaf
  644. ::console:
  645. ### $bconsole$b [channel] [modes]
  646. Changes your console level so that you will see only the types of console
  647. messages that you want to. Your current console channel is the channel (that
  648. the bot is on) from which you can view from the party line, and which
  649. channel-specific commands (like 'say' and 'op') take affect on.
  650. Valid flags are:
  651. $bj$b joins, parts, quits, and netsplits on the channel
  652. $bk$b kicks, bans, and mode changes on the channel
  653. $bm$b private msgs, notices and ctcps to the bot
  654. $bp$b public text on the channel
  655. $bs$b server connects, disconnects, and notices
  656. %{+m}
  657. Masters only:
  658. $bb$b information about bot linking and userfile sharing
  659. $bd$b misc debug information
  660. $bc$b commands
  661. $bo$b misc info, etc (IMPORTANT STUFF)
  662. $bw$b wallops
  663. %{-}
  664. %{+n}
  665. Owners only (these have to be enabled in the config file via "set raw-log"):
  666. $be$b errors
  667. $bg$b (getin) botnet op/invite/key requests
  668. $bh$b raw share traffic
  669. $br$b raw incoming server traffic
  670. $bt$b raw botnet traffic
  671. $bu$b warnings
  672. $bv$b raw outgoing server traffic
  673. %{-}
  674. %{+o|o}
  675. The mode can also be a modifier like '+p' or '-jk' or '+mp-b'. If you omit
  676. the channel and modes, your current console channel and flags will be shown.
  677. %{-}
  678. %{+m|m}
  679. ### $bconsole$b <user> [channel] [modes]
  680. This is used to set the console level of another user. This can even be used
  681. on users who normally would not be able to set their own console mode.%{-}
  682. See also: color, echo, login, page, strip
  683. ::crontab:
  684. ### $bcrontab$b <status|delete|show|new> [interval]
  685. This command is used to manipulate the crontab entries for the user
  686. that the bot is running on.
  687. 'status' will display the status of the crontab entry for the bot,
  688. for example:
  689. [18:59] #bryan# crontab status
  690. Crontabbed
  691. 'show' will display the current crontab entries, for example:
  692. [18:59] #bryan# crontab show
  693. Showing current crontab:
  694. Result:
  695. 3,8,13,18,23,28,33,38,43,48,53,58 * * * * /usr/home/bryan/hub/hub > /dev/null 2>&1
  696. 1,6,11,16,21,26,31,36,41,46,51,56 * * * * /usr/home/bryan/hub/newhub > /dev/null 2>&1
  697. 'delete' will remove the bot's own crontab entry from the crontab list.
  698. 'new' will make the bot add it's self to the crontab list, although this is done
  699. automatically on startup.
  700. ::cycle:
  701. ### $bcycle$b <channel> [delay]
  702. If done on the hub, makes all linked bots cycle the specified channel.
  703. Otherwise, only the bot it's done on will cycle.
  704. Delay defaults to 10 seconds, which means bots will part and not rejoin
  705. until that time has passed.
  706. See also: down
  707. ::date
  708. ### $bdate$b
  709. Displays the time/date in local and GMT. Also displays which time zone
  710. is being used by the bot for internal logging.
  711. :hub:dccstat
  712. ### $bdccstat$b
  713. Displays a table-format list of all "dcc" connections in use on the bot.
  714. Dcc stands for "Direct Client-to-client Communication", and Eggdrop expands
  715. this to cover every open socket. Any type of network connection to the bot
  716. is considered a "dcc" connection.
  717. The headings of the table are:
  718. $bSOCK$b the socket number of this connection (always unique)
  719. $bADDR$b the ip address mask of the host the bot is connected to, if
  720. applicable
  721. $bPORT$b the port number being used for this connection
  722. $bNICK$b the handle of the user or bot, if applicable
  723. $bHOST$b the hostname corresponding to the IP address, if available
  724. $bTYPE$b the type of dcc connection (see below)
  725. The types of connections currently possible are as follows (but more are
  726. being added all the time):
  727. $bCHAT$b dcc-chat partyline user
  728. $bPASS$b user entering dcc chat (being asked for password)
  729. $bSEND$b user sending a file
  730. $bGET$b sending a file to a user
  731. $bGETP$b pending get (waiting for the user to acknowledge)
  732. $bLSTN$b telnet listening port (in place of a hostname, it will show the
  733. callback procedure name, or a mask of acceptable handles)
  734. $bT-IN$b incoming telnet user (being asked for handle)
  735. $bFILE$b user in dcc-chat file area
  736. $bBOT$b connected bot (botnet connection)
  737. $bBOT*$b pending bot link (waiting for acknowledgement)
  738. $bRELA$b user in relay connection to another bot
  739. $b>RLY$b bot being relay'd to (one for each "RELA")
  740. $bCONN$b pending telnet connection (chat, relay, bot-link, etc)
  741. $bNEW$b new user via telnet (entering a handle)
  742. $bNEWP$b new user via telnet (entering a password)
  743. In addition, 'CHAT' and 'BOT' have flags listed for each connection. Capital
  744. letters mean that the flag is on, and lowercase letters mean that the flag
  745. is off. The flags for 'CHAT' are:
  746. $bC$b in file area, but allowed to return to party line
  747. $bK$b color is on
  748. $bP$b party line access only
  749. $bT$b telnet connection (instead of dcc chat)
  750. $bE$b echo is on
  751. $bP$b paging is on
  752. $b6$b socket is ipv6
  753. The flags for 'BOT' are:
  754. $bP$b ping sent, waiting for reply
  755. $bU$b user-file sharing is active
  756. $bC$b local bot initiated the connection
  757. $bO$b user-file offered, waiting for reply
  758. $bS$b in the process of sending the user-file
  759. $bG$b in the process of getting the user-file
  760. $bW$b warned this bot to stop hubbing
  761. $bL$b leaf-only bot (not allowed to be a hub)
  762. $bI$b bot is currently in the 'linking' stage
  763. $bA$b bot is being aggressively shared with
  764. For 'CHAT' users, the party-line channel is also listed.
  765. ::debug
  766. ### $bdebug$b
  767. Display a dump of memory allocation information, assuming the bot was
  768. compiled with memory debugging. It's useless to anyone but developers
  769. trying to find memory leaks.
  770. ::decrypt
  771. ### $bdecrypt$b <key> <string>
  772. Decrypts the string using the specified key.
  773. See also: encrypt, randstring, md5, sha1
  774. :leaf:deluser
  775. ### $bdeluser$b <nickname>
  776. deletes a user record for a user on the channel, using their
  777. current hostname. Channel masters can remove users so long as
  778. the user isn't a bot master.
  779. Channel masters may only delete users which they added.
  780. see also: adduser%{+m}, +user, -user%{-}
  781. :leaf:deop
  782. ### $bdeop$b <nickname> [channel|*]
  783. will remove chanop from the person you specify, so long as the
  784. bot is opped on that channel, and the person you specify isn't
  785. on the bot's list of authorized chanops. Specify * for all
  786. channels.
  787. See also: op, console
  788. :leaf:devoice
  789. ### $bdevoice$b <nickname> [channel|*]
  790. will remove the +v voice from the person you specify, so long as
  791. the bot is opped on that channel. Specify * for all channels.
  792. ::die
  793. ### $bdie$b [reason]
  794. This kills the bot. The bot goes offline immediately, logging who issued
  795. the 'die' command. You shouldn't have to use this too often. If you specify
  796. a reason, it is logged, otherwise the reason is "authorized by <handle>".
  797. See also: suicide, conf
  798. ::dns
  799. ### $bdns$b <hostname/ip/flush>
  800. Resolves the given hostname/ip
  801. If "flush" is the specified hostname, the cache will be flushed.
  802. ::down:
  803. ### $bdown$b <channel>
  804. All linked bots will deop themselves in the specified channel. They
  805. will not reop for 10 seconds.
  806. See also: cycle
  807. :hub:downbots
  808. ### $bdownbots$b
  809. Shows the list of bots that are NOT currently linked to the botnet.
  810. Example:
  811. Down bots: cEvin, ruthie, Killa1
  812. See also: bots
  813. :leaf:dump
  814. ### $bdump$b <text>
  815. dumps the text to the server. keep in mind that this bot doesn't
  816. run through ircII, so ircII commands will most likely not work this
  817. way. they need to be raw irc codes. read rfc1459 from ftp.internic.net
  818. for more help.
  819. '$n' is replaced with the bot's irc nickname.
  820. ::echo
  821. ### $becho$b <on/off>
  822. Specifies whether you want your messages echoed back to you. If it's on,
  823. then when you say something on the party line, it will be displayed to you
  824. just like everyone else will see it. If it's off, then it won't happen.
  825. See also: color, console, login, page, strip
  826. ::encrypt
  827. ### $bencrypt$b <key> <string>
  828. Encrypts the string using the specified key.
  829. See also: decrypt, randstring, md5, sha1
  830. ::exec:
  831. ### $bexec$b <params>
  832. The bot will execute the specified program with each param specified,
  833. and display the results over DCC.
  834. ::exempts
  835. ### $bexempts$b [[channel/all]/wildcard]
  836. Shows you a list of the global exempts active on the current channel, and
  837. the list of channel-specific exempts, as well as any exempts that are on the
  838. channel but weren't placed by the bot.
  839. Here's a sample entry;
  840. ! [ 3] *!test@test.com (perm)
  841. Wcc: requested
  842. Created 01:15
  843. The number (3) can be used to reference the exempt if you wish to remove it
  844. (see $b'-exempt'$b). Next is the actual hostmask being exempted. The "(perm)"
  845. means that the exempt is "permanent": that is, it doesn't automatically
  846. expire. If there is an elapsed time showing instead, the time displayed is
  847. how long the exempt has been active. These types of exempts expire after one
  848. hour. The second line of the exempt entry is the comment ("requested"), and
  849. who set the exempt (Wcc). The last line shows when the exempt was added, and
  850. possibly the last time the exempt was activated on the channel (if it's
  851. different from the creation time).
  852. Sometimes there will be a "!" or "*" right before the number. A "!" means
  853. the exempt is in the bot's exempt list, but is not currently on the channel.
  854. A "*" marks an exempt which is NOT in the bot's exempt list but IS on the
  855. channel.
  856. If you use 'exempts' without an argument, it will show you only the exempts
  857. which are currently active on the channel. If you use 'exempts all', it will
  858. show you every exempt in the global exempt list and on the channel. If you
  859. use 'exempts <wildcard>', it will list all exempts (active or not) that
  860. match against your wildcard. Consider it a 'exempts all' list matched
  861. against your wildcard.
  862. The exempt list may change according to which channel you're currently
  863. viewing in the console. Different exempts may be active on different
  864. channels. If you specify a channel name, that channel will be used instead
  865. of your current console channel.
  866. See also: -exempt, +exempt, console%{+m|m}, chanset, chaninfo%{-}, stick, unstick
  867. :leaf:find:
  868. ### $bfind$b <nick!ident@host.com>|<user>
  869. The bot will search through all of it's channel records and look
  870. for the specified hostmask. Wildcards are accepted; '*' for 1 or more
  871. characters, or '?' for exactly 1 character.
  872. If a username is specified, then the user is searched for in all the channel
  873. lists.
  874. ::fixcodes
  875. ### $bfixcodes$b
  876. This is for use in situations where the bot gets mixed up about the type
  877. of connection you have with it. For example, you /CTCP CHAT the bot and
  878. it thinks you are connecting via telnet, and you see text displayed as
  879. "Local time is now 17:17" for example instead of "Local time is
  880. now 17:17". Use this to turn telnet codes on or off/change the display
  881. mode.
  882. ::fwd
  883. ### $bfwd$b <handle> [desto]
  884. This allows you to set a note forwarding address for a user,
  885. this means if a note needs to be stored for the user, the
  886. bot will attempt to pass it on to the given user@bot, if
  887. the bot is not online then the note is still stored locally,
  888. if the other user doesn't exist, the note is lost. Boohoo.
  889. :leaf:getkey:
  890. ### $bgetkey$b [channel]
  891. If there is a key set for channel, it is displayed. If channel is not
  892. specified, your console channel is used.
  893. See also: console, channels%{+m}, status%{-}
  894. ::handle
  895. ### $bhandle$b <new-handle>
  896. Changes your handle on the bot. This is the handle (nickname) that the
  897. bot will know you as from this point forward. It is used to log into the
  898. bot.
  899. See also: newpass%{+mi}, chhand, chpass%{-}%{+n}, chsecpass%{-}
  900. ::help:
  901. ### $bhelp$b [cmd]
  902. Alone, will show all cmds that match your flags. With a cmd it will show
  903. the help entry, such as you see here. Specifying a wildcard will display
  904. a list of cmds (matching your flags) that match that wildcard. Use '*'
  905. to match 1 or more characters, and '?' to match exactly one character.
  906. :hub:hublevel:
  907. ### $bhublevel$b <hub-bot> <level>
  908. Sets the hublevel for the specified hub. This command is not recommended
  909. for use by anyone. Instead you should change your COMPILE config file
  910. and update your net with new binaries.
  911. See also: uplink, chaddr
  912. ::ignores
  913. ### $bignores$b [wildcard]
  914. Shows a list of hostmasks from which the bot is currently ignoring msgs,
  915. notices, etc. There are two types of ignores: permanent and temporary.
  916. Permanent ignores never automatically expire. You must use $b'%d-ignore'$b
  917. to remove them.
  918. Here is a sample permanent ignore:
  919. [ 1] *!*@217.156.44.184 (perm)
  920. Wcc: go away
  921. Started 523 days ago
  922. The number (1) can be used to reference the ignore if you wish to remove it
  923. (see $b'%dhelp -ignore'$b). Next is the actual hostmask being ignored. The
  924. "(perm)" means that the ignore is "permanent": that is, it doesn't
  925. automatically expire. The second line of the ignore entry is the comment
  926. ("go away"), and who set the ban (Wcc). The last line shows when the ignore
  927. was added.
  928. Here is a sample temporary ignore:
  929. [ 10] blah!blah@blah.cc (expires in 1 day)
  930. Wcc: requested
  931. Started 18:02
  932. Here, you see the "perm" in the parentheses next to the hostmask is instead
  933. an expire time. This means that the ignore will expire automatically in one
  934. day.
  935. If you use $b'%dignores <wildcard>'$b, it will list all the ignores
  936. that match against your wildcard.
  937. See also: +ignore, -ignore
  938. ::info
  939. ### $binfo$b [channel] [info-line]
  940. Sets your info line. This line is shown via the /msg commands $b'who'$b and
  941. $b'whois'$b. If you have set greet on, it is also shown when you join the
  942. channel. If the info line begins with an '@', then it is "locked", and you
  943. may no longer change it.
  944. %{+m|m}See also: chinfo%{-}
  945. :leaf:invite
  946. ### $binvite$b <nickname> [channel|*]
  947. invites someone from irc into your current console channel (or
  948. specified other channel). This is most useful when the channel
  949. is +i. a user with the +o flag can also request an invite from
  950. the bot with /MSG INVITE. Specify * for all channels.
  951. See also: console, iop
  952. ::invites
  953. ### $binvites$b [[channel/all]/wildcard]
  954. Shows you a list of the global invites active on the current channel, and
  955. the list of channel-specific invites, as well as any invites that are on the
  956. channel but weren't placed by the bot.
  957. Here's a sample entry;
  958. ! [ 3] *!test@test.com (perm)
  959. Wcc: requested
  960. Created 01:15
  961. The number (3) can be used to reference the invite if you wish to remove it
  962. (see $b'-invite'$b). Next is the actual hostmask being invited. The "(perm)"
  963. means that the invite is "permanent": that is, it doesn't automatically
  964. expire. If there is an elapsed time showing instead, the time displayed is
  965. how long the invite has been active. These types of invites expire after one
  966. hour. The second line of the invite entry is the comment ("requested"), and
  967. who set the invite (Wcc). The last line shows when the invite was added, and
  968. possibly the last time the invite was activated on the channel (if it's
  969. different from the creation time).
  970. Sometimes there will be a "!" or "*" right before the number. A "!" means
  971. the invite is in the bot's invite list, but is not currently on the channel.
  972. A "*" marks an invite which is NOT in the bot's invite list but IS on the
  973. channel.
  974. If you use 'invites' without an argument, it will show you only the invites
  975. which are currently active on the channel. If you use 'invites all', it will
  976. show you every invite in the global invite list and on the channel. If you
  977. use 'invites <wildcard>', it will list all invites (active or not) that
  978. match against your wildcard. Consider it a 'invites all' list matched
  979. against your wildcard.
  980. The invite list may change according to which channel you're currently
  981. viewing in the console. Different invites may be active on different
  982. channels. If you specify a channel name, that channel will be used instead
  983. of your current console channel.
  984. See also: -invite, +invite, console%{+m|m}, chanset, chaninfo%{-}, stick, unstick
  985. :leaf:iop
  986. ### $biop$b <nickname> [channel|*]
  987. same as normal invite, except auto-ops them when they join.
  988. See also: console, invite
  989. :leaf:jump
  990. ### $bjump$b [server [port [pass]]]
  991. Makes the bot jump to another server. If you don't specify a
  992. server, it will jump to the next server in it'ss internal list (see
  993. $b'help config'$b). If you specify a server, it will jump to that
  994. server (default port is 6667), and if that server is not in the
  995. internal list already, it will add it (until the bot relinks).
  996. Jumping servers ALWAYS makes the bot lose ops! be careful!
  997. See also: botjump, servers, botserver
  998. :leaf:kick
  999. ### $bkick$b [channel|*] <nickname> [reason]
  1000. Will kick a user off your current console channel (or specified
  1001. other channel) with the comment given. if you omit the reason,
  1002. the default kick comment is "requested". Specify * for all
  1003. channels.
  1004. See also: kickban, console
  1005. :leaf:kickban
  1006. ### $bkickban$b [channel|*] [-|@]<nickname> [comment]
  1007. kicks a user off the channel and bans her by a reasonable host-
  1008. mask. your nickname will be attached to the ban in the bot's
  1009. internal ban list, and the ban will last for whatever is set in
  1010. ban-time -- only on this channel. use $b'%d+ban'$b for a more
  1011. permanent ban which will be activated on every channel the bot
  1012. monitors. if you use a comment, that will also be attached to
  1013. the ban in the ban list, and used as the kick comment. Specify
  1014. * for all channels.
  1015. appending a prefix of ! or @ to a nickname changes the ban
  1016. mask used:
  1017. e.g. with a host of nick!ident@host.name.domain
  1018. command banmask
  1019. .kickban nick *!*dent@*.name.domain
  1020. .kickban -nick *!*dent@host.name.domain
  1021. .kickban @nick *!*@host.name.domain
  1022. with a host of nick!~ident@host.name.domain (strict-host set to 1)
  1023. command banmask
  1024. .kickban nick *!*ident@*.name.domain
  1025. .kickban -nick *!*ident@host.name.domain
  1026. See also: +ban, bans, stick
  1027. :hub:lagged:
  1028. ### $blagged$b
  1029. Displays the bot's internal ping list of bots linked to it.
  1030. If a pingtime goes over 30 seconds, it is delinked for
  1031. ping timeout.
  1032. See also: netlag
  1033. ::last:
  1034. ### $blast$b
  1035. Displays the 'last' output from the shell the bot is running on,
  1036. for the user it is running as.
  1037. %{+i}See also: netlast%{-}
  1038. :hub:link
  1039. ### $blink$b [via-bot] <bot-to-link>
  1040. Attempts to link to another hub. This command is deprecated and not
  1041. recommended for use.
  1042. See also: unlink, newleaf%{+a}, -bot%{-}
  1043. ::login
  1044. ### $blogin$b <banner|bots|channels|whom> [on/off]
  1045. Sets various login options.
  1046. Not specifying on/off will display what the setting is the for the specified
  1047. login entry.
  1048. See also: echo, color, console, page, strip, whois
  1049. ::match
  1050. ### $bmatch$b <attr> [channel] [[start] limit]
  1051. This displays all user records with the attributes requested.
  1052. "attr" is of the form: <+/-><global>[&/|<channel>[&/|<bot>]]
  1053. Specifying "&" as the separator will cause AND style matching.
  1054. For example:
  1055. %dmatch p&o
  1056. This will match all users with both the "p" global flag and the "o" channel
  1057. flag on your current console channel.
  1058. Specifying "|" as the separator will cause OR style matching.
  1059. For example:
  1060. %dmatch p|o
  1061. This will match all users with either the "p" global flag or the "o" channel
  1062. flag on your current console channel. If you specify a channel, it will be
  1063. used instead of the current console channel.
  1064. For example:
  1065. %dmatch p|o #eggdrop
  1066. This will match all users with either the "p" global flag or the "o" channel
  1067. flag on the channel #eggdrop. You can also match bot flags.
  1068. For example:
  1069. %dmatch o|o|h
  1070. This will match all bots with either the "o" global flag, the "o" channel
  1071. flag on the current console channel, or the "h" botflag. You can also limit
  1072. the number of total results returned by specifying a limit at the end of the
  1073. command. A starting point can also be specified.
  1074. For example:
  1075. %dmatch p&o #eggdrop 16 25
  1076. This would show results 16 through 25 matching any users with the "p" global
  1077. flag or the "o" channel flag on #eggdrop.
  1078. ### $bmatch$b <wildcard-string> [[start] limit]
  1079. This displays all user records where the user's handle or any of the user's
  1080. hostmasks match the specified wildcard string. You can also limit the number
  1081. of total results returned by specifying a limit at the end of the command. A
  1082. starting point can also be specified.
  1083. For example:
  1084. %dmatch *.edu 16 25
  1085. This would show results 16 through 25 matching any users with a hostmask
  1086. that ends with ".edu".
  1087. See also: matchbot
  1088. ::matchbot
  1089. ### $bmatchbot$b
  1090. Matches bots.
  1091. See: match
  1092. ::md5
  1093. ### $bmd5$b <string>
  1094. Returns the MD5 hash of the specified string.
  1095. See also: randstring, sha1, encrypt, decrypt
  1096. :leaf:mdop:
  1097. ### $bmdop$b <#channel> [bots=n] [alines=n] [slines=n] [overlap=n] [bitch] [simul]
  1098. For those of us who do not wish to be rocket scientists in the mdop department,
  1099. a simple '%dmdop #channel' will suffice.
  1100. **Remember, the bot you mdop on will never participate in the deopping**
  1101. options:
  1102. $bbitch$b - set +bitch after finished with mdop.
  1103. $bsimul$b - Simulates the mdop. IE: Gives you a practice run, will show who
  1104. does what in the dcc chat window.
  1105. =============================================================================
  1106. don't bother setting the following options unless you REALLY know what you're
  1107. doing, and don't bother messaging me asking me how to use them if you don't.
  1108. =============================================================================
  1109. $bbots$b - Number of bots to use for mdop.
  1110. $balines$b - Number of MODE lines to assume each participating bot will get through.
  1111. $bslines$b - Number of MODE lines each participating bot will send.
  1112. $boverlap$b - Number of times to deop each target nick (using alines for calc).
  1113. bots, alines, slines and overlap are dependant on each other, set them wrong and
  1114. the bot will complain.
  1115. Defaults are alines=3, slines=5, overlap=2. alines will be increased up to 5 if
  1116. there are not enough bots available.
  1117. ::me
  1118. ### $bme$b <text>
  1119. Performs an action on the party line. This appears as "* Wcc is leaving",
  1120. etc.
  1121. :leaf:mop:
  1122. ### $bmop$b [channel|*]
  1123. Bot will op all users in the specified channel that are valid ops
  1124. for the channel. If '*' is specified, the bot will scan all channels
  1125. and op all users in all channels that are valid ops in each chan. If
  1126. no channel is specified, the console channel is used.
  1127. See also: whois, console
  1128. ::motd
  1129. ### $bmotd$b %{+m}<message>%{-}
  1130. This redisplays the partyline Message Of The Day, which was shown when you
  1131. first joined the partyline.
  1132. %{+m}+m: Inclue a message to set the motd.%{-}
  1133. :leaf:msg
  1134. ### $bmsg$b <nickname> <text>
  1135. Sends a private message to someone from the bot, just as if the
  1136. bot had typed /msg.
  1137. See also: botmsg%{+n}, netmsg%{-}
  1138. :hub:netcrontab:
  1139. ### $bnetcrontab$b <status|delete|show|new> [interval]
  1140. Runs the specified command on all linked bots.
  1141. See: crontab
  1142. :hub:netlag:
  1143. ### $bnetlag$b
  1144. Pings all bots over botnet, and displays results.
  1145. See also: lagged
  1146. :hub:netlast:
  1147. ### $bnetlast$b
  1148. All bots on the botnet will display an output from 'last' on
  1149. the user that they are currently running as.
  1150. See also: last
  1151. ::netmsg:
  1152. ### $bnetmsg$b <nickname|#chan> <text>
  1153. All bots on the botnet will send a msg to the specified target.
  1154. See also: botmsg, msg
  1155. ::netnick:
  1156. ### $bnetnick$b
  1157. All bots on the botnet will display their nick over DCC.
  1158. See also: botnick
  1159. :hub:netps:
  1160. ### $bnetps$b [ps-param]
  1161. Will run 'ps' on each bot on the botnet and returned the
  1162. results. If a params are specified, each bot will use those
  1163. on 'ps'.
  1164. See also: ps
  1165. :hub:netrontab:
  1166. ### $bnetcrontab$b <status|delete|show|new> [interval]
  1167. Runs the specified crontab command on all linked bots.
  1168. See: crontab
  1169. ::netserver:
  1170. ### $bnetservers$b
  1171. All bots on the botnet will display their current server and lag
  1172. to that server over DCC.
  1173. See also: botserver, servers%{+n}, config%{-}
  1174. ::netversion:
  1175. ### $bnetversion$b <bot>
  1176. All bots on the botnet will display their pack version, and uname.
  1177. See also: botversion, version, about%{+m|m}, status%{-}
  1178. :hub:netw:
  1179. ### $bnetw$b
  1180. All bots on the botnet will run 'w' on their shell and display
  1181. the results over DCC.
  1182. See also: w
  1183. :hub:newleaf:
  1184. ### $bnewleaf$b <handle> [hostmask] [anotherhostmask] ...
  1185. Adds a new leaf to the botnet with the specified handle and hostname.
  1186. Any number of hosts can be specified in the cmd. You will need to
  1187. add a hostmask for the bot's ip for it to connect over DCC.
  1188. ::newpass
  1189. ### $bnewpass$b <password|rand>
  1190. Changes your password on the bot. This is similar to the '/msg <bot> pass'
  1191. command, except you don't need to specify your old password. If the
  1192. newpassword is 'rand', a random password will be used.
  1193. %{+mi}See also: chpass%{-}%{+n}, chsecpass%{-}
  1194. ::nick
  1195. See: handle
  1196. :hub:nopass
  1197. ### $bnohelp$b [anything]
  1198. Displays all users who do not have a password set.
  1199. Specify any argument to give random passes to users.
  1200. ::note
  1201. ### $bnote$b <nickname[@bot]> <message>
  1202. Sends a private note to a user on the partyline. If that user is currently
  1203. logged in and not marked as away, the message will be received immediately.
  1204. Otherwise, it will be stored and displayed the next time that user joins the
  1205. partyline. To send a note to someone on a different bot, add "nick@bot" to
  1206. the nickname.
  1207. See also: whom, notes
  1208. ::notes
  1209. ### $bnotes index$b
  1210. ### $bnotes read$b <# or ALL>
  1211. ### $bnotes erase$b <# or ALL>
  1212. lets you manipulate notes that have been stored up for you while
  1213. you were gone. $b'notes index'$b gives a listing of all the notes
  1214. stored up: who they are from, and when they were left.
  1215. $b'notes read'$b lets you read some or all notes, according to a
  1216. list of numbers and/or intervals separated by semicolon.
  1217. and $b'notes erase'$b erases notes after you are done with them.
  1218. ex: notes erase 2-4;8;16-
  1219. See also: note, whom, noteigns
  1220. :leaf:op
  1221. ### $bop$b <nickname> [channel|*]
  1222. will grant chanop to the person you specify, so long as the bot
  1223. is opped on that channel, and the person you specify isn't being
  1224. actively deopped by the bot. Specify * for all channels.
  1225. See also: deop, console
  1226. ::page
  1227. ### $bpage$b <number/off>
  1228. This allows you to slow down the number of lines the bot sends you at once
  1229. via the partyline. When enabled, any commands that send greater than the
  1230. specified number of lines will stop when that number is reached and wait for
  1231. you to type another command (or press enter) to continue. If you have too
  1232. many pending lines, you may be booted off the bot.
  1233. See also: color, console, echo, login, strip
  1234. ::ps:
  1235. ### $bps$b [ps-param]
  1236. Will run 'ps' on the bot's shell and display any results. If
  1237. any params are specified, they will be used.
  1238. %{+i}See also: netps%{-}
  1239. ::quit
  1240. ### $bquit$b [comment]
  1241. This disconnects you from the partyline. If you specify a comment, it will
  1242. be displayed to other partyline users as you leave.
  1243. ::randstring
  1244. ### $brandstring$b <len>
  1245. Displays a random string of length 'len' up to 300 chars.
  1246. See also: md5, sha1, encrypt, decrypt
  1247. ::rehash
  1248. ### $brehash$b
  1249. Reloads config data from binary. (Probably won't be needed as this is automatically
  1250. updated after editing the binary with -C
  1251. See also: restart
  1252. ::relay
  1253. ### $brelay$b <bot>
  1254. Relays you via telnet to another bot, whether or not it is currently linked.
  1255. The local bot must, however, have a bot record for the bot you wish to
  1256. relay to. Typing .quit or "*bye*" on a line by itself will end the relay.
  1257. See also: bots%{+n}, newleaf%{-}%{+a}, -bot%{-}
  1258. ::reload
  1259. ### $breload$b
  1260. Reloads the bot's user file, discarding any changes made since the last
  1261. $b'%dsave'$b command or hourly user file save.
  1262. See also: save
  1263. :leaf:reset
  1264. ### $breset$b [channel]
  1265. clears out the bot's channel information and makes it gather the
  1266. information from the server all over again, as if it had just
  1267. joined that channel. it's not really useful much, but could be
  1268. if an odd bug causes the channel information to get scrambled.
  1269. unfortunately this command used to get a lot of use. you can omit
  1270. the channel name to make it reset ALL channels.
  1271. See also: resetbans, resetexempts, resetinvites
  1272. :leaf:resetbans
  1273. ### $bresetbans$b [channel]
  1274. resets the bot's ban list for the channel. any bans on the channel
  1275. that aren't in the ban list (either the global list or the local
  1276. channel ban list) will be removed, and if there are any bans in the
  1277. global ban list or channel ban list that are not currently on the
  1278. channel, they will be added.
  1279. See also: bans, console%{+m|m}, reset%{-}
  1280. :leaf:resetexempts
  1281. ### $bresetexempts$b [channel]
  1282. resets the bot's exemption list for the channel. this command
  1283. behaves exactly like resetbans, except it is for exempts.
  1284. See also: resetbans, resetinvites
  1285. :leaf:resetinvites
  1286. ### $bresetinvites$b [channel]
  1287. resets the bot's invitation list for the channel. this command
  1288. behaves exactly like resetbans, except it is for invites.
  1289. See also: resetbans, resetinvites
  1290. ::restart
  1291. ### $brestart$b
  1292. Makes the bot restart, but keeps it's connection to IRC active.
  1293. See also: rehash, reload, save
  1294. :hub:save
  1295. ### $bsave$b
  1296. This makes the bot write its entire userfile to disk. This is useful if you
  1297. think the bot is about to crash or something, since the user file is only
  1298. written to disk about once an hour.
  1299. See also: reload, backup
  1300. :leaf:say
  1301. ### $bsay$b [channel] <text>
  1302. dumps the text to your current console channel (or other specified
  1303. channel), as if the bot "said" it.
  1304. ::secpass:
  1305. ### $bsecpass$b <password|rand>
  1306. Changes your secpass on the bot. This is used for Authing via /msg
  1307. and for DCC. If the password is 'rand', a random password will be used.
  1308. %{+mi}See also: chpass%{-}%{+n}, chsecpass%{-}
  1309. :leaf:servers
  1310. ### $bservers$b
  1311. lists the servers that the bot has in its server list. this is
  1312. the list it rotates through when changing servers. it starts
  1313. with a static list which it loads from its config-file when the
  1314. bot is booted up. after that, you can add servers with the
  1315. $b'%djump'$b command. the server list will indicate which server the
  1316. bot is currently on.
  1317. :hub:set:
  1318. ### $bset$b [<+/->list] [<var> [data|-]]
  1319. Sets various options. Type alone to see all set entries. To set
  1320. an entry do '%dset name VALUE'. Use '-' as a value to clear an entry.
  1321. The '+' may be used to add 1 element to a comma separated list. (ie, servers)
  1322. The '-' may be used to remove 1 element from a comma separated list. (ie, servers)
  1323. The 'list' may be used to list a comma separated variable as a vertical listing. (like %dservers)
  1324. Current variables:
  1325. $uB$u: Boolean (0 or 1)
  1326. $uS$u: String
  1327. $uN$u: Number
  1328. $uL$u: List capable
  1329. $uR$u: Rate. Set as 'number:interval', ie, '1:5'
  1330. $uD$u: Detected vars have the folloing options: $bignore$b/0, $bwarn$b/1, $bdie$b/2,
  1331. $breject$b/3, $bsuicide$b/4
  1332. [SL] $balias$b List of dcc aliases in format '<alias> <cmd> [parms]'. First
  1333. matching alias is used. Normal flag checking is done
  1334. after the alias is expanded.
  1335. $fCAUTION: TRIPPLE CHECK FOR POSSIBLE LOOPS AS THEY ARE FATAL.$f
  1336. [S] $bchanset$b List of default options for when a channel is added. Same format
  1337. as 'chanset'.
  1338. [N] $bserver-port$b Default port to use for server connections.
  1339. [S] $bauth-key$b The authkey used during authing.G ive to users if they need to auth.
  1340. (can be bot specific)
  1341. [C] $bauth-prefix$b The prefix character used for msg cmds, ie: $u!$uop or $u.$uop
  1342. [B] $bauth-obscure$b Will not halt on dcc login if pass is wrong. Will display auth hash..
  1343. Will always fail at hash though.
  1344. [N] $bdcc-autoaway$b Time in seconds until a user is set auto-away on dcc.
  1345. (0/- to disable)
  1346. [B] $bmean-kicks$b Enables 'mean' and 'offensive' kick msgs.
  1347. [B] $bmanop-warn$b Warn users via /NOTICE when they msg-op in a channel with manop
  1348. punishments.
  1349. * Msg cmd vars may be left blank to disable usage of cmd.
  1350. [S] $bmsgop$b Defines the cmd for opping via msging the bot.
  1351. [S] $bmsgpass$b Defines the cmd for setting a pass via msging the bot.
  1352. [S] $bmsginvite$b Defines the cmd for requesting invite via msging the bot.
  1353. [S] $bmsgident$b Defines the cmd for identing via msging the bot.
  1354. [N] $bfork-interval$b Number of seconds in between each fork() call made by the bot.
  1355. (Resets PID/CPU)
  1356. [R] $bflood-msg$b Msgs:Secs until a host is ignored. (0:0 to disable)
  1357. [R] $bflood-ctcp$b Ctcps:Secs until a host is ignored. (0:0 to disable)
  1358. [R] $bflood-g$b Msgs:Secs until triggering to set +g for 60 seconds (0:0 to disable)
  1359. [D] $blogin$b How to handle someone logging in to the shell.
  1360. [D] $btrace$b How to handle someone tracing/debugging the bot.
  1361. [D] $bpromisc$b How to handle when a interface is set to promiscuous mode.
  1362. [D] $bbad-process$b How to handle when a running process not listed in process-list
  1363. is detected.
  1364. [SL] $bprocess-list$b Comma-separated list of "expected processes" running on the bots uid.
  1365. [D] $bhijack$b How to handle when a commonly used hijack method attempt is detected.
  1366. [SL] $bservers$b Comma-separated list of servers the bot will use.
  1367. [SL] $bservers6$b Comma-separated list of servers the bot will use (FOR IPv6).
  1368. [S] $brealname$b The bot's "real name" when connecting.
  1369. [S] $bnick$b The bot's preferred nickname on IRC.
  1370. [B] $bdccauth$b Boolean (0 or 1). Set to use auth checking on dcc/telnet login.
  1371. [N] $bop-bots$b Number of bots to ask every time a oprequest is to be made.
  1372. [N] $bin-bots$b Number of bots to ask every time a inrequest is to be made.
  1373. [R] $bop-requests$b (requests:seconds) limits how often the bot will ask for ops.
  1374. [R] $bclose-threshold$b (H:L) When at least H hubs but L or less leafs are linked, close
  1375. all channels.
  1376. [N] $blag-threshold$b Maximum acceptable server lag for the bot to send/honor requests.
  1377. [N] $bkill-threshold$b When more than this many bots have been killed/klined in the last
  1378. minute, close all channels.
  1379. [N] $bfight-threshold$b When more than this many +ob/-ob/kicks have happened on a channel in
  1380. 1 minute, the channel is closed.
  1381. [N] $bcloak-script$b Decides which script the bot cloaks as.
  1382. If set to 0, a random script will be used.
  1383. 1=plain bitchx, 2=crackrock, 3=neonapple, 4=tunnelvision,
  1384. 5=argon, 6=evolver, 7=prevail 8=cypress 9=mIRC
  1385. See also: botset
  1386. ::sha1
  1387. ### $bsha1$b <string>
  1388. Returns the SHA1 hash of the specified string.
  1389. See also: randstring, md5, encrypt, decrypt
  1390. ::simul
  1391. ### $bsimul$b <handle> <text>
  1392. This allows you to simulate the specified handle typing the given text.
  1393. For example:
  1394. %dsimul dweeb%d.quit
  1395. This would appear just as if "dweeb" typed "%dquit". This command will not
  1396. work unless eggdrop has simul enabled in the config file.
  1397. See also: su
  1398. ::slowjoin:
  1399. ### $bslowjoin$b <channel> <interval-seconds> [channel-options]
  1400. All bots on the botnet will join the channel at the rate of one bot
  1401. per 'interval-seconds'. If any channel-options are specified, the
  1402. channel will be added with those options. If the channel is set
  1403. +take, when just 1 bot is opped, the rest of the botnet will
  1404. immediately join and proceed to 'take'. :)
  1405. See also: slowpart, chanset, chaninfo
  1406. ::slowpart:
  1407. ### $bslowpart$b <channel> <interval-seconds>
  1408. All bots on the botnet will part the specified channel at the rate
  1409. of one bot per 'interval-seconds'
  1410. %{+n}See also: slowjoin%{-}
  1411. ::status
  1412. ### $bstatus$b
  1413. ### $bstatus all$b
  1414. Displays a condensed block of status information about the bot.
  1415. is running. For example:
  1416. [01:15] #bryan# status
  1417. I am wtest, running [wraith] Wraith 1.2.3-cvs: 274 users
  1418. Online for 00:33 (terminal mode) CPU 00:01 cache hit 28.3%
  1419. OS: Linux 2.4.30
  1420. Running from: /home/wheel/bryan/.sshrc
  1421. uid: bryan (1000) pid: 25114 homedir: /home/wheel/bryan
  1422. Tempdir : /home/wheel/bryan/.ssh/.../
  1423. Channels: #|DAWG|Net, #|DAWG|Tcl
  1424. Online as: D|Anakha!wcc@cia.nu (|DAWG|Anakha - |DAWG|Net)
  1425. Server irc.inet.tele.dk:6667 (connected for 11 days)
  1426. #|DAWG|Net: 6 members, enforcing "+istn" (lurking)
  1427. #|DAWG|Tcl: 42 members, enforcing "+tn" (lurking)
  1428. The first line tells you the bot's name, what version of Eggdrop it's
  1429. running, the number of users the bot has records of, and the amount of
  1430. memory being used by the userfile. The second line tells you the uptime of
  1431. the bot, CPU time, and cache hit. The third shows the bot's admin, and the
  1432. forth shows its current config file. The fifth line shows what operating
  1433. system the bot is running on. The next two lines show Tcl information. If
  1434. debug mode is enabled, additional info may be shown. Sharing information
  1435. will also be shown if it's being used.
  1436. Select information from modules will be displayed after the core
  1437. information. If you use $b'%dstatus all'$b instead, you will see all status
  1438. information available from loaded modules.
  1439. See also: channel, channels%{+a}, debug%{-}
  1440. ::stick
  1441. ### $bstick$b [ban/exempt/invite] <hostmask/number> [channel]
  1442. Makes a ban, exempt, or invite "sticky". This means that the bot will always
  1443. try to keep it active on the channel. Obviously, if the channel isn't using
  1444. dynamic bans, this has no effect.
  1445. See also: bans, exempts, invites, unstick, +ban, +exempt, +invite
  1446. ::store
  1447. ### $bstore$b
  1448. Stores your console settings so that they are restored automatically the
  1449. next time you join the party line. ('console' calls this auto)
  1450. See also: console
  1451. ::strip
  1452. ### $bstrip$b [modes]
  1453. Allows you to remove embedded 'attribute' codes your partyline output. Valid
  1454. options are:
  1455. $bb$b - remove all boldface codes
  1456. $bc$b - remove all color codes
  1457. $br$b - remove all reverse video codes
  1458. $bu$b - remove all underline codes
  1459. $ba$b - remove all ANSI codes
  1460. $bg$b - remove all ctrl-g (bell) codes
  1461. The mode can also be a modifier like '+c' or '-bu' or '+ru-c'. If
  1462. you omit modes, it will show your current setting.
  1463. See also: fixcodes, color, echo, login, page
  1464. %{+m}
  1465. ### $bstrip$b <user> [modes]
  1466. Set the strip level of another user. A master can't set their own strip
  1467. flags without prefixing the modes with a '+' or '-'.%{-}
  1468. ::su
  1469. ### $bsu$b <user>
  1470. Lets you assume the identity of another user. If you are a global owner,
  1471. this does not require a password. Otherwise, you will be asked for the
  1472. user's password. $b%dquit$b returns you to your original handle.
  1473. ::suicide
  1474. ### $bsuicide$b [reason]
  1475. Makes bot remove itself and then dies. If bot is first bot in it's binary
  1476. it will kill all bots running for that binary.
  1477. See also: die, conf
  1478. :leaf:swhois
  1479. ### $bswhois$b [server/nick] <nick>
  1480. Displays a server /whois for the specified nick. Specifying
  1481. the nick twice will display idle time. Specifying a server will
  1482. display the whois as viewed by that server.
  1483. If the nick is currently not online, a /WHOWAS is done automatically.
  1484. See also: find
  1485. :leaf:topic
  1486. ### $btopic$b <text>
  1487. changes the channel's topic, assuming the bot is a chanop or the
  1488. channel is not +t (uses your current console channel).
  1489. See also: console
  1490. :hub:trace
  1491. ### $btrace$b <bot>
  1492. Sends out a trace signal to another bot. If/when the trace signal returns,
  1493. (and it should!) you will get an output that looks something like this:
  1494. Trace result -> Valis:Stonewall:NoBoty:SomeBoty
  1495. This is a list of the bots connected between you and the destination bot.
  1496. It should also return the time in seconds taken for the trace to occur.
  1497. See also: bots, bottree
  1498. ::traffic
  1499. ### $btraffic$b
  1500. Shows total and daily net traffic stats since the last $b'%drestart'$b.
  1501. Stats groups are IRC, Botnet, Partyline, Transfer.mod and Misc.
  1502. %{+m}See also: restart%{-}
  1503. ::unlink
  1504. ### $bunlink$b <bot|*> [reason]
  1505. This disconnects the specified bot from the botnet (assuming it was linked
  1506. in the first place). Some bots (sharebots in particular) might not allow you
  1507. to unlink them. If "*" is specified as the parameter, all bots will be
  1508. unlinked.
  1509. See also: %{+n}link, %{-}bots, downbots%{+n}, newleaf, bottree%{-}
  1510. ::unstick
  1511. ### $bunstick$b [ban/exempt/invite] <hostmask/number> [channel]
  1512. Makes a "sticky" ban, exempt, or invite normal again.
  1513. See also: bans, exempts, invites, stick, -ban, -exempt, -invite
  1514. ::update:
  1515. ### $bupdate$b <binary>
  1516. The bot will attempt to start the new binary and kill itself.
  1517. The specified binary will need to be in the same directory
  1518. as the bot is running in.
  1519. See also: whois
  1520. :hub:uplink:
  1521. ### $buplink$b <bot> [uplink]
  1522. Changed a bot's preferred botnet uplink. Leave 'uplink' blank
  1523. to clear a bot's uplink, which will make it stay on any hub
  1524. that it can connect to. An uplink must be a hub-bot.
  1525. See also: hublevel, chaddr
  1526. ::uptime
  1527. ### $buptime$b
  1528. Displays the bot's current uptime.
  1529. See also: status
  1530. ::userlist:
  1531. ### $buserlist$b
  1532. A list of all users is displayed. Users with higher flags than you
  1533. will not appear in the list.
  1534. See also: match, whois
  1535. ::version:
  1536. ### $bversion$b
  1537. Displays the pack version and uname.
  1538. See also: botversion, netversion, about%{+m|m}, status%{-}
  1539. :leaf:voice
  1540. ### $bvoice$b <nickname> [channel|*]
  1541. will give a +v voice to a person you specify, so long as the
  1542. bot is opped on that channel. Specify * for all channels.
  1543. See also: devoice
  1544. ::w:
  1545. ### $bw$b
  1546. The output of 'w' will be displayed over DCC, bot the shell
  1547. the bot is running on.
  1548. %{+i}See also: netw%{-}
  1549. ::who
  1550. ### $bwho$b [bot]
  1551. Displays a list of users on the local bot.
  1552. For example:
  1553. [23:21] #Wcc# who
  1554. Party line members: (* = owner, + = master, @ = op)
  1555. *Wcc telnet@xxx.atlaga.adelphia.net (idle 17m)
  1556. *Wcc telnet@xxx.atlaga.adelphia.net
  1557. Bots connected:
  1558. -> wortel (05 Dec 16:32) eggdrop v1.6.15 <efnet>
  1559. The first section is people on your current channel (the party line, if you
  1560. haven't changed channels) who are on the bot. A '*' will precede the handle
  1561. if they are a bot owner, "+" if they are a master, "%%" if they are a botnet
  1562. master, or "@" if they are an op. The user's nickname, hostname, and
  1563. possibly an idle time and/or away message will be displayed.%{+n} Owners
  1564. will also see the user's dcc idx.%{-}
  1565. The next section is bots directly linked to the current bot. The arrow
  1566. indicates which bot initiated the connection. The right arrow means this bot
  1567. connected to wortel. A left arrow means the remote bot linked to this bot. A
  1568. '+' next to the arrow indicates that the bot is sharing userfiles with us.
  1569. The connection time (05 Dec 16:32) and bot version are also shown, as well
  1570. as what is specified under "network" in the config file.%{+n} Owners will
  1571. also see the bot's dcc idx.%{-}
  1572. The final section (not shown in example above) is a list of users on the
  1573. local bot who are not on your channel. This will be omitted if there are no
  1574. users on other channels. If you specify the name of a remote bot, for
  1575. example $b'%dwho valis'$b, the who request will be sent to that bot instead.
  1576. The remote bot must be linked to the botnet.
  1577. %{+m}
  1578. Masters may also see "(con <flags>)" after a user's entry, which shows the
  1579. user's console flags/modes (see $b'%dhelp console'$b).
  1580. In the final section (users that aren't on the current channel), masters
  1581. will see the actual channels other users are on. Also, people in the
  1582. filesystem will be listed (as being in channel "files") if the filesys
  1583. module is loaded. A '+' next to the nickname here means the user has
  1584. access to return to the party line.%{-}
  1585. See also: whom
  1586. ::whoami
  1587. ### $bwhoami$b
  1588. Shows your current handle and to what bot you are connected.
  1589. See also: whom
  1590. ::whois:
  1591. ### $bwhois$b [nickname]
  1592. Shows you stored information about a user record.
  1593. If no nickname is specified, your own record is shown. Five headings are
  1594. displayed:
  1595. $bHANDLE$b - the handle (nickname) of the user
  1596. $bBOTNICK$b - This user record is a bot.
  1597. $bPASS$b - "yes" if she has a password set; "no" otherwise
  1598. (bots dont use passwords)
  1599. $bNOTES$b - number of stored notes waiting for the user
  1600. $bFLAGS$b - the list of flags for this user (see below)
  1601. $bLAST$b - the time or date that the user was last on irc or the partyline
  1602. Valid global flags:
  1603. $ba$b - admin (user has absolute control over botnet minus a few perm-owner only cmds)
  1604. Be careful who you give this to, only the perm-owner of the net should even have it.
  1605. $bc$b - chat-bot (bot accepts DCC chat on irc)
  1606. $bd$b - deop (user cannot gain ops in any channel)
  1607. $be$b - nethack-exempt (user is exempted from stopnethack protection)
  1608. $bi$b - hub access (user has hub DCC access)
  1609. $bj$b - leaf access (user has leaf DCC access)
  1610. $bk$b - autokick (user is kicked and banned automatically)
  1611. $bl$b - limit-bot (bot sets limit in all channels, see '%dhelp chaninfo') [$bCPU INTENSIVE$b]
  1612. $bm$b - master (user has more access to the botnet cmds than a normal user)
  1613. $bn$b - owner (user has just about full access to bot)
  1614. $bo$b - op (user has op access to all of the bot's channels)
  1615. $bO$b - autoop (user is auto-opped in all channels)
  1616. $bp$b - party-line (user has access to the partyline)
  1617. $bq$b - quiet (user cannot gain voice on any channel)
  1618. $bu$b - update-bot (see doc/UPGRADING)
  1619. $bv$b - voice (user gets +v automatically from +y bots)
  1620. $bw$b - wasop-test (needs wasop test for +stopnethack procedure)
  1621. $bx$b - flood-exempt (user is exempt from flood kicks)
  1622. $by$b - voice-bot (bot gives out voices/auto-ops in chans) [$bCPU INTENSIVE$b]
  1623. Users can also have flags specific to a channel:
  1624. $bd$b - deop (user cannot gain ops on the channel)
  1625. $be$b - nethack-exempt (user is exempted from stopnethack protection)
  1626. $bk$b - autokick (user is kicked and banned automatically)
  1627. $bl$b - limit-bot (bot sets limit in the channel) [$bCPU INTENSIVE$b]
  1628. $bm$b - master (user is a channel master)
  1629. $bn$b - owner (user is a channel owner)
  1630. $bo$b - op (user has op access to the channel)
  1631. $bO$b - autoop (user is auto-opped in channel)
  1632. $bq$b - quiet (user cannot gain voice on the channel)
  1633. $bv$b - voice (user gets +v automatically)
  1634. $bw$b - wasop-test (needs wasop test for +stopnethack procedure)
  1635. $by$b - voice-bot (bot gives out voices/auto-ops in the channel) [$bCPU INTENSIVE$b]
  1636. $bz$b - washalfop-test (needs washalfop test for +stopnethack procedure)
  1637. Hostmasks for the user are displayed on the following lines. If the user is
  1638. a bot, there will be a line below which says "ADDRESS:" and gives the bot's
  1639. telnet address. Some user entries may have "EMAIL:" and "INFO:" entries too.
  1640. There may be additional information displayed depending on the modules
  1641. loaded, such as filesys and console.
  1642. %{+m}
  1643. Masters: if the user has a comment, you will see it under "COMMENT:".%{-}
  1644. See also: match, who, whom%{+m|m}, chattr, chaninfo%{-}
  1645. ::whom
  1646. ### $bwhom$b [channel|*]
  1647. Displays a list of users on the botnet.
  1648. '*' is assumed if no parameters are given.
  1649. For example:
  1650. [23:12] #Wcc# whom
  1651. Nick Bot Host
  1652. ---------- --------- --------------------
  1653. *Wcc Anakha telnet@xxx.atlaga.adelphia.net [idle 8m]
  1654. *BitchSmack Anakha telnet@xxx.atlaga.adelphia.net
  1655. Total users: 2
  1656. Each user's nickname will be listed in the first column, preceded by a "*"
  1657. if they are a bot owner, "+" if they are a master, "%%" if they are a botnet
  1658. master, or "@" if they are an op. In the next column, the bot the user is
  1659. connected to will be displayed. In the third column, the host is shown. If
  1660. the user is away, the away message will be shown. Likewise, if they are
  1661. idle, their idle time will be displayed.
  1662. To see what users are on a different channel, you may specify a channel
  1663. number/name. If you specify "*" as the channel, all users on all botnet
  1664. channels will be shown.
  1665. See also: who, chat%{+m}bots%{-}
  1666. ::end