-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBitchX.help
1575 lines (1573 loc) · 59.7 KB
/
BitchX.help
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
INDEX
4OP ABORT ADDIDLE ADDSHIT ADDUSER ADDLAME ADDFORWARD
ADDWORD ADMIN AJOIN AJOINLIST AWAY BACK BAN
BANS BANSTA BANTYPE BANWORD BEEP BHELP BK
BOTLIST BYE C CD CDCC CHANNEL CHANST
CHAT CHGAOP CHGCHAN CHGHOST CHANNEL CHANST CHGAOP
CHGCHAN CHGHOST CHGLEVEL CHGPROT CHOPS CLEARAUTO CLEARLOCK
CLEARTAB CLONES CONNECT CMSG CREDIT CSAY CSET
CTCP CWHO CWHOM CYCLE DATE DBAN DC
DCA DCC DCG DCS DCX DEOP DEOPER
DESCRIBE DETACH DEVOICE DF DIE DME DISCONNECT
DUMP ECHO EVAL EXEC EXIT FINGER FK
FLUSH FORWARD FPORTS FPROT FSET FTP FUCK
FUCKEM HELP HISTORY HOST HOSTNAME IG IGH
IGNORE IGT INFO INV IRCHOST IRCNAME JNW
KB KILL LASTLOG LEAVE LINKS LIST LK
LKW LLOOK LOAD LOADDLL LOADTCL LS LUSERS
MAP MSAY MB MDOP ME MESG MK
MKB MKNU MODELOCK MOP MOTD MSG MUB
MULT MVOICE NAMES NEWNICK NEWUSER NICK NOCHAT
NOPS NOTICE NOTIFY NSLOOKUP NWHOIS NWHOWAS OFFERS
OOPS OP OPER ORIGNICK OSTAT PARTALL PASTE
PING PS PURGE QME QUERY QUEUE QUIT
QUOTE READLOG REDIRECT REHASH REL RELC RELCR
RELCRT RELCT RELD RELDT RELI RELIT RELM
RELMT RELN RELNT RELOAD RELS RELSM RELSMT
RELSN RELSNT RELST RELSTT RELSW RELSWT RELT
RELW RELWT REMLOG REPEAT REQUEST RESET RANDOMNICK
SAVE SAVELIST SHOWIDLE SCAN SCANF SCANI SCANN
SCANO SCANS SCANV SERVER SET SHITLIST SAY
SHOWLOCK SLEEP SPING SQUIT SV STAT TBAN
TIG SHOWSPLIT TIME TIMER TLOCK TOPIC TRACE
TOGG TRACEKILL TRACESERV URL USER UB UMODE
UNAJOIN UNBAN UNBOT UNIDLE UNIG UNIGH UNKEY
UNSCREW UNSHIT UNTOPIC UNUSER UNWORD UPING UNFORWARD
UNLOAD UPTIME USAGE USER USERIP USERLIST VER
VERSION VOICE WALL WALLOP WHICH WHO WHOIS
WW WHOKILL WHOWAS WILM WILN WINDOW WORDLIST
USERINFO USERSHOW
*** Items in %Rred%n denote a newly added function.
*** Items in %Mmagenta%n denote a change/addition in the function.
CREDIT
Help File for %WB%nitch%WX%n by %cpanasync%n
Original BitchX.help by %Wotiluke%n %Y(%nspaz%C@%nneta.com%Y)%n
Updated by %WPhucilage %K(%gd%GA%K' %GP%ghucilage %GP%ghactory%K)%Y (%nphucilag%c@%nasarian.org%Y)
Updated by %WBarK0de%n %Y(%nbark0de%C@%nw3n.net%Y)%n
Updated by %Wdrew%n %Y(%nlogic%C@%nconcept2000.net.au%Y)%n
Updated by %WPower%n %Y(%npower%C@%npower.zepa.net%Y)%n
Updated by %WPyroSmurf%n %Y(%nkerensky%C@%nhotmail.com%Y)%n
HELP
%gUsage%n: %W/%nBHelp %Y<%nTopic%G|%nIndex%Y>%n
%YTopic%n - This gives help on %Y<%nTopic%Y>%n
%YIndex%n - This shows the list of commands supplied in BitchX
4OP
%gUsage%n: %W/%n4op %Y<%Cnick%Y>%n
- Sets mode +oooo on %Y<%Cnick%Y>%n
ABORT
%gUsage%n: %W/%nabort
- Saves IRCII settings then exits IRC
ABOUT
%gUsage%n: %W/%nabout
- Shows yet another ansi screen with greets to people who have contributed
to the %PBitchX%n project
WI
%gUsage%n: %W/%nwi %Y<%Cnick%Y>%n
- Display whois information on %Y<%Cnick%Y>%n
ADDFORWARD
%gUsage%n: %W/%naddforward %Y<%Bchannel%G|%Cnick%Y>%n
- Forward all messages to %Y<%Bchannel%G|%Cnick%Y>%n
See %YUNFORWARD%n on how to remove %Y<%Bchannel%G|%Cnick%Y>%n from forward list
ADDIDLE
%gUsage%n: %W/%naddidle %Y<%Bchannel%Y>%n %R[%nseconds%R]%n
- Adds %Y<%Bchannel%Y>%n as idle channel with %R[%nseconds%R]%n
ADDSHIT
%gUsage%n: %W/%naddshit %Y<%Cnick%G|%Cnick%G!%nuser%Y@%nhostname%Y>%n %Y<%Bchannel%G|%Y*>%n %R[%nshitlevel%R]%n %R[%nreason%R]%n
%gHint%n: %Y<%Bchannel%Y>%n can have more than one via the use of%G ,%n
- Add %Y<%Cnick%G|%Cnick%G!%nuser%Y@%nhostname%Y>%n to your shitlist on %Y<%Bchannel%G|%Y*>%n with
%R[%nshitlevel%R]%n and for %R[%nreason%R]%n
See %YUNSHIT%n on how to remove %Y<%Cnick%Y>%n from shitlist%P;%n and
%YUSERLEVELS%n for shit levels
ADDUSER
%gUsage%n: %W/%nadduser %Y[%C-ppp%Y] <%Cnick%G|%Cnick%G!%nuser%Y@%nhostname%Y>%n %Y<%Bchannel%G|%Y*>%n %Y<%nuserlevel1%W,%nuserlevel2%W,%netc%Y> [%npassword%Y]%n
%gHint%n: %Y<%Bchannel%Y>%n can have more than one via the use of %G,,%n
%gHint%n: Use %C-ppp%n to add %C*domain.com%n hosts
- Adds %Y<%Cnick%G|%Cnick%G!%nuser%Y@%nhostname%Y>%n on %Y<%Bchannel%G|%Y*>%n with %R[%nuserlevels%R]%n
See %YUNUSER%n on how to remove %Y<%Cnick%Y>%n from userlist%P;%n and
%YUSERLEVELS%n for user, auto-op and protection levels
%YCTCP%n to understand valid CTCP commands which can be sent to gain
privileges
ADDLAME
%gUsage%n: %W/%naddlame %Y<%Cnick%G|%Cnick%C nick nick%Y>%n
- Adds %Y<%Cnick%Y>%n to your lame nicklist, bans nick!*@*
ADDWORD
%gUsage%n: %W/%naddword %Y<%Bchannel%G|%Y*>%n %Y<%nword%y(%ns%y)%Y>%n
- Adds %Y<%nword%y(%ns%y)%Y>%n to wordlist, anyone saying it in %Y<%Bchannel%G|%Y*>%n will be kicked
See %YSHOWWORD%n to list banned words%P;%n and
%YUNWORD%n to remove banned words
ADMIN
%gUsage%n: %W/%nadmin %R[%nserver%R]%n
- Shows the iRC Administration information on current server or %R[%nserver%R]%n
AJOIN
%gUsage%n: %W/%najoin %Y<%Bchannel%y(%Bs%y)%Y>%n
- Add %Y<%Bchannel%y(%Bs%y)%Y>%n to AJoin list%P;%n it joins %Y<%Bchannel%y(%Bs%y)%Y>%n on startup or change of server
change
AWAY
%gUsage%n: %W/%naway %R[%nreason%R]%n
- Sets you away for %R[%nreason%R]%n
B
See %YBAN%n
BAN
%gUsage%n: %W/%nban %Y<%Cnick%G|%Cnick%G!%nuser%y@%nhostname%Y>%n
- Ban %Y<%Cnick%G|%Cnick%G!%nuser%y@%nhostname%Y>%n from current channel
%GHint%n: Even works if %Y<%Cnick%Y>%n has left current channel
BANSTAT
%gUsage%n: %W/%nbanstat %R[%Bchannel%R]%n
- Show bans on current channel or %R[%Bchannel%R]%n
BANTYPE
%gUsage%n: %W/%nbantype %Y<%nNormal%G|%nBetter%G|%nHost%G|%nDomain%G|%nScrew%Y>%n
- When a ban is done on a nick, it uses %Y<%nbantype%Y>%n
BEEP
%gUsage%n: %W/%nbeep
- Creates a beep noise
%GNote%n: This is not possible if beep_on_messages is set off, %Y*%ngrin%Y*%n
BK
%gUsage%n: %W/%nbk %Y<%Cnick%Y>%n %R[%nreason%R]%n
- Deops, bans and kicks %Y<%Cnick%Y>%n for %R[%nreason%R]%n
BOTLIST
%gUsage%n: %W/%nbotlist
- Show internal botlist
BYE
%gUsage%n: %W/%nbye
- Quits IRC
CD
%gUsage%n: %W/%ncd %Y<%ndir%Y>%n
- Changes current directory to %Y<%ndir%Y>%n
CDCC
%gUsage%n: %W/%nCDCC %Y<%ncommand%Y>%n
- CHANNEL, DESCRIBE, DOFFER, LIST, LOAD, MINSPEED, NOTICE
OFFER, PLIST, QUEUE, SAVE, SEND, RESEND, TSEND, TRESEND
RESUME, TIMER, NOTE, TYPE, ECHO, STATS, SECURE
%gUsage%n: %W/%nDCC %Y<%ncommand%Y>%n
- Bot, Chat, Close, Get, Raw, ReGet, Rename, Send
%gHint%n: %W/%nBHelp CDCC%G|%nDCC %Y<%ncommand%Y>%n for more information
CDCC DESCRIBE
%gUsage%n: %W/%nCDCC describe %R[%Bdescription%R]%n
- Allows you to change the description of a pack
CDCC CHANNEL
%gUsage%n: %W/%nCDCC channel %R[%Bchannel%R]%n
- Sets %R[%Bchannel%R]%n for public CDCC offers
CDCC DOFFER
%gUsage%n: %W/%nCDCC doffer %R[%npack%r(%ns%r)%R]%n
- Removes %R[%npack%r(%ns%r)%R]%n from your offer list
CDCC ECHO
%gUsage%n: %W/%nCDCC echo <on%G|%noff>
- Toggles the display output of cdcc offers to your screen
CDCC LOAD
%gUsage%n: %W/%nCDCC load %R[%nfile%R]%n
- Loads cdcc.save or %R[%nfile%R]%n into the pack(s)
CDCC LIST
%gUsage%n: %W/%nCDCC list
- Shows your current offer list
CDCC MINSPEED
%gUsage%n: %W/%nCDCC minspeed %R[%nKB%Y/%npersec%R]%n
- Sets the minimum speed for DCC file transfer(s) at %R[%nKB%Y/%npersec%R]%n
CDCC NOTE
%gUsage%n: %W/%nCDCC note %R[%Bnote%R]%n
- Allows you to change the notes of a pack
CDCC NOTICE
%gUsage%n: %W/%nCDCC notice %R[%Bchannel%R]%n
- Shows a notice to your current channel or %R[%Bchannel%R]%n that you have an offer
list
CDCC OFFER
%gUsage%n: %W/%nCDCC offer %R[%nfilename%r(%ns%r)%R]%n
- Prompts for %R[%nfilename%r(%ns%r)%R]%n if none specified and description, for a pack to
offer
CDCC PLIST
%gUsage%n: %W/%nCDCC plist %R[%Bchannel%R]%n
- Shows your offer list to current channel or %R[%Bchannel%R]%n
CDCC QUEUE
%gUsage%n: %W/%nCDCC queue
- Shows all nick(s) in the queue for a file to be sent
CDCC RESEND
%gUsage%n: %W/%nCDCC resend %Y<%Cnick%C>%n %Y<%npack#%G|%nfilename%Y>%n
- Restores an archive which was disrupted to %Y<%Cnick%Y>%n
CDCC SAVE
%gUsage%n: %W/%nCDCC save %R[%nfile%R]%n
- Saves all packs offered into cdcc.file or %R[%nfile%R]%n
CDCC TYPE
%gUsage%n: %W/%nCDCC type
- Changes the display of offerings from public to notices
CDCC SEND
%gUsage%n: %W/%nCDCC send %Y<%Cnick%Y> <%C#%W|%Cfile%Y>
- Send a pack to user
CDCC TSEND
%gUsage%n: %W/%nCDCC tsend %Y<%Cnick%Y> <%C#%W|%Cfile%Y>
- TDCC Send a pack to user
CDCC TRESEND
%gUsage%n: %W/%nCDCC tresend %Y<%Cnick%Y> <%C#%W|%Cfile%Y>
- TDCC Resend a pack to user
CDCC RESUME
%gUsage%n: %W/%nCDCC resume %Y<%Cnick%Y> <%C#%W|%Cfile%Y>
- mIRC Resume
CDCC TIMER
%gUsage%n: %W/%nCDCC timer
- Public list timer in minutes
CDCC STATS
%gUsage%n: %W/%nCDCC stats
- Show CDCC Stats
CDCC SECURE
%gUsage%n: %W/%nCDCC secure
- Adds a password to a pack
CHANNEL
%gUsage%n: %W/%nchannel
- Shows information on the channels, modes and server you are on
CHANST
%gUsage%n: %W/%nchanst %Y<%n-ALL%Y> %R[%Bchannel%R]%n
- Shows statistics on current channel or %R[%Bchannel%R]%n
CHGAOP
%gUsage%n: %W/%nchgaop %Y<%Cnick%Y>%n <auto-oplevel>
- Changes %Y<%nauto-oplevel%Y>%n of %Y<%Cnick%Y>%n in userlist
See %YUSERLEVELS%n for auto-op levels
CHGCHAN
%gUsage%n: %W/%nchgchan %Y<%Cnick%Y>%n %Y<%Bchannel%Y>%n
- Changes %Y<%Bchannel%Y>%n of %Y<%Cnick%Y>%n in userlist
%gHint%n: /ChgChan whoever #BitchX,#iRC can add multiple channels
CHGHOST
%gUsage%n: %W/%nchghost %Y<%Cnick%Y>%n %Y<%Bhostname%Y>%n
- Changes %Y<%Bhostname%Y>%n of %Y<%Cnick%Y>%n in userlist
CHGLEVEL
%gUsage%n: %W/%nchglevel %Y<%Cnick%Y>%n %Y<%nlevel%Y>%n
- Changes %Y<%nlevel%Y>%n of %Y<%Cnick%Y>%n in userlist
See %YUSERLEVELS%n for user levels
CHGPROT
%gUsage%n: %W/%nchgprot %Y<%Cnick%Y>%n %Y<%nprotection-level%Y>%n
- Changes %Y<%nprotection-level> of %Y<%Cnick%Y>%n in userlist
See %YUSERLEVELS%n for protection levels
CHOPS
%gUsage%n: %W/%nchops %Y[%ntypes%Y] [%n-sort type%Y] [%n#channel%Y]%n
- Shows, in a full format, all the nicks with op status
- %W/chops%n is the same as %W/user -ops%n
- For %Y[%ntypes%Y]%n and %Y[%n-sort types%Y]%n - see %YUSER%n
CLEARAUTO
%gUsage%n: %W/%nclearauto
- Clears all the nicks in the auto-response list
CLEARLOCK
%gUsage%n: %W/%nclearlock %Y<%Cchannel%G|%Y*>%n
- Unlocks the mode lock for %Y<%Cchannel%G|%Y*>%n
CLEARTAB
%gUsage%n: %W/%ncleartab
- Clears the nicks in the tabkey list
CMSG
%gUsage%n: %W/%ncmsg %Y<%Cnick%Y>%n %Y<%ntext%Y>%n
- While in the TwilightZone, a privat message will be sent to %Y<%Cnick%Y>%n with
%Y<%ntext%Y>%n
CONNECT
%gUsage%n: %W/%nconnect %Y<%nserver1%Y>%n %Y<%nport%Y>%n %R[%nserver2%R]%n
%Y*%n Requires irc operator status
- Connect %Y<%nserver1%Y>%n to %Y<%nport%Y>%n from current server or %R[%nserver2%R]%n
CSAY
%gUsage%n: %W/%ncsay %Y<%ntext%Y>%n
- While in the TwilightZone, and being the hub of the DCC Chats, %Y<%ntext%Y>%n
will be sent out to all users on the Chat network
CSET
%gUsage%n: %W/%ncset %Y<%Pcommand%Y>%n %R[%narguments%R]%n
- Shows sets for current channel. These values are taken from the
corresponding /set of the same name to make a default channel. Changing
a set doesn't necessarily change the corresponding /cset
%gHint%n: %W/%nBHelp CSet %Y<%Pcommand%Y>%n for more information
%Y<%Pcommand%Y>%n:
AINV ANNOY_KICK AOP
AUTO_REJOIN BITCH COMPRESS_MODES
DEOPFLOOD DEOPFLOOD_TIME DEOP_ON_DEOPFLOOD
DEOP_ON_KICKFLOOD HACKING JOINFLOOD
JOINFLOOD_TIME KICKFLOOD KICKFLOOD_TIME
KICK_IF_BANNED KICK_OPS KICK_ON_DEOPFLOOD
KICK_ON_JOINFLOOD KICK_ON_KICKFLOOD KICK_ON_NICKFLOOD
KICK_ON_PUBFLOOD LAMELIST NICKFLOOD
NICKFLOOD_TIME PUBFLOOD PUBFLOOD_IGNORE_TIME
PUBFLOOD_TIME SHITLIST USERLIST
CSET AINV
%gUsage%n: %W/%ncset ainv %Y<%nuser level%Y>%n
- Invites %Y<%Cnick%Y>%n if message contains INV and is above %Y<%nuserlevel%Y>%n
See %YUSERLEVELS%n concerning userlevels
CSET AUTO_REJOIN
%gUsage%n: %W/%ncset auto[rejoin %Y<%Ptype%Y>%n
- Use %Y<%Ptype%Y>%n to decide how to rejoin a channel when kicked from it
%Y<%Ptype%Y>%n:
%Y0%n %P-%n Rejoin is disabled
%Y1%n %P-%n Rejoin
%Y2%n %P-%n Rejoin with same username as the kicker
%Y3%n %P-%n Rejoin with random nick
%Y4%n %P-%n Rejoin with random nick and username
%Y5%n %P-%n Rejoin with random nick
CSET DEOPFLOOD
%gUsage%n: %W/%ncset deopflood %Y<%non%G|%noff%Y>%n
- Set deop flood checking to %Y<%non%G|%noff%Y>%n
CSET DEOPFLOOD_TIME
%gUsage%n: %W/%ncset deopflood_time %Y<%nseconds%Y>%n
- Set the number of %Y<%nseconds%Y>%n for deop flood checking is activated
CSET DEOP_ON_DEOPFLOOD
%gUsage%n: %W/%ncset deop_on_deopflood %Y<%nnumber%Y>%n
- Set the %Y<%nnumber%Y>%n of deops within DEOPFLOOD_TIME needed to deop the offender
CSET DEOP_ON_KICKFLOOD
%gUsage%n: %W/%ncset deop_on_kickflood %Y<%nnumber%Y>%n
- Set the %Y<%nnumber%Y>%n of kicks within DEOPFLOOD_TIME needed to kick the offender
CSET HACKING
%gUsage%n: %W/%ncset hacking %Y<%Ptype%Y>%n
- Set %Y<%Ptype%Y>%n of nethack protection to be enforced on a channel
%Y<%Ptype%Y>%n:
0 - Off
1 - Silently deop the offender
2 - Announce only
3 - Announce and deop the offender
CSET KICK_IF_BANNED
%gUsage%n: %W/%ncset kick_if_banned %Y<%non%G|%noff%Y>%n
- Set this to %Y<%non%G|%noff%Y>%n to kick the person who bans you
= Not implemented yet
CSET KICK_ON_DEOPFLOOD
%gUsage%n: %W/%ncset kick_on_deopflood %Y<%nnumber%Y>%n
- Set the %Y<%nnumber%Y>%n of deops needed before we kick the offender
CSET KICK_ON_KICKFLOOD
%gUsage%n: %W/%ncset kick_on_kickflood %Y<%nnumber%Y>%n
- Set the %Y<%nnumber%Y>%n of kicks needed before we kick the offender
CSET KICK_ON_NICKFLOOD
%gUsage%n: %W/%ncset kick_on_nickflood %Y<%nnumber%Y>%n
- Set the %Y<%nnumber%Y>%n of nick changes required before we kick the offender
CSET KICK_ON_JOINFLOOD
%gUsage%n: %W/%ncset kick_on_joinflood %Y<%nnumber%Y>%n
- Set the %Y<%nnumber%Y>%n of joins required before we kick the offender
CSET KICK_ON_PUBFLOOD
%gUsage%n: %W/%ncset kick_on_pubflood %Y<%nnumber%Y>%n
- Set the %Y<%nnumber%Y>%n of public lines needed before we kick the offender
CSET KICKFLOOD
%gUsage%n: %W/%ncset kickflood %Y<%non%G|%noff%Y>%n
- Set kickflood protection to %Y<%non%G|%noff%Y>%n
CSET KICKFLOOD_TIME
%gUsage%n: %W/%ncset kickflood_time %Y<%nseconds%Y>%n
- set the number of %Y<%nseconds%Y>%n in which we measure the kicks allowed
CSET LAMELIST
%gUsage%n: %W/%ncset lamelist %Y<%non%G|%noff%Y>%n
- Turn %Y<%non%G|%noff%Y>%n lame nicklist checking
= Not implemented yet
CSET NICKFLOOD
%gUsage%n: %W/%ncset nickflood %Y<%non%G|%noff%Y>%n
- Turn %Y<%non%G|%noff%Y>%n nick flood checking
CSET NICKFLOOD_TIME
%gUsage%n: %W/%ncset nickflood_time %Y<%nseconds%Y>%n
- Set the number of %Y<%nseconds%Y>%n in which we measure the number of nick changes
allowed
CSET PUBFLOOD
%gUsage%n: %W/%ncset pubflood %Y<%non%G|%noff%Y>%n
- Turn %Y<%non%G|%noff%Y>%n public flood checking
CSET PUBFLOOD_IGNORE_TIME
%gUsage%n: %W/%ncset pubflood_ignore_time %Y<%nminutes%Y>%n
- Set the number of %Y<%nminutes%Y>%n to ignore a nick on public floods
CSET PUBFLOOD_TIME
%gUsage%n: %W/%ncset pubflood_time %Y<%nseconds%Y>%n
- Sets the amount of time in seconds that KICK_ON_PUBFLOOD counts lines
CSET SHITLIST
%gUsage%n: %W/%ncset shitlist %Y<%non%G|%noff%Y>%n
- Turn the shitlist %Y<%non%G|%noff%Y>%n for a channel
CSET USERLIST
%gUsage%n: %W/%ncset userlist %Y<%non%G|%noff%Y>%n
- Turn %Y<%non%G|%noff%Y>%n userlist for a channel
CSET JOINFLOOD_TIME
%gUsage%n: %W/%ncset joinflood_time %Y<%nseconds%Y>%n
- set the number of %Y<%nseconds%Y>%n in which we measure the joins allowed
CSET BITCH
%gUsage%n: %W/%ncset bitch %Y<%non%G|%noff%Y>%n
- Turn %Y<%non%G|%noff%Y>%n Bitch mode
CSET KICK_OPS
%gUsage%n: %W/%ncset kick_ops %Y<%non%G|%noff%Y>%n
- Turn %Y<%non%G|%noff%Y>%n kicking of chanops
CSET AOP
%gUsage%n: %W/%ncset aop %Y<%non%G|%noff%Y>%n
- Turn %Y<%non%G|%noff%Y>%n auto-op for people in your userlist
- %W/%nbhelp %YUSERLEVELS%n for user levels
CSET COMPRESS_MODES
%gUsage%n: %W/%ncset compress_modes %Y<%non%G|%noff%Y>%n
- Turn %Y<%non%G|%noff%Y>%n mode compression
CSET JOINFLOOD
%gUsage%n: %W/%ncset joinflood %Y<%non%G|%noff%Y>%n
- Turn %Y<%non%G|%noff%Y>%n join flood checking
CSET ANNOY_KICK
%gUsage%n: %W/%ncset annoy_kick %Y<%non%G|%noff%Y>%n
- Turn %Y<%non%G|%noff%Y>%n annoy kicking
- If %Yon%n, kicks for caps, inverse, and bold
CTCP
%gUsage%n: %W/%nctcp %Y<%Cnick%Y>%n %Y<%nrequest%Y>%n
- CTCP sends %Y<%Cnick%Y>%n with %Y<%nrequest%Y>%n
%Y<%nrequest%Y>%n: %G(%nexamples which can be sent to other %GBitchX%n users%G)%n
friends%G:%n
%Y*%n INVITE %M-%n Ask for an invite to %Y<%Bchannel%Y>%n
%Y*%n OPS %M-%n A legitimate way to gain ops
%Y*%n WHOAMI %M-%n Request %Y<%Cnick%Y> to display current attributes of me
%Y*%n %M-%n
other%G:%n
%Y*%n XLINK %M-%n ?
CWHO
%gUsage%n: %W/%ncwho
- Lists the clients and bots connected to the TwilightZone
CWHOM
%gUsage%n: %W/%ncwhom
- Sorry, no help is available for this command yet
CYCLE
%gUsage%n: %W/%ncycle %R[%Bchannel%R]%n
- Leaves current channel or %R[%Bchannel%R]%n and immediately rejoins
D
See %YDESCRIBE%n
DATE
%gUsage%n: %W/%ndate
- Shows current time and date from current server
DBAN
%gUsage%n: %W/%ndban
- Clears all bans on current channel
DC
%gUsage%n: %W/%ndc %Y<%Cnick%Y>%n
- Starts a DCC CHAT to %Y<%Cnick%Y>%n
DCC
%gUsage%n: %W/%ndcc %Y<<%Pcommand%Y>%n %R[%narguments%R]%Y>%n
- Bot, Chat, Close, Get, Raw, ReGet, Rename, ReSend, Send
%Y<%Pcommand%Y>%n switches:
auto %Y<%non%G|%noff%Y>%n overwrite %Y<%non%G|%noff%Y>%n
paths %Y<%non%G|%noff%Y>%n quiet %Y<%non%G|%noff%Y>%n
DCC BOT
%gUsage%n: %W/%ndcc bot %Y<%Cnick%Y>%n
- Starts a Direct-Client-to-Client bot chat to %Y<%Cnick%Y>%n
- This is a special mode for clients to act as hubs for other dcc chat
connections
DCC CHAT
%gUsage%n: %W/%ndcc chat %Y<%Cnick%Y>%n
- Starts a Direct-Client-to-Client chat to %Y<%Cnick%Y>%n
DCC CLOSE
%gUsage%n: %W/%ndcc close %Y<%ntype%Y>%n %Y<%Cnick%Y>%n %R[%narguments%R]%n
- Close %Y<%ntype%Y>%n connection from %Y<%Cnick%Y>%n with %R[%narguments%R]%n
DCC EXEMPT
%gUsage%n: %W/%ndcc exempt %Y<%C+nick%Y>%n
- Adds a user to your dcc auto-get list regardless of whether
/set dcc_autoget is Off or On
DCC GET
%gUsage%n: %W/%ndcc get %Y<%Cnick%Y>%n %R[%nfile%r(%ns%r)%R]%n
- Starts to receive %R[%nfile%r(%ns%r)%R]%n from %Y<%Cnick%Y>%n
DCC HELP
- Gets DCC specific help
DCC RAW
%gUsage%n: %W/%ndcc raw %Y<%Cnick%Y>%n %Y<%nhost%Y>%n
- This is used in conjunction with $connect() and $listen() for sending data
over a raw socket connection
DCC REGET
%gUsage%n: %W/%ndcc reget %Y<%Cnick%Y>%n %R[%nfile%r(%ns%r)%R]%n
- Will reget %R[%nfile%r(%ns%r)%R]%n and restore a broken connection from %Y<%Cnick%Y>%n
DCC RENAME
%gUsage%n: %W/%ndcc rename %Y<%Cnick%Y>%n %Y<%nnew filename%Y>%n
- Rename a filename being sent from %Y<%Cnick%Y>%n to %Y<%nnew filename%Y>%n
DCC RESEND
%gUsage%n: %W/%ndcc resend %Y<%Cnick%Y>%n %Y<%nfile%Y>%n
- Starts a DCC send and restore a broken connection of %Y<%nfile%Y>%n to %Y<%Cnick%Y>%n
DCC SEND
%gUsage%n: %W/%ndcc send %Y<%Cnick%Y>%n %Y<%nfile%Y>%n
- DCC Sends %Y<%nfile%Y>%n to %Y<%Cnick%Y>%n
DCG
%gUsage%n: %W/%ndcg %Y<%Cnick%Y>%n
- Close a DCC GET from %Y<%Cnick%Y>%n
DCX
%gUsage%n: %W/%ndcx %Y<%Cnick%Y>%n
- Close a DCC CHAT with %Y<%Cnick%Y>%n
DEBUGMSG
- Displays server msg's via hashtable
DEOP
%gUsage%n: %W/%ndeop %Y<%Cnick%y(%Cs%y)%Y>%n
- Deops %Y<%Cnick%y(%Cs%y)%Y>%n
DEOPER
%gUsage%n: %W/%ndeoper
%Y*%n Requires IRC operator status
- Removes IRC operator status
DESCRIBE
%gUsage%n: %W/%ndescribe %Y<%Cnick%G|%Bchannel%Y>%n %Y<%naction%Y>%n
- Describes to %Y<%Cnick%G|%Bchannel%Y>%n with %Y<%naction%Y>%n
DF
%gUsage%n: %W/%ndf
- Show disk space usage
DIE
%gUsage%n: %W/%ndie
%Y*%n Requires irc operator status
- Kills the IRC server you are on
DIGRAPH
%gUsage%n: %W/%ndigraph
- Shows Digraph table
DISCONNECT
%gUsage%n: %W/%ndisconnect
- Disconnects you from the current server
DOP
See %YDEOP%n
DUMP
%gUsage%n: %W/%ndump %Y<%ntype%Y>%n
- Dumps %Y<%ntype%Y>%n to screen
%Y<%ntype%Y>%n:
%YAlias%n %YAll %n %YBind %n
%YFile %n %YOn %n %YVar %n
EVALSERVER
%gUsage%n: %W/%nevalserver %Y<%nrefnum%Y> <%ncommand%Y>%n
- Sends command to reference numbered server
EXEC
%gUsage%n: %W/%nexec %Y<%ncommand%Y>%n
- Executes %Y<%ncommand%Y>%n with the shell set from %PSHELL%n
EXIT
%gUsage%n: %W/%nexit
- Quits IRC
FINGER
%gUsage%n: %W/%nfinger %Y<%Cnick%Y>%n
- Fetches finger info on %Y<%Cnick%Y>%n
FK
%gUsage%n: %W/%nfk %Y<%Cnick%G!%nuser%Y@%nhostname%Y>%n%R[%nreason%R]%n
- Finds clients matching %Y<%Cnick%G!%nuser%Y@%nhostname%Y>%n and immediately kicks
them from current channel for %R[%nreason%R]%n
FKLINE
%gUsage%n: %W/%nfkline %Y<%Cnick%G|%Cnick%G!%nuser%Y@%nhostname%Y>%n%R[%nserver%R]%n
- Finds K-line(s) matching %Y<%Cnick%G|%Cnick%G!%nuser%Y@%nhostname%Y>%n on current server
or %R[%nserver%R]%n
FLOOD
%gUsage%n: %W/%nflood %Y<%Cnick%Y>%n
- Floods %Y<%Cnick%Y>%n with beeps
FLUSH
%gUsage%n: %W/%nflush
- Flushes all iRC server output
FORWARD
%gUsage%n: %W/%nforward %Y<%Cnick%Y>%n
- Forwards all messages to %Y<%Cnick%Y>%n
FPORTS
%gUsage%n: %W/%nfports %Y<%nhostname%Y>%n %R[%Y<%nlowport%Y>%n %Y<%nhighport%Y>%R]%n
- Attempts to find ports on %Y<%nhostname%Y>%n on %R[%Y<%nlowport%Y>%n %Y<%nhighport%Y>%R]%n
FPROT
%gUsage%n: %W/%nfprot
- Toggles flood protection to be either on or off
FTP
%gUsage%n: %W/%nftp
- Opens a FTP client in a virtual screen
Use %B^[%Gnumber%n to switch through virtual screens
FUCK
%gUsage%n: %W/%nfuck %Y<%Cnick%Y>%n %R[%nreason%R]%n
- Deops, bans and kicks %Y<%Cnick%Y>%n for %R[%nreason%R]%n
Also adds %Y<%Cnick%Y>%n to shitlist at level 3 for current channel
HISTORY
%gUsage%n: %W/%nhistory
- Shows recently typed commands
HOST
%gUsage%n: %W/%nhost %R<%Cnick%R>%n
- Shows host of yourself or %R<%Cnick%R>%n
I
See %YINVITE%n
IG
%gUsage%n: %W/%nig +%G|%n-%Y<%Cnick%Y>%n
- Ignores ALL except crap and public of nick!host matching %Y<%Cnick%Y>%n
IGH
%gUsage%n: %W/%nigh +%G|%n-%Y<%Cnick%Y>%n
- Ignores ALL except crap and public of hostname matching %Y<%Cnick%Y>%n
IGNORE
%gUsage%n: %W/%nignore +%G|%n-%G|%n^%Y<%Cnick%Y>%n
- Ignores ALL except crap and public from %Y<%Cnick%Y>%n
IGT
%gUsage%n: %W/%nigt +%G|%n-%Y<%Cnick%Y>%n
- Ignores ALL except crap and public of nick!host matching %Y<%Cnick%Y>%n
- Nickname is ignored for /set IGNORE_TIME minutes
IGHT
%gUsage%n: %W/%night +%G|%n-%Y<%Cnick%Y>%n
- Ignores ALL except crap and public of host matching %Y<%Cnick%Y>%n
- Nickname is ignored for /set IGNORE_TIME minutes
INFO
%gUsage%n: %W/%ninfo
- Shows current client info
INV
See %YINVITE%n
INVITE
%gUsage%n: %W/%ninvite %Y<%Cnick%Y>%n %R[%Bchannel%R]%n
- Invites %Y<%Cnick%Y>%n to current channel or %R[%Bchannel%R]%n
JNW
%gUsage%n: %W/%njnw %Y<%Bchannel%Y>%n
- Simultaneously joins %Y<%Bchannel%Y>%n and creates a new window
(split screen)
K
%gUsage%n: %W/%nk %Y<%Cnick%Y>%n %R[%nreason%R]%n
- Kicks %Y<%Cnick%Y>%n for %R[%nreason%R]%n on current channel
KB
%gUsage%n: %W/%nkb %Y<%Cnick%Y>%n %R[%nreason%R]%n
- Deops, kicks and bans %Y<%Cnick%Y>%n for %R[%nreason%R]%n
KICK
%gUsage%n: %W/%nkick %Y<%Bchannel%G|%Y*>%n %Y<%Cnick%Y>%n %R[%nreason%R]%n
- This behaves just like /k
See %YK%n for further information
KICKIDLE
%gUsage%n: %W/%nkickidle %Y<%Bchannel%Y>%n
- Kicks all idle people on %Y<%Bchannel%Y>%n
KILL
%gUsage%n: %W/%nkill %Y<%Cnick%Y>%n %R[%nreason%R]%n
%Y*%n Requires irc operator status
- Kills %Y<%Cnick%Y>%n for %R[%nreason%R]%n
If no reason is given, a quote from the random kill file is used
L
See %YLEAVE%n
LASTLOG
%gUsage%n: %W/%nlastlog -file filename%G|%n-clear%G|%n-max #%G|%n
-literal pat%G|%n-beep%G|%nlevel
- Shows more than a few pages back
LEAVE
%gUsage%n: %W/%nleave %Y<%Bchannel%Y>%n
- Leaves current channel or %Y<%Bchannel%Y>%n
LINKS
%gUsage%n: %W/%nlinks
- Shows servers and links to other servers
LIST
%gUsage%n: %W/%nlist
- Lists all channels
LK
%gUsage%n: %W/%nlk %R[%nreason%R]%n
- Kicks all non +o people on current channel with %R[%nreason%R]%n
LKW
%gUsage%n: %W/%nlkw %R[%Bchannel%R]%n
- Leave the current channel, killing the window in current channel or
%R[%Bchannel%R]%n aswell
LLOOK
%gUsage%n: %W/%nllook
%Y*%n Requires set %YLLOOK%n %RON%n
- Lists all the servers which are current split from the IRC network
LOAD
%gUsage%n: %W/%nload <script>
- Loads <script> into memory
LS
%gUsage%n: %W/%nls %R[%narguments%R]%n <file(s)|dir(s)>
- Lists current <file(s)|dir(s)> with %R[%narguments%R]%n
LUSERS
%gUsage%n: %W/%nlusers
- Shows stats on current server
M
See %YMSG%n
MB
%gUsage%n: %W/%nmb
- Mass bans everybody on current channel
MDOP
%gUsage%n: %W/%nmdop
- Mass deops everybody on current channel
MDVOICE
%gUsage%n: %W/%nmdvoice
- Removes voice status from everyone in current channel
ME
%gUsage%n: %W/%nme <action>
- Sends an action to current channel
MESG
%gUsage%n: %W/%nmesg %Y<%nYes%g|%nNo%g||%nOn%g|%nOff%Y>%n
- Turns mesg %Y<%nYes%g|%nNo%g||%nOn%g|%nOff%Y>%n
MKB
%gUsage%n: %W/%nmkb
- Sorry, no help is available for this command yet
MKNU
%gUsage%n: %W/%nmknu
- Mass kick non-users
MODELOCK
%gUsage%n: %W/%nmodelock %Y<%Bchannel%Y>%n +%G|%n-%Y<%ninstampkl #%Y>%n
- Locks %Y<%Bchannel%Y>%n with +%G|%n-%Y<%nmodes%Y>%n
MOP
%gUsage%n: %W/%nmop
- Mass ops everybody on current channel
MOTD
%gUsage%n: %W/%nmotd %R[%nserver%R]%n
- Shows MOTD on current server %R[%nserver%R]%n
MSG
%gUsage%n: %W/%nmsg %Y<%Cnick%Y>%n %Y<%ntext%Y>%n
- Send %Y<%Cnick%Y>%n a message with %Y<%ntext%Y>%n
MUB
%gUsage%n: %W/%nmub
- Mass unbans current channel
MULT
%gUsage%n: %W/%nmult %Y<%Cnick%y(%Cs%y)%Y>%n
- Multikicks %Y<%Cnick%y(%Cs%y)%Y>%n
MVOICE
%gUsage%n: %W/%nmvoice %R[%Cnick%G|%Bchannel%G|%Cnick%Y!%Cuser%Y@%nhostname%Y]%n
- Mass voice nicks matching %R[%Cnick%G|%Bchannel%G|%Cnick%Y!%Cuser%Y@%nhostname%Y]%n
NAMES
%gUsage%n: %W/%nnames %R[%Bchannel%R]%n
- Shows names on current channel or %R[%Bchannel%R]%n
NEWNICK
%gUsage%n: %W/%nnewnick %Y<%Cnick%Y>%n <username>
- Changes your %Y<%Cnick%Y>%n and <username>
NEWUSER
%gUsage%n: %W/%nnewuser <username>
- Changes your <username>
NICK
%gUsage%n: %W/%nnick %Y<%Cnick%Y>%n
- Changes your %Y<%Cnick%Y>%n
NOPS
%gUsage%n: %W/%nnops %Y[%ntypes%Y] [%n-sort type%Y] [%n#channel%Y]%n
- Shows, in a full format, all the nicks without op status
- %W/nops%n is the same as %W/user -nonops%n
- For %Y[%ntypes%Y]%n and %Y[%n-sort types%Y]%n - see %YUSER%n
NOTICE
%gUsage%n: %W/%nnotice %Y<%Cnick%G|%Bchannel%Y> %Y<%ntext%Y>%n
- Sends a notice to %Y<%Cnick%G|%Bchannel%Y> with %Y<%ntext%Y>%n
NOTIFY
%gUsage%n: %W/%nnotify %Y<%Cnick%Y>%n
- Adds %Y<%Cnick%Y>%n to notify list
%gUsage%n: %W/%nnotify -%Y<%Cnick%Y>%n
- Removes %Y<%Cnick%Y>%n from notify list
NSLOOKUP
%gUsage%n: %W/%nnslookup %Y<%nhostname%Y>%n
- Returns the IP adress and IP number for %Y<%nhostname%Y>%n
NWHOIS
%gUsage%n: %W/%nnwhois %Y<%Cnick%Y>%n
- Shows internal statistics for %Y<%Cnick%Y>%n
NWHOWAS
%gUsage%n: %W/%nnwhowas
- Displays internal whowas info for all channels. This information expires
after 20 minutes for users on internal list, 10 minutes for others
OOPS
%gUsage%n: %W/%noops %Y<%Cnick%Y>%n
- Sends a oops message to last recipient of a message and sends the
correct message to %Y<%Cnick%Y>%n
OP
%gUsage%n: %W/%nop %Y<%Cnick%Y>%n
- Gives %Y<%Cnick%Y>%n +o
OPER
%gUsage%n: %W/%noper %Y<%Cnick%Y>%n %R[%npassword%R]%n
- To receive irc operator status with %Y<%Cnick%Y>%n and %R[%npassword%R]%n
ORIGNICK
%gUsage%n: %W/%norignick %Y<%Cnick%Y>%n
- Attempts to regain a nick that someone else has taken from you.
OSTAT
%gUsage%n: %W/%nostat
- A list of server statistics shown. They include:
Bot Alarms Client Exits Client Floods Fake Modes
High Traffic Invalid User New K: Lines Nick Collisions
Normal Traffic Oper Kills Oper Requests Possible Bots
Server Rehash Stats Requests Total Clients UnAuth
PING
%gUsage%n: %W/%nping %Y<%Cnick%Y>%n
- Send a CTCP PING to %Y<%Cnick%Y>%n to check lag
PS
%gUsage%n: %W/%nps %R[%narguments%R]%n
- Shows active processes on local machine
PURGE
- Complete removes all traces of a variable or variable structure
Q
See %YQUERY%n
QK
%gUsage%n: %W/%nqk %Y<%Cnick%Y>%n
- Kick %Y<%Cnick%Y>%n with a %Yreason%n randomly selected from %GBitchX%n.reasons
QUERY
%gUsage%n: %W/%nquery %Y<%n-cmd cmdname%Y> <%Cnick%Y>%n
- Starts a query to %Y<%Cnick%Y>%n
%GUsage%n: %W/%nquery
- Whilst in a query, conclude the query if no arguments are present
- Use -cmd to specify what type of output you want. default is a msg.
- cmsg wall csay are all possible to use here.
QUEUE
%gUsage%n: %W/%nqueue
- Shows current queue
QUIT
%gUsage%n: %W/%nquit
- Leaves IRC
RANDOMNICK
%gUsage%n: %W/%nrandomnick %Y<%Cnick%Y>%n
- Changes your nick to a random nick. If nick is specified, then it is
used as a prefix to the randomness.
READLOG
%gUsage%n: %W/%nreadlog
- Displays current away log
RECONNECT
%gUsage%n: %W/%nreconnect
- Reconnects you to current server
REDIRECT
%gUsage%n: %W/%nredirect %Y<%Cnick%G|%Bchannel%Y> <command>
- Redirects <command> to %Y<%Cnick%G|%Bchannel%Y>
REHASH
%gUsage%n: %W/%nrehash
%Y*%n Requires IRC operator status
- Rehashs ircd.conf for new configuration
REL
%gUsage%n: %W/%nrel? -command # nick
- command is one of the following: -kick, -wall, -notice, -msg,
-wallop, -topic, -kill, -kboot,
-ansi and -list
- If the list supports more than one saved message then # can be from 0-9
- nick can be a nick or a channel. If left off, then current channel is
assumed
RELC
%gUsage%n: %W/%nrelc
- Displays the last CTCP command issued
RELCR
%gUsage%n: %W/%nrelcr
- Displays the last CTCP reply message received
RELCRT
%gUsage%n: %W/%nrelcrt
- Changes the topic to the last CTCP reply message
RELCT
%gUsage%n: %W/%nrelct
- Changes the topic to the last CTCP command issued
RELD
%gUsage%n: %W/%nreld
- Displays the last DCC msg received.
RELDT
%gUsage%n: %W/%nreldt
- Sets the topic to the last DCC message received.
RELI
%gUsage%n: %W/%nreli
- Shows the last invite message received
RELIT
%gUsage%n: %W/%nrelit
- Changes the topic to the last invite message received
RELM
%gUsage%n: %W/%nrelm %Y<%Cnick%G|%Bchannel%Y>%n
- Redirects last received message to %Y<%Cnick%G|%Bchannel%Y>%n
If invoked with -l, the last 10 messages received are listed
-l # will display message number #
RELMT
%gUsage%n: %W/%nrelmt %Y<%Cnick%G|%Bchannel%Y>%n
- Changes the topic to the last received message
RELN
%gUsage%n: %W/%nreln %Y<%Cnick%G|%Bchannel%Y>%n
- Redirects last received notice to %Y<%Cnick%G|%Bchannel%Y>%n
If invoked with -l, the last 10 messages received are listed
-l # will display message number #
RELNT
%gUsage%n: %W/%nrelnt
- Changes the topic to the last notice received
RELOAD
%gUsage%n: %W/%nreload
- Reloads BitchX.sav file
RELS
%gUsage%n: %W/%nrels %Y<%Cnick%G|%Bchannel%Y>%n
- Redirects last received server notice to %Y<%Cnick%G|%Bchannel%Y>%n
If invoked with -l, the last 10 messages received are listed
-l # will display message number #
RELSMT
%gUsage%n: %W/%nrelsmt
- Changes the topic to the last message issued by you
RELSNT
%gUsage%n: %W/%nrelsnt
- Changes the topic to the last notice issued by you
RELST
%gUsage%n: %W/%nrelst
- Displays the last topic issued by you
RELSTT
%gUsage%n: %W/%nrelstt
- Changes the topic to the last topic issued by you
RELSW
%gUsage%n: %W/%nrelsw
- Sorry, no help is available for this command yet
RELSWT
%gUsage%n: %W/%nrelswt
- Sorry, no help is available for this command yet
RELT
%gUsage%n: %W/%nrelt
- Displays the current topic in the current channel
RELW
%gUsage%n: %W/%nrelw
- Displays the last wallop message received
RELWT
%gUsage%n: %W/%nrelwt
- Changes the topic to the last wallop message received
RELSM
%gUsage%n: %W/%nrelsm %Y<%Cnick%G|%Bchannel%Y>%n
- Redirects last sent message to %Y<%Cnick%G|%Bchannel%Y>%n
RELSN
%gUsage%n: %W/%nrelsn %Y<%Cnick%G|%Bchannel%Y>%n
- Redirects last sent notice to %Y<%Cnick%G|%Bchannel%Y>%n
REMLOG
%gUsage%n: %W/%nremlog
- Removes logfile
REPEAT
%gUsage%n: %W/%nrepeat %Y<%ntimes%Y>%n %Y<%ncommand%Y>%n
- Repeats %Y<%ntimes%Y>%n %Y<%ncommand%Y>%n
REQUEST
%gUsage%n: %W/%nrequest %Y<%Cnick%G|%Bchannel%Y>%n %Y<%nrequest%Y>%n
- Sends CTCP %Y<%nrequest%Y>%n to %Y<%Cnick%G|%Bchannel%Y>%n
RESET
%gUsage%n: %W/%nreset
- Fixes flashed terminals
SAVE
%gUsage%n: %W/%nsave
- Save all settings and lists to ~/.BitchX/BitchX.sav
- See Also %YSAVELIST%n, %YSAVEIRC%n
SAVELIST
See %YSAVE%n
SAVEIRC
%gUsage%n: %W/%nsaveirc
- Save settings to ~/.bitchxrc
SAVEALL
- See %YSAVE%n
SCAN
%gUsage%n: %W/%nscan %R[%Bchannel%R]%n
- Scans %R[%Bchannel%R]%n or current channel for all nicks
SCANN
%gUsage%n: %W/%nscann %R[%Bchannel%R]%n
- Scans %R[%Bchannel%R]%n or current channel for nicks with no ops
SCANO
%gUsage%n: %W/%nscano %R[%Bchannel%R]%n
- Scans %R[%Bchannel%R]%n or current channel for nicks with ops
SCANV
%gUsage%n: %W/%nscanv %R[%Bchannel%R]%n
- Scans %R[%Bchannel%R]%n or current channel for nicks with voice
SERVER
%gUsage%n: %W/%nserver %Y<%nserver%Y>%n
- Changes to %Y<%nserver%Y>%n
SET
%gUsage%n: %W/%nset %Y<%Pcommand%Y>%n %R[%nvalue%R]%n
- Set %Y<%Pcommand%Y>%p with the value of %R[%nvalue%R]%n
%Y<%Pcommands%Y>%n:
ANNOY_KICK AOP AUTO_CK AUTOKICK_ON_VERSION
AUTO_NSLOOKUP AUTO_UMARK_AWAY AUTO_WHO_ON_JOIN
AUTO_WHOWAS BEEP_WHEN_AWAY BITCHX_HELP CDCC_FLOOD_AFTER
CDCC_FLOOD_RATE CDCC_SECURITY CLOAK CTCP_DELAY
CTCP_FLOOD_PROTECTION CTOOLZ_DIR DCC_AUTOGET
DCC_DLDIR DCC_GET_LIMIT DCC_SEND_LIMIT DCC_QUEUE_LIMIT
FLOOD_AFTER FLOOD_KICK FLOOD_PROTECTION
FLOOD_RATE FLOOD_USERS FLOOD_WARNING HACKPASS
HARD_UH_NOTIFY IDENT_HACK IDLE_CHECK KICK_OPS
KILL_LOGFILE LLOOK LLOOK_DELAY LONG_MSG
MAX_AUTOGET_SIZE MAX_DEOPS MAX_IDLEKICKS MIRCS
MODE_STRIPPER MSGCOUNT MSGLOG MSGLOGFILE
NAMES_ON_JOIN NEXT_SERVER_ON_LOCAL_KILL NO_CTCP_FLOOD
NUM_BANMODES NUM_OPMODES PING_TYPE PROTECT_CHANNELS
PUBLOGSTR REASONFILE REASON_TYPE SAVEFILE
SCRIPT_HELP SEND_AWAY_MSG SEND_IGNORE_MSG SHITLIST_REASON
SHOW_FAKES SHOW_SERVER_CRAP SHOW_SERVER_KILLS
SHOW_TOOMANY SHOW_UNAUTHS SHOW_WHO_HOPCOUNT
USE_FAKE_HOST VERBOSE_CTCP WARN_OF_IGNORES
_CDCC_CLOSE_IDLE_SEND_TIME _CDCC_MINSPEED_TIME
%RIGNORE_TIME CPU_SAVER_AFTER CPU_SAVER_EVERY AUTO_COMP_CHAR
AUTO_UNBAN APPEND_LOG DCC_FAST
See %YCSET%n for commands which can be set through %YSET%n and have a
global channel effect instead of one channel effect via %YCSET%n
SET ANNOY_KICK
%gUsage%n: %W/%nset annoy_kick
- Sorry, no help is available for this command yet
SET APPEND_LOG
%gUsage%n: %W/%nset append_log
- Should we append to the away log or overwrite when we open it.
SET AOP
%gUsage%n: %W/%nset aop
- Sorry, no help is available for this command yet
SET AUTO_CK
%gUsage%n: %W/%nset auto_ck
- Sorry, no help is available for this command yet
SET AUTOKICK_ON_VERSION
%gUsage%n: %W/%nset autokick_on_version %Y<%non%G|%noff%Y>%n
- Set this to %Y<%non%G|%noff%Y>%n whether to kick the nick who CTCP VERSION you
SET AUTO_NSLOOKUP
%gUsage%n: %W/%nset auto_nslookup
- Sorry, no help is available for this command yet
SET AUTO_UMARK_AWAY
%gUsage%n: %W/%nset auto_umark_away
- Sorry, no help is available for this command yet
SET AUTO_WHO_ON_JOIN
%gUsage%n: %W/%nset auto_who_on_join
- Sorry, no help is available for this command yet
SET AUTO_WHOWAS
%gUsage%n: %W/%nset auto_whowas
- Sorry, no help is available for this command yet
SET BEEP_WHEN_AWAY
%gUsage%n: %W/%nset beep_when_away
- Sorry, no help is available for this command yet
SET BITCHX_HELP
%gUsage%n: %W/%nset bitchx_help %Y<%nlocation%Y>%n
- Sets the %Y<%nlocation%Y>%n of BitchX.help file
SET CDCC_FLOOD_AFTER
%gUsage%n: %W/%nset cdcc_flood_after
- Sorry, no help is available for this command yet
SET CDCC_FLOOD_RATE
%gUsage%n: %W/%nset cdcc_flood_rate
- Sorry, no help is available for this command yet
SET CDCC_SECURITY
%gUsage%n: %W/%nset cdcc_security
- Sorry, no help is available for this command yet
SET CLOAK
%gUsage%n: %W/%nset cloak
- Sorry, no help is available for this command yet
SET CTCP_DELAY
%gUsage%n: %W/%nset ctcp_delay
- Sorry, no help is available for this command yet
SET CTCP_FLOOD_PROTECTION
%gUsage%n: %W/%nset ctcp_flood_protection
- Sorry, no help is available for this command yet
SET CTOOLZ_DIR
%gUsage%n: %W/%nset ctoolz_dir
- Sorry, no help is available for this command yet
SET DCC_AUTOGET
%gUsage%n: %W/%nset dcc_autoget
- Sorry, no help is available for this command yet
SET DCC_DLDIR
%gUsage%n: %W/%nset dcc_dldir
- Sorry, no help is available for this command yet
SET DCC_GET_LIMIT
%gUsage%n: %W/%nset dcc_get_limit
- Sorry, no help is available for this command yet
SET DCC_SEND_LIMIT
%gUsage%n: %W/%nset dcc_send_limit
- Sorry, no help is available for this command yet
SET DCC_QUEUE_LIMIT
%gUsage%n: %W/%nset dcc_queue_limit
- Sorry, no help is available for this command yet
SET FLOOD_AFTER
%gUsage%n: %W/%nset flood_after