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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523
|
# United States English language file.
#
# (C) 2003-2014 Anope Team
# Contact us at team@anope.org
#
# Please read COPYING and README for further details.
#
# Based on the original code of Epona by Lara.
# Based on the original code of Services by Andy Church.
#
# When translating this file to another language, keep in mind that the
# order of parameters for sprintf() is fixed in the source code, so your
# messages need to take the same parameters in the same order as the
# English messages do. (Obviously, this doesn't hold for the strftime()
# format lines immediately below.) If you can't get a natural translation
# of a message without changing the order of the parameters, let us know
# (team@anope.org) which message is causing a problem and I'll see
# what I can do.
#
# In help messages, "%S" (capital S, not lowercase) refers to the name of
# the service sending the message; for example, in NickServ help messages,
# "%S" is replaced by "NickServ" (or whatever it is renamed to in
# services.conf). The %S's do not count as sprintf() parameters, so they can be
# rearranged, removed, or added as necessary.
#
# Also in help messages, please try to limit line lengths to 60 characters
# of text (not including the leading tab). This length was chosen because
# it does not cause line wrap under default settings on most current IRC
# clients. Remember that format characters (control-B, control-_) are not
# included in that 60-character limit (since they don't show on the user's
# screen). Also remember that format specifiers (%S, etc.) will expand
# when displayed, so remember to take this into account; you can assume
# that the length of a pseudoclient name (%S replacement) will be eight
# characters, so reduce the maximum line length by 6 for every %S on a
# line.
#
# Finally, remember to put a tab at the beginning of every line of text
# (including empty lines). This has to be a tab, not spaces.
###########################################################################
#
# Name of this language
#
###########################################################################
# For languages other than English, this string should have the following
# format:
# language-name-in-language (language-name-in-English)
# For example, "Espa�l (Spanish)" or "Fran�is (French)".
LANG_NAME
English
###########################################################################
#
# General messages
#
###########################################################################
# strftime() format strings. man 3 strftime for information on the
# meanings of the format specifiers. Short version:
# %a = weekday name (short) %H = hour
# %b = month name (short) %M = minute
# %d = day of month %S = second
# %Y = year %Z = time zone
# This is used as the format string for strftime() for a date and time
# together.
STRFTIME_DATE_TIME_FORMAT
%b %d %H:%M:%S %Y %Z
# This is used as the format string for strftime() for a date alone in long
# format (English: including weekday).
STRFTIME_LONG_DATE_FORMAT
%a %b %d %Y
# This is used as the format string for strftime() for a date alone in
# short format (English: without weekday).
STRFTIME_SHORT_DATE_FORMAT
%b %d %Y
# These tell our strftime() what the names of months and days are. If you
# don't use %a, %A, %b, or %B in your strftime() strings above, you can
# leave these empty. However, if you enter names, they MUST stay in order,
# one per line, and the list MUST be complete!
# %a
STRFTIME_DAYS_SHORT
Sun
Mon
Tue
Wed
Thu
Fri
Sat
# %A
STRFTIME_DAYS_LONG
Sunday
Monday
Tuesday
Wednesday
Thursday
Friday
Saturday
# %b
STRFTIME_MONTHS_SHORT
Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
# %B
STRFTIME_MONTHS_LONG
January
February
March
April
May
June
July
August
September
October
November
December
# This is used in ChanServ/NickServ INFO displays.
COMMA_SPACE
,
# Various error messages.
USER_RECORD_NOT_FOUND
Internal error - unable to process request.
UNKNOWN_COMMAND
Unknown command %s.
UNKNOWN_COMMAND_HELP
Unknown command %s. "%R%s HELP" for help.
SYNTAX_ERROR
Syntax: %s
MORE_INFO
%R%s HELP %s for more information.
NO_HELP_AVAILABLE
No help available for %s.
OBSOLETE_COMMAND
This command is obsolete; use %s instead.
BAD_USERHOST_MASK
Mask must be in the form user@host.
BAD_EXPIRY_TIME
Invalid expiry time.
USERHOST_MASK_TOO_WIDE
%s coverage is too wide; Please use a more specific mask.
SERVICE_OFFLINE
%s is currently offline.
READ_ONLY_MODE
Notice: Services is in read-only mode; changes will not be saved!
PASSWORD_INCORRECT
Password incorrect.
INVALID_TARGET
"/msg %s" is no longer supported. Use "/msg %s@%s" or "/%s" instead.
# What's the difference between "Access denied" and "Permission denied"?
# Very little; you can safely make them the same message with no real loss
# of meaning. If you want to make a distinction, "Access denied" is
# usually used more generally; for example, a non-oper trying to access
# OperServ gets "Access denied", while a non-Services admin trying to use
# NickServ SASET NOEXPIRE gets "Permission denied".
ACCESS_DENIED
Access denied.
PERMISSION_DENIED
Permission denied.
RAW_DISABLED
The RAW option has been disabled. If you must use it, configure the DisableRaw directive in Services configuration.
MORE_OBSCURE_PASSWORD
Please try again with a more obscure password. Passwords should be at least five characters long, should not be something easily guessed (e.g. your real name or your nick), and cannot contain the space or tab characters.
PASSWORD_TOO_LONG
Your password is too long. Please try again with a shorter password.
NICK_NOT_REGISTERED
Your nick isn't registered.
NICK_NOT_REGISTERED_HELP
Your nick isn't registered. Type %R%s HELP for information on registering your nickname.
NICK_X_IS_SERVICES
Nick %s is part of this Network's Services.
NICK_X_NOT_REGISTERED
Nick %s isn't registered.
NICK_X_IN_USE
Nick %s is currently in use.
NICK_X_NOT_IN_USE
Nick %s isn't currently in use.
NICK_X_NOT_ON_CHAN
%s is not currently on channel %s.
NICK_X_FORBIDDEN
Nick %s may not be registered or used.
NICK_X_FORBIDDEN_OPER
Nick %s has been forbidden by %s:
%s
NICK_X_ILLEGAL
Nick %s is an illegal nickname and cannot be used.
NICK_X_TRUNCATED
Nick %s was truncated to %d characters.
NICK_X_SUSPENDED
Nick %s is currently suspended.
CHAN_X_NOT_REGISTERED
Channel %s isn't registered.
CHAN_X_NOT_IN_USE
Channel %s doesn't exist.
CHAN_X_FORBIDDEN
Channel %s may not be registered or used.
CHAN_X_FORBIDDEN_OPER
Channel %s has been forbidden by %s:
%s
CHAN_X_SUSPENDED
Suspended: [%s] %s
NICK_IDENTIFY_REQUIRED
Password authentication required for that command.
Retry after typing %R%s IDENTIFY password.
CHAN_IDENTIFY_REQUIRED
Password authentication required for that command.
Retry after typing %R%s IDENTIFY %s password.
MAIL_DISABLED
Services have been configured to not send mail.
MAIL_INVALID
E-mail for %s is invalid.
MAIL_X_INVALID
%s is not a valid e-mail address.
MAIL_LATER
Cannot send mail now; please retry a little later.
MAIL_DELAYED
Please wait %d seconds and retry.
NO_REASON
No reason
UNKNOWN
<unknown>
# Duration system
DURATION_DAY
1 day
DURATION_DAYS
%d days
DURATION_HOUR
1 hour
DURATION_HOURS
%d hours
DURATION_MINUTE
1 minute
DURATION_MINUTES
%d minutes
DURATION_SECOND
1 second
DURATION_SECONDS
%d seconds
# Human readable expiration
NO_EXPIRE
does not expire
EXPIRES_SOON
expires at next database update
EXPIRES_M
expires in %d minutes
EXPIRES_1M
expires in %d minute
EXPIRES_HM
expires in %d hours, %d minutes
EXPIRES_H1M
expires in %d hours, %d minute
EXPIRES_1HM
expires in %d hour, %d minutes
EXPIRES_1H1M
expires in %d hour, %d minute
EXPIRES_D
expires in %d days
EXPIRES_1D
expires in %d day
# Generic Footer message
END_OF_ANY_LIST
End of %s list.
# Generic List error messages
LIST_INCORRECT_RANGE
Incorrect range specified. The correct syntax is #from-to.
CS_LIST_INCORRECT_RANGE
To search for channels starting with #, search for the channel
name without the #-sign prepended (anope instead of #anope).
# Generic help limited to messages
HELP_LIMIT_SERV_OPER
Limited to Services Operators.
HELP_LIMIT_SERV_ADMIN
Limited to Services Administrators.
HELP_LIMIT_SERV_ROOT
Limited to Services Roots.
HELP_LIMIT_IRC_OPER
Limited to IRC Operators.
HELP_LIMIT_HOST_SETTER
Limited to Host Setters.
HELP_LIMIT_HOST_REMOVER
Limited to Host Removers.
###########################################################################
#
# NickServ messages
#
###########################################################################
# Automatic messages
NICK_IS_REGISTERED
This nick is owned by someone else. Please choose another.
(If this is your nick, type %R%s IDENTIFY password.)
NICK_IS_SECURE
This nickname is registered and protected. If it is your
nick, type %R%s IDENTIFY password. Otherwise,
please choose a different nick.
NICK_MAY_NOT_BE_USED
This nickname may not be used. Please choose another one.
FORCENICKCHANGE_IN_1_MINUTE
If you do not change within one minute, I will change your nick.
FORCENICKCHANGE_IN_20_SECONDS
If you do not change within 20 seconds, I will change your nick.
FORCENICKCHANGE_NOW
This nickname has been registered; you may not use it.
FORCENICKCHANGE_CHANGING
Your nickname is now being changed to %s
# REGISTER responses
NICK_REGISTER_SYNTAX
REGISTER password [email]
NICK_REGISTER_SYNTAX_EMAIL
REGISTER password email
NICK_REGISTRATION_DISABLED
Sorry, nickname registration is temporarily disabled.
NICK_REGISTRATION_FAILED
Sorry, registration failed.
NICK_REG_PLEASE_WAIT
Please wait %d seconds before using the REGISTER command again.
NICK_CANNOT_BE_REGISTERED
Nickname %s may not be registered.
NICK_ALREADY_REGISTERED
Nickname %s is already registered!
NICK_REGISTERED
Nickname %s registered under your account: %s
NICK_REGISTERED_NO_MASK
Nickname %s registered.
NICK_PASSWORD_IS
Your password is %s - remember this for later use.
NICK_REG_DELAY
You must have been using this nick for at least %d seconds to register.
# GROUP responses
NICK_GROUP_SYNTAX
GROUP target password
NICK_GROUP_DISABLED
Sorry, nickname grouping is temporarily disabled.
NICK_GROUP_FAILED
Sorry, grouping failed.
NICK_GROUP_PLEASE_WAIT
Please wait %d seconds before using the GROUP command again.
NICK_GROUP_CHANGE_DISABLED
Your nick is already registered; type %R%s DROP first.
NICK_GROUP_SAME
You are already a member of the group of %s.
NICK_GROUP_TOO_MANY
There are too many nicks in %s's group; list them and drop some.
Type %R%s HELP GLIST and %R%s HELP DROP
for more information.
NICK_GROUP_JOINED
You are now in the group of %s.
# IDENTIFY responses
NICK_IDENTIFY_SYNTAX
IDENTIFY password
NICK_IDENTIFY_FAILED
Sorry, identification failed.
NICK_IDENTIFY_SUCCEEDED
Password accepted - you are now recognized.
NICK_IDENTIFY_EMAIL_REQUIRED
You must now supply an e-mail for your nick.
This e-mail will allow you to retrieve your password in
case you forget it.
NICK_IDENTIFY_EMAIL_HOWTO
Type %R%S SET EMAIL e-mail in order to set your e-mail.
Your privacy is respected; this e-mail won't be given to
any third-party person.
NICK_ALREADY_IDENTIFIED
You are already identified.
# UPDATE responses
NICK_UPDATE_SUCCESS
Status updated (memos, vhost, chmodes, flags).
# LOGOUT responses
NICK_LOGOUT_SYNTAX
LOGOUT
NICK_LOGOUT_SUCCEEDED
Your nick has been logged out.
NICK_LOGOUT_X_SUCCEEDED
Nick %s has been logged out.
NICK_LOGOUT_SERVICESADMIN
Can't logout %s because he's a services administrator.
# DROP responses
NICK_DROP_DISABLED
Sorry, nickname de-registration is temporarily disabled.
NICK_DROPPED
Your nickname has been dropped.
NICK_X_DROPPED
Nickname %s has been dropped.
# SET responses
NICK_SET_SYNTAX
SET option parameters
NICK_SET_SERVADMIN_SYNTAX
SET [nick] option parameters
NICK_SET_DISABLED
Sorry, nickname option setting is temporarily disabled.
NICK_SET_UNKNOWN_OPTION
Unknown SET option %s.
NICK_SET_OPTION_DISABLED
Option %s cannot be set on this network.
# SET DISPLAY responses
NICK_SET_DISPLAY_INVALID
The new display MUST be a nickname of your nickname group!
NICK_SET_DISPLAY_CHANGED
The new display is now %s.
# SET PASSWORD responses
NICK_SET_PASSWORD_FAILED
Sorry, couldn't change password.
NICK_SET_PASSWORD_CHANGED
Password changed.
NICK_SET_PASSWORD_CHANGED_TO
Password changed to %s.
# SET LANGUAGE responses
NICK_SET_LANGUAGE_SYNTAX
SET LANGUAGE number
NICK_SET_LANGUAGE_UNKNOWN
Unknown language number %d. Type %R%s HELP SET LANGUAGE for a list of languages.
NICK_SET_LANGUAGE_CHANGED
Language changed to English.
# SET URL responses
NICK_SET_URL_CHANGED
URL changed to %s.
NICK_SET_URL_UNSET
URL unset.
# SET EMAIL responses
NICK_SET_EMAIL_CHANGED
E-mail address changed to %s.
NICK_SET_EMAIL_UNSET
E-mail address unset.
NICK_SET_EMAIL_UNSET_IMPOSSIBLE
You cannot unset the e-mail on this network.
# SET ICQ responses
NICK_SET_ICQ_CHANGED
ICQ number set to %s.
NICK_SET_ICQ_UNSET
ICQ number unset.
NICK_SET_ICQ_INVALID
%s is not a valid number.
# SET GREET responses
NICK_SET_GREET_CHANGED
Greet message changed to %s.
NICK_SET_GREET_UNSET
Greet message unset.
# SET PROTECT responses
NICK_SET_KILL_SYNTAX
SET KILL {ON | QUICK | OFF}
NICK_SET_KILL_IMMED_SYNTAX
SET KILL {ON | QUICK | IMMED | OFF}
NICK_SET_KILL_ON
Protection is now ON.
NICK_SET_KILL_QUICK
Protection is now ON, with a reduced delay.
NICK_SET_KILL_IMMED
Protection is now ON, with no delay.
NICK_SET_KILL_IMMED_DISABLED
The IMMED option is not available on this network.
NICK_SET_KILL_OFF
Protection is now OFF.
# SET SECURE responses
NICK_SET_SECURE_SYNTAX
SET SECURE {ON | OFF}
NICK_SET_SECURE_ON
Secure option is now ON.
NICK_SET_SECURE_OFF
Secure option is now OFF.
# SET PRIVATE responses
NICK_SET_PRIVATE_SYNTAX
SET PRIVATE {ON | OFF}
NICK_SET_PRIVATE_ON
Private option is now ON.
NICK_SET_PRIVATE_OFF
Private option is now OFF.
# SET HIDE responses
NICK_SET_HIDE_SYNTAX
SET HIDE {EMAIL | USERMASK | QUIT} {ON | OFF}
NICK_SET_HIDE_EMAIL_ON
Your E-mail address will now be hidden from %s INFO displays.
NICK_SET_HIDE_EMAIL_OFF
Your E-mail address will now be shown in %s INFO displays.
NICK_SET_HIDE_MASK_ON
Your last seen user@host mask will now be hidden from %s INFO displays.
NICK_SET_HIDE_MASK_OFF
Your last seen user@host mask will now be shown in %s INFO displays.
NICK_SET_HIDE_QUIT_ON
Your last quit message will now be hidden from %s INFO displays.
NICK_SET_HIDE_QUIT_OFF
Your last quit message will now be shown in %s INFO displays.
NICK_SET_HIDE_STATUS_ON
Your services access status will now be hidden from %s INFO displays.
NICK_SET_HIDE_STATUS_OFF
Your services access status will now be shown in %s INFO displays.
# SET MSG responses
NICK_SET_MSG_SYNTAX
SET MSG {ON | OFF}
NICK_SET_MSG_ON
Services will now reply to you with messages.
NICK_SET_MSG_OFF
Services will now reply to you with notices.
# SET AUTOOP responses
NICK_SET_AUTOOP_SYNTAX
SET AUTOOP {ON | OFF}
NICK_SET_AUTOOP_ON
Services will now autoop you in channels.
NICK_SET_AUTOOP_OFF
Services will no longer autoop you in channels.
# SASET responses
NICK_SASET_SYNTAX
SASET nickname option parameters
NICK_SASET_DISABLED
Sorry, nickname option setting is temporarily disabled.
NICK_SASET_UNKNOWN_OPTION
Unknown SASET option %s.
NICK_SASET_BAD_NICK
Nickname %s not registered.
NICK_SASET_OPTION_DISABLED
Option %s cannot be set on this network.
# SASET DISPLAY responses
NICK_SASET_DISPLAY_INVALID
The new display for %s MUST be a nickname of the nickname group!
NICK_SASET_DISPLAY_CHANGED
The new display is now %s.
# SASET PASSWORD responses
NICK_SASET_PASSWORD_FAILED
Sorry, couldn't change password for %s.
NICK_SASET_PASSWORD_CHANGED
Password for %s changed.
NICK_SASET_PASSWORD_CHANGED_TO
Password for %s changed to %s.
# SASET URL responses
NICK_SASET_URL_CHANGED
URL for %s changed to %s.
NICK_SASET_URL_UNSET
URL %s unset.
# SASET EMAIL responses
NICK_SASET_EMAIL_CHANGED
E-mail address for %s changed to %s.
NICK_SASET_EMAIL_UNSET
E-mail address for %s unset.
NICK_SASET_EMAIL_UNSET_IMPOSSIBLE
You cannot unset the e-mail on this network.
# SASET ICQ responses
NICK_SASET_ICQ_CHANGED
ICQ number for %s set to %s.
NICK_SASET_ICQ_UNSET
ICQ number for %s unset.
NICK_SASET_ICQ_INVALID
%s is not a valid number.
# SASET GREET responses
NICK_SASET_GREET_CHANGED
Greet message for %s changed to %s.
NICK_SASET_GREET_UNSET
Greet message for %s unset.
# SASET PROTECT responses
NICK_SASET_KILL_SYNTAX
SASET nickname KILL {ON | QUICK | OFF}
NICK_SASET_KILL_IMMED_SYNTAX
SASET nickname KILL {ON | QUICK | IMMED | OFF}
NICK_SASET_KILL_ON
Protection is now ON for %s.
NICK_SASET_KILL_QUICK
Protection is now ON for %s, with a reduced delay.
NICK_SASET_KILL_IMMED
Protection is now ON for %s, with no delay.
NICK_SASET_KILL_IMMED_DISABLED
The IMMED option is not available on this network.
NICK_SASET_KILL_OFF
Protection is now OFF for %s.
# SASET SECURE responses
NICK_SASET_SECURE_SYNTAX
SASET nickname SECURE {ON | OFF}
NICK_SASET_SECURE_ON
Secure option is now ON for %s.
NICK_SASET_SECURE_OFF
Secure option is now OFF for %s.
# SASET PRIVATE responses
NICK_SASET_PRIVATE_SYNTAX
SASET nickname PRIVATE {ON | OFF}
NICK_SASET_PRIVATE_ON
Private option is now ON for %s.
NICK_SASET_PRIVATE_OFF
Private option is now OFF for %s.
# SASET HIDE responses
NICK_SASET_HIDE_SYNTAX
SASET nickname HIDE {EMAIL | USERMASK | QUIT} {ON | OFF}
NICK_SASET_HIDE_EMAIL_ON
The E-mail address of %s will now be hidden from %s INFO displays.
NICK_SASET_HIDE_EMAIL_OFF
The E-mail address of %s will now be shown in %s INFO displays.
NICK_SASET_HIDE_MASK_ON
The last seen user@host mask of %s will now be hidden from %s INFO displays.
NICK_SASET_HIDE_MASK_OFF
The last seen user@host mask of %s will now be shown in %s INFO displays.
NICK_SASET_HIDE_QUIT_ON
The last quit message of %s will now be hidden from %s INFO displays.
NICK_SASET_HIDE_QUIT_OFF
The last quit message of %s will now be shown in %s INFO displays.
NICK_SASET_HIDE_STATUS_ON
The services access status of %s will now be hidden from %s INFO displays.
NICK_SASET_HIDE_STATUS_OFF
The services access status of %s will now be shown in %s INFO displays.
# SASET MSG responses
NICK_SASET_MSG_SYNTAX
SASET nickname MSG {ON | OFF}
NICK_SASET_MSG_ON
Services will now reply to %s with messages.
NICK_SASET_MSG_OFF
Services will now reply to %s with notices.
# SASET NOEXPIRE responses
NICK_SASET_NOEXPIRE_SYNTAX
SASET nickname NOEXPIRE {ON | OFF}
NICK_SASET_NOEXPIRE_ON
Nick %s will not expire.
NICK_SASET_NOEXPIRE_OFF
Nick %s will expire.
# SASET AUTOOP responses
NICK_SASET_AUTOOP_SYNTAX
SASET nickname AUTOOP {ON | OFF}
NICK_SASET_AUTOOP_ON
Services will now autoop %s in channels.
NICK_SASET_AUTOOP_OFF
Services will no longer autoop %s in channels.
# SASET LANGUAGE responses
NICK_SASET_LANGUAGE_SYNTAX
SASET nickname LANGUAGE number
NICK_SASET_LANGUAGE_UNKNOWN
Unknown language number %d. Type %R%s HELP SET LANGUAGE for a list of languages.
NICK_SASET_LANGUAGE_CHANGED
Language for %s changed to %s.
# ACCESS responses
NICK_ACCESS_SYNTAX
ACCESS {ADD | DEL | LIST} [mask]
NICK_ACCESS_ALREADY_PRESENT
Mask %s already present on your access list.
NICK_ACCESS_REACHED_LIMIT
Sorry, you can only have %d access entries for a nickname.
NICK_ACCESS_ADDED
%s added to your access list.
NICK_ACCESS_NOT_FOUND
%s not found on your access list.
NICK_ACCESS_DELETED
%s deleted from your access list.
NICK_ACCESS_LIST
Access list:
NICK_ACCESS_LIST_X
Access list for %s:
NICK_ACCESS_LIST_EMPTY
Your access list is empty.
NICK_ACCESS_LIST_X_EMPTY
Access list for %s is empty.
# Status messages
NICK_STATUS_0
STATUS %s 0
NICK_STATUS_1
STATUS %s 1
NICK_STATUS_2
STATUS %s 2
NICK_STATUS_3
STATUS %s 3
# INFO responses
NICK_INFO_SYNTAX
INFO nick [ALL]
NICK_INFO_REALNAME
%s is %s
NICK_INFO_SERVICES_OPER
%s is a services operator.
NICK_INFO_SERVICES_ADMIN
%s is a services admin.
NICK_INFO_SERVICES_ROOT
%s is a services root administrator.
NICK_INFO_ADDRESS
Last seen address: %s
NICK_INFO_ADDRESS_ONLINE
Is online from: %s
NICK_INFO_ADDRESS_ONLINE_NOHOST
%s is currently online.
NICK_INFO_TIME_REGGED
Time registered: %s
NICK_INFO_LAST_SEEN
Last seen time: %s
NICK_INFO_LAST_QUIT
Last quit message: %s
NICK_INFO_URL
URL: %s
NICK_INFO_EMAIL
E-mail address: %s
NICK_INFO_VHOST
vhost: %s
NICK_INFO_VHOST2
vhost: %s@%s
NICK_INFO_ICQ
ICQ #: %d
NICK_INFO_GREET
Greet message: %s
NICK_INFO_OPTIONS
Options: %s
NICK_INFO_EXPIRE
Expires on: %s
# These strings MUST NOT be empty
NICK_INFO_OPT_KILL
Protection
NICK_INFO_OPT_SECURE
Security
NICK_INFO_OPT_PRIVATE
Private
NICK_INFO_OPT_MSG
Message mode
NICK_INFO_OPT_AUTOOP
Auto-op
NICK_INFO_OPT_NONE
None
NICK_INFO_NO_EXPIRE
This nickname will not expire.
NICK_INFO_FOR_MORE
For more verbose information, type %R%s INFO %s ALL.
NICK_INFO_SUSPENDED
This nickname is currently suspended, reason: %s
NICK_INFO_SUSPENDED_NO_REASON
This nickname is currently suspended
# LIST responses
NICK_LIST_SYNTAX
LIST pattern
NICK_LIST_SERVADMIN_SYNTAX
LIST pattern [FORBIDDEN] [SUSPENDED] [NOEXPIRE] [UNCONFIRMED]
NICK_LIST_HEADER
List of entries matching %s:
NICK_LIST_RESULTS
End of list - %d/%d matches shown.
# ALIST responses
NICK_ALIST_SYNTAX
ALIST nickname
NICK_ALIST_HEADER
Channels that you have access on:
Num Channel Level Description
NICK_ALIST_HEADER_X
Channels that %s has access on:
Num Channel Level Description
NICK_ALIST_XOP_FORMAT
%3d %c%-20s %-8s %s
NICK_ALIST_ACCESS_FORMAT
%3d %c%-20s %-8d %s
NICK_ALIST_FOOTER
End of list - %d/%d channels shown.
# GLIST responses
NICK_GLIST_HEADER
List of nicknames in your group:
NICK_GLIST_HEADER_X
List of nicknames in the group of %s:
NICK_GLIST_FOOTER
%d nicknames in the group.
NICK_GLIST_REPLY
%c%s
NICK_GLIST_REPLY_ADMIN
%c%s (expires in %s)
# RECOVER responses
NICK_RECOVER_SYNTAX
RECOVER nickname [password]
NICK_NO_RECOVER_SELF
You can't recover yourself!
NICK_RECOVERED
User claiming your nick has been killed.
%R%s RELEASE %s to get it back before %s timeout.
# RELEASE responses
NICK_RELEASE_SYNTAX
RELEASE nickname [password]
NICK_RELEASE_NOT_HELD
Nick %s isn't being held.
NICK_RELEASED
Services' hold on your nick has been released.
# GHOST responses
NICK_GHOST_SYNTAX
GHOST nickname [password]
NICK_NO_GHOST_SELF
You can't ghost yourself!
NICK_GHOST_KILLED
Ghost with your nick has been killed.
# GETPASS responses
NICK_GETPASS_SYNTAX
GETPASS nickname
NICK_GETPASS_UNAVAILABLE
GETPASS command unavailable because encryption is in use.
NICK_GETPASS_PASSWORD_IS
Password for %s is %s.
# GETEMAIL responses
NICK_GETEMAIL_SYNTAX
GETEMAIL user@email-host No WildCards!!
NICK_GETEMAIL_EMAILS_ARE
Emails Match %s to %s.
NICK_GETEMAIL_NOT_USED
No Emails listed for %s.
# SENDPASS responses
NICK_SENDPASS_SYNTAX
SENDPASS nickname
NICK_SENDPASS_UNAVAILABLE
SENDPASS command unavailable because encryption is in use.
NICK_SENDPASS_SUBJECT
Nickname password (%s)
NICK_SENDPASS_HEAD
Hi,
NICK_SENDPASS_LINE_1
You have requested to receive the password of nickname %s by e-mail.
NICK_SENDPASS_LINE_2
The password is %s. For security reasons, you should change it as soon as possible.
NICK_SENDPASS_LINE_3
If you don't know why this email has been sent to you, please ignore it.
NICK_SENDPASS_LINE_4
This mailbox is not monitored. Replies to this e-mail will NOT be responded to.
NICK_SENDPASS_LINE_5
Thanks for using %s
NICK_SENDPASS_OK
Password of %s has been sent.
# SUSPEND responses
NICK_SUSPEND_SYNTAX
SUSPEND nickname reason
NICK_SUSPEND_SUCCEEDED
Nick %s is now suspended.
NICK_SUSPEND_FAILED
Couldn't suspend nick %s!
# UNSUSPEND responses
NICK_UNSUSPEND_SYNTAX
UNSUSPEND nickname
NICK_UNSUSPEND_SUCCEEDED
Nick %s is now released.
NICK_UNSUSPEND_FAILED
Couldn't release nick %s!
# FORBID responses
NICK_FORBID_SYNTAX
FORBID nickname [reason]
NICK_FORBID_SYNTAX_REASON
FORBID nickname reason
NICK_FORBID_SUCCEEDED
Nick %s is now forbidden.
NICK_FORBID_FAILED
Couldn't forbid nick %s!
# Nick Registraion responses
NICK_REQUESTED
This nick has already been requested, please check your e-mail address for the pass code
NICK_REG_RESENT
Your passcode has been re-sent to %s.
NICK_REG_UNABLE
Nick NOT registered, please try again later.
NICK_IS_PREREG
This nick is awaiting an e-mail verification code before completing registration.
NICK_ENTER_REG_CODE
A passcode has been sent to %s, please type %R%s confirm <passcode> to complete registration
NICK_CONFIRM_NOT_FOUND
Registration step 1 may have expired, please use "%R%s register <password> <email>" first.
NICK_CONFIRM_INVALID
Invalid passcode has been entered, please check the e-mail again, and retry
NICK_REG_MAIL_SUBJECT
Nickname Registration (%s)
NICK_REG_MAIL_HEAD
Hi,
NICK_REG_MAIL_LINE_1
You have requested to register the nickname "%s".
NICK_REG_MAIL_LINE_2
Please type " %R%s confirm %s " into your IRC client to complete the registration.
NICK_REG_MAIL_LINE_3
If you don't know why this mail has been sent to you, please ignore it.
NICK_REG_MAIL_LINE_4
This mailbox is not monitored. Replies to this e-mail will NOT get responded to.
NICK_REG_MAIL_LINE_5
Thanks for using %s
NICK_GETPASS_PASSCODE_IS
Passcode for %s is %s.
NICK_FORCE_REG
Nickname %s confirmed
###########################################################################
#
# ChanServ messages
#
###########################################################################
# Access level descriptions
CHAN_LEVEL_AUTOOP
Automatic channel operator status
CHAN_LEVEL_AUTOVOICE
Automatic mode +v
CHAN_LEVEL_AUTOHALFOP
Automatic mode +h
CHAN_LEVEL_AUTOPROTECT
Automatic mode +a
CHAN_LEVEL_AUTODEOP
Channel operator status disallowed
CHAN_LEVEL_NOJOIN
Not allowed to join channel
CHAN_LEVEL_INVITE
Allowed to use INVITE command
CHAN_LEVEL_AKICK
Allowed to use AKICK command
CHAN_LEVEL_SET
Allowed to use SET command (not FOUNDER/PASSWORD)
CHAN_LEVEL_CLEAR
Allowed to use CLEAR command
CHAN_LEVEL_UNBAN
Allowed to use UNBAN command
CHAN_LEVEL_OPDEOP
Allowed to use OP/DEOP commands
CHAN_LEVEL_ACCESS_LIST
Allowed to view the access list
CHAN_LEVEL_ACCESS_CHANGE
Allowed to modify the access list
CHAN_LEVEL_MEMO
Allowed to list/read channel memos
CHAN_LEVEL_ASSIGN
Allowed to assign/unassign a bot
CHAN_LEVEL_BADWORDS
Allowed to use BADWORDS command
CHAN_LEVEL_NOKICK
Never kicked by the bot's kickers
CHAN_LEVEL_FANTASIA
Allowed to use fantaisist commands
CHAN_LEVEL_SAY
Allowed to use SAY and ACT commands
CHAN_LEVEL_GREET
Greet message displayed
CHAN_LEVEL_VOICEME
Allowed to (de)voice him/herself
CHAN_LEVEL_VOICE
Allowed to use VOICE/DEVOICE commands
CHAN_LEVEL_GETKEY
Allowed to use GETKEY command
CHAN_LEVEL_OPDEOPME
Allowed to (de)op him/herself
CHAN_LEVEL_HALFOPME
Allowed to (de)halfop him/herself
CHAN_LEVEL_HALFOP
Allowed to use HALFOP/DEHALFOP commands
CHAN_LEVEL_PROTECTME
Allowed to (de)protect him/herself
CHAN_LEVEL_PROTECT
Allowed to use PROTECT/DEPROTECT commands
CHAN_LEVEL_KICKME
Allowed to kick him/herself
CHAN_LEVEL_KICK
Allowed to use KICK command
CHAN_LEVEL_SIGNKICK
No signed kick when SIGNKICK LEVEL is used
CHAN_LEVEL_BANME
Allowed to ban him/herself
CHAN_LEVEL_BAN
Allowed to use BAN command
CHAN_LEVEL_TOPIC
Allowed to use TOPIC command
CHAN_LEVEL_INFO
Allowed to use INFO command with ALL option
# Automatic responses
CHAN_IS_REGISTERED
This channel has been registered with %s.
CHAN_NOT_ALLOWED_OP
You are not allowed chanop status on channel %s.
CHAN_MAY_NOT_BE_USED
This channel may not be used.
CHAN_NOT_ALLOWED_TO_JOIN
You are not permitted to be on this channel.
CHAN_X_INVALID
Channel %s is not a valid channel.
# REGISTER responses
CHAN_REGISTER_SYNTAX
REGISTER channel password description
CHAN_REGISTER_DISABLED
Sorry, channel registration is temporarily disabled.
CHAN_REGISTER_NOT_LOCAL
Local channels cannot be registered.
CHAN_MUST_REGISTER_NICK
You must register your nickname first. Type %R%s HELP for information on registering nicknames.
CHAN_MUST_IDENTIFY_NICK
Please identify with %s first, using the command:
%R%s IDENTIFY password
CHAN_MAY_NOT_BE_REGISTERED
Channel %s may not be registered.
CHAN_ALREADY_REGISTERED
Channel %s is already registered!
CHAN_MUST_BE_CHANOP
You must be a channel operator to register the channel.
CHAN_REACHED_CHANNEL_LIMIT
Sorry, you have already reached your limit of %d channels.
CHAN_EXCEEDED_CHANNEL_LIMIT
Sorry, you have already exceeded your limit of %d channels.
CHAN_REGISTRATION_FAILED
Sorry, registration failed.
CHAN_REGISTERED
Channel %s registered under your nickname: %s
CHAN_PASSWORD_IS
Your channel password is %s - remember it for later use.
CHAN_REGISTER_NONE_CHANNEL
You have attempted to register a nonexistent channel %s
CHAN_SYMBOL_REQUIRED
Please use the symbol of # when attempting to register
# IDENTIFY responses
CHAN_IDENTIFY_SYNTAX
IDENTIFY channel password
CHAN_IDENTIFY_FAILED
Sorry, identification failed.
CHAN_IDENTIFY_SUCCEEDED
Password accepted - you now have founder-level access to %s.
# LOGOUT responses
CHAN_LOGOUT_SYNTAX
LOGOUT channel nickname
CHAN_LOGOUT_SERVADMIN_SYNTAX
LOGOUT channel [nickname]
CHAN_LOGOUT_SUCCEEDED
User %s has been logged out of channel %s.
CHAN_LOGOUT_ALL_SUCCEEDED
All users identified have been logged out of channel %s (except the channel founder).
CHAN_LOGOUT_FOUNDER_FAILED
You may not log out of %s (you are founder).
# DROP responses
CHAN_DROP_SYNTAX
DROP channel
CHAN_DROP_DISABLED
Sorry, channel de-registration is temporarily disabled.
CHAN_DROPPED
Channel %s has been dropped.
# SET responses
CHAN_SET_SYNTAX
SET channel option parameters
CHAN_SET_DISABLED
Sorry, channel option setting is temporarily disabled.
CHAN_SET_UNKNOWN_OPTION
Unknown SET option %s.
# SET FOUNDER responses
CHAN_SET_FOUNDER_TOO_MANY_CHANS
%s has too many channels registered.
CHAN_FOUNDER_CHANGED
Founder of %s changed to %s.
# SET SUCCESSOR responses
CHAN_SUCCESSOR_CHANGED
Successor for %s changed to %s.
CHAN_SUCCESSOR_UNSET
Successor for %s unset.
CHAN_SUCCESSOR_IS_FOUNDER
%s cannot be the successor on channel %s because he is its founder.
# SET PASSWORD responses
CHAN_SET_PASSWORD_FAILED
Sorry, couldn't set password.
CHAN_PASSWORD_CHANGED
%s password changed.
CHAN_PASSWORD_CHANGED_TO
%s password changed to %s.
# SET DESC responses
CHAN_DESC_CHANGED
Description of %s changed to %s.
# SET URL responses
CHAN_URL_CHANGED
URL for %s changed to %s.
CHAN_URL_UNSET
URL for %s unset.
# SET EMAIL responses
CHAN_EMAIL_CHANGED
E-mail address for %s changed to %s.
CHAN_EMAIL_UNSET
E-mail address for %s unset.
# SET ENTRYMSG responses
CHAN_ENTRY_MSG_CHANGED
Entry message for %s changed.
CHAN_ENTRY_MSG_UNSET
Entry message for %s unset.
# SET BANTYPE responses
CHAN_SET_BANTYPE_INVALID
%s is not a valid ban type.
CHAN_SET_BANTYPE_CHANGED
Ban type for channel %s is now #%d.
# SET MLOCK responses
CHAN_SET_MLOCK_UNKNOWN_CHAR
Unknown mode character %c ignored.
CHAN_SET_MLOCK_IMPOSSIBLE_CHAR
Mode %c ignored because you can't lock it.
CHAN_SET_MLOCK_L_REQUIRED
You must lock mode +l as well to lock mode +L.
CHAN_SET_MLOCK_K_REQUIRED
You must lock mode +i as well to lock mode +K.
CHAN_MLOCK_CHANGED
Mode lock on channel %s changed to %s.
# SET KEEPTOPIC responses
CHAN_SET_KEEPTOPIC_SYNTAX
SET channel KEEPTOPIC {ON | OFF}
CHAN_SET_KEEPTOPIC_ON
Topic retention option for %s is now ON.
CHAN_SET_KEEPTOPIC_OFF
Topic retention option for %s is now OFF.
# SET TOPICLOCK responses
CHAN_SET_TOPICLOCK_SYNTAX
SET channel TOPICLOCK {ON | OFF}
CHAN_SET_TOPICLOCK_ON
Topic lock option for %s is now ON.
CHAN_SET_TOPICLOCK_OFF
Topic lock option for %s is now OFF.
# SET PEACE responses
CHAN_SET_PEACE_SYNTAX
SET channel PEACE {ON | OFF}
CHAN_SET_PEACE_ON
Peace option for %s is now ON.
CHAN_SET_PEACE_OFF
Peace option for %s is now OFF.
# SET PRIVATE responses
CHAN_SET_PRIVATE_SYNTAX
SET channel PRIVATE {ON | OFF}
CHAN_SET_PRIVATE_ON
Private option for %s is now ON.
CHAN_SET_PRIVATE_OFF
Private option for %s is now OFF.
# SET SECUREOPS responses
CHAN_SET_SECUREOPS_SYNTAX
SET channel SECUREOPS {ON | OFF}
CHAN_SET_SECUREOPS_ON
Secure ops option for %s is now ON.
CHAN_SET_SECUREOPS_OFF
Secure ops option for %s is now OFF.
# SET SECUREFOUNDER responses
CHAN_SET_SECUREFOUNDER_SYNTAX
SET channel SECUREFOUNDER {ON | OFF}
CHAN_SET_SECUREFOUNDER_ON
Secure founder option for %s is now ON.
CHAN_SET_SECUREFOUNDER_OFF
Secure founder option for %s is now OFF.
# SET RESTRICTED responses
CHAN_SET_RESTRICTED_SYNTAX
SET channel RESTRICTED {ON | OFF}
CHAN_SET_RESTRICTED_ON
Restricted access option for %s is now ON.
CHAN_SET_RESTRICTED_OFF
Restricted access option for %s is now OFF.
# SET SECURE responses
CHAN_SET_SECURE_SYNTAX
SET channel SECURE {ON | OFF}
CHAN_SET_SECURE_ON
Secure option for %s is now ON.
CHAN_SET_SECURE_OFF
Secure option for %s is now OFF.
# SET SIGNKICK responses
CHAN_SET_SIGNKICK_SYNTAX
SET channel SIGNKICK {ON | LEVEL | OFF}
CHAN_SET_SIGNKICK_ON
Signed kick option for %s is now ON.
CHAN_SET_SIGNKICK_LEVEL
Signed kick option for %s is now ON, but depends of the
level of the user that is using the command.
CHAN_SET_SIGNKICK_OFF
Signed kick option for %s is now OFF.
# SET OPNOTICE responses
CHAN_SET_OPNOTICE_SYNTAX
SET channel OPNOTICE {ON | OFF}
CHAN_SET_OPNOTICE_ON
Op-notice option for %s is now ON.
CHAN_SET_OPNOTICE_OFF
Op-notice option for %s is now OFF.
# SET XOP responses
CHAN_SET_XOP_SYNTAX
SET channel XOP {ON | OFF}
CHAN_SET_XOP_ON
xOP lists system for %s is now ON.
CHAN_SET_XOP_OFF
xOP lists system for %s is now OFF.
# SET NOEXPIRE responses
CHAN_SET_NOEXPIRE_SYNTAX
SET channel NOEXPIRE {ON | OFF}
CHAN_SET_NOEXPIRE_ON
Channel %s will not expire.
CHAN_SET_NOEXPIRE_OFF
Channel %s will expire.
# xOP messages
CHAN_XOP_REACHED_LIMIT
Sorry, you can only have %d AOP/SOP/VOP entries on a channel.
CHAN_XOP_LIST_FORMAT
%3d %s
CHAN_XOP_ACCESS
You can't use this command. Use the ACCESS command instead.
Type %R%s HELP ACCESS for more information.
CHAN_XOP_NOT_AVAILABLE
xOP system is not available.
# AOP messages
CHAN_AOP_SYNTAX
AOP channel {ADD|DEL|LIST|CLEAR} [nick | entry-list]
CHAN_AOP_DISABLED
Sorry, channel AOP list modification is temporarily disabled.
CHAN_AOP_NICKS_ONLY
Channel AOP lists may only contain registered nicknames.
CHAN_AOP_ADDED
%s added to %s AOP list.
CHAN_AOP_MOVED
%s moved to %s AOP list.
CHAN_AOP_NO_SUCH_ENTRY
No such entry (#%d) on %s AOP list.
CHAN_AOP_NOT_FOUND
%s not found on %s AOP list.
CHAN_AOP_NO_MATCH
No matching entries on %s AOP list.
CHAN_AOP_DELETED
%s deleted from %s AOP list.
CHAN_AOP_DELETED_ONE
Deleted 1 entry from %s AOP list.
CHAN_AOP_DELETED_SEVERAL
Deleted %d entries from %s AOP list.
CHAN_AOP_LIST_EMPTY
%s AOP list is empty.
CHAN_AOP_LIST_HEADER
AOP list for %s:
Num Nick
CHAN_AOP_CLEAR
Channel %s AOP list has been cleared.
# HOP messages
CHAN_HOP_SYNTAX
HOP channel {ADD|DEL|LIST|CLEAR} [nick | entry-list]
CHAN_HOP_DISABLED
Sorry, channel HOP list modification is temporarily disabled.
CHAN_HOP_NICKS_ONLY
Channel HOP lists may only contain registered nicknames.
CHAN_HOP_ADDED
%s added to %s HOP list.
CHAN_HOP_MOVED
%s moved to %s HOP list.
CHAN_HOP_NO_SUCH_ENTRY
No such entry (#%d) on %s HOP list.
CHAN_HOP_NOT_FOUND
%s not found on %s HOP list.
CHAN_HOP_NO_MATCH
No matching entries on %s HOP list.
CHAN_HOP_DELETED
%s deleted from %s HOP list.
CHAN_HOP_DELETED_ONE
Deleted 1 entry from %s HOP list.
CHAN_HOP_DELETED_SEVERAL
Deleted %d entries from %s HOP list.
CHAN_HOP_LIST_EMPTY
%s HOP list is empty.
CHAN_HOP_LIST_HEADER
HOP list for %s:
Num Nick
CHAN_HOP_CLEAR
Channel %s HOP list has been cleared.
# SOP messages
CHAN_SOP_SYNTAX
SOP channel {ADD|DEL|LIST|CLEAR} [nick | entry-list]
CHAN_SOP_DISABLED
Sorry, channel SOP list modification is temporarily disabled.
CHAN_SOP_NICKS_ONLY
Channel SOP lists may only contain registered nicknames.
CHAN_SOP_ADDED
%s added to %s SOP list.
CHAN_SOP_MOVED
%s moved to %s SOP list.
CHAN_SOP_NO_SUCH_ENTRY
No such entry (#%d) on %s SOP list.
CHAN_SOP_NOT_FOUND
%s not found on %s SOP list.
CHAN_SOP_NO_MATCH
No matching entries on %s SOP list.
CHAN_SOP_DELETED
%s deleted from %s SOP list.
CHAN_SOP_DELETED_ONE
Deleted 1 entry from %s SOP list.
CHAN_SOP_DELETED_SEVERAL
Deleted %d entries from %s SOP list.
CHAN_SOP_LIST_EMPTY
%s SOP list is empty.
CHAN_SOP_LIST_HEADER
SOP list for %s:
Num Nick
CHAN_SOP_CLEAR
Channel %s SOP list has been cleared.
# VOP messages
CHAN_VOP_SYNTAX
VOP channel {ADD|DEL|LIST|CLEAR} [nick | entry-list]
CHAN_VOP_DISABLED
Sorry, channel VOP list modification is temporarily disabled.
CHAN_VOP_NICKS_ONLY
Channel VOP lists may only contain registered nicknames.
CHAN_VOP_ADDED
%s added to %s VOP list.
CHAN_VOP_MOVED
%s moved to %s VOP list.
CHAN_VOP_NO_SUCH_ENTRY
No such entry (#%d) on %s VOP list.
CHAN_VOP_NOT_FOUND
%s not found on %s VOP list.
CHAN_VOP_NO_MATCH
No matching entries on %s VOP list.
CHAN_VOP_DELETED
%s deleted from %s VOP list.
CHAN_VOP_DELETED_ONE
Deleted 1 entry from %s VOP list.
CHAN_VOP_DELETED_SEVERAL
Deleted %d entries from %s VOP list.
CHAN_VOP_LIST_EMPTY
%s VOP list is empty.
CHAN_VOP_LIST_HEADER
VOP list for %s:
Num Nick
CHAN_VOP_CLEAR
Channel %s VOP list has been cleared.
# ACCESS messages
CHAN_ACCESS_SYNTAX
ACCESS channel {ADD|DEL|LIST|CLEAR} [nick [level] | entry-list]
CHAN_ACCESS_XOP
You can't use this command.
Use the AOP, SOP and VOP commands instead.
Type %R%s HELP command for more information.
CHAN_ACCESS_XOP_HOP
You can't use this command.
Use the AOP, SOP, HOP and VOP commands instead.
Type %R%s HELP command for more information.
CHAN_ACCESS_DISABLED
Sorry, channel access list modification is temporarily disabled.
CHAN_ACCESS_LEVEL_NONZERO
Access level must be non-zero.
CHAN_ACCESS_LEVEL_RANGE
Access level must be between %d and %d inclusive.
CHAN_ACCESS_NICKS_ONLY
Channel access lists may only contain registered nicknames.
CHAN_ACCESS_REACHED_LIMIT
Sorry, you can only have %d access entries on a channel.
CHAN_ACCESS_LEVEL_UNCHANGED
Access level for %s on %s unchanged from %d.
CHAN_ACCESS_LEVEL_CHANGED
Access level for %s on %s changed to %d.
CHAN_ACCESS_ADDED
%s added to %s access list at level %d.
CHAN_ACCESS_NO_SUCH_ENTRY
No such entry (#%d) on %s access list.
CHAN_ACCESS_NOT_FOUND
%s not found on %s access list.
CHAN_ACCESS_NO_MATCH
No matching entries on %s access list.
CHAN_ACCESS_DELETED
%s deleted from %s access list.
CHAN_ACCESS_DELETED_ONE
Deleted 1 entry from %s access list.
CHAN_ACCESS_DELETED_SEVERAL
Deleted %d entries from %s access list.
CHAN_ACCESS_LIST_EMPTY
%s access list is empty.
CHAN_ACCESS_LIST_HEADER
Access list for %s:
Num Lev Nick
CHAN_ACCESS_LIST_FOOTER
End of access list.
CHAN_ACCESS_LIST_XOP_FORMAT
%3d %s %s
CHAN_ACCESS_LIST_AXS_FORMAT
%3d %4d %s
CHAN_ACCESS_CLEAR
Channel %s access list has been cleared.
# AKICK responses
CHAN_AKICK_SYNTAX
AKICK channel {ADD | STICK | UNSTICK | DEL | LIST | VIEW | ENFORCE | CLEAR} [nick-or-usermask] [reason]
CHAN_AKICK_DISABLED
Sorry, channel autokick list modification is temporarily disabled.
CHAN_AKICK_ALREADY_EXISTS
%s already exists on %s autokick list.
CHAN_AKICK_REACHED_LIMIT
Sorry, you can only have %d autokick masks on a channel.
CHAN_AKICK_ADDED
%s added to %s autokick list.
CHAN_AKICK_NO_SUCH_ENTRY
No such entry (#%d) on %s autokick list.
CHAN_AKICK_NOT_FOUND
%s not found on %s autokick list.
CHAN_AKICK_NO_MATCH
No matching entries on %s autokick list.
CHAN_AKICK_STUCK
%s is now always active on channel %s.
CHAN_AKICK_UNSTUCK
%s is not always active anymore on channel %s.
CHAN_AKICK_DELETED
%s deleted from %s autokick list.
CHAN_AKICK_DELETED_ONE
Deleted 1 entry from %s autokick list.
CHAN_AKICK_DELETED_SEVERAL
Deleted %d entries from %s autokick list.
CHAN_AKICK_LIST_EMPTY
%s autokick list is empty.
CHAN_AKICK_LIST_HEADER
Autokick list for %s:
CHAN_AKICK_LIST_FORMAT
%3d %s (%s)
CHAN_AKICK_VIEW_FORMAT
%3d %s (by %s on %s)
%s
CHAN_AKICK_VIEW_FORMAT_STUCK
%3d %s (stuck) (by %s on %s)
%s
CHAN_AKICK_ENFORCE_DONE
AKICK ENFORCE for %s complete; %d users were affected.
CHAN_AKICK_CLEAR
Channel %s akick list has been cleared.
# LEVELS responses
CHAN_LEVELS_SYNTAX
LEVELS channel {SET | DIS[ABLE] | LIST | RESET} [item [level]]
CHAN_LEVELS_XOP
Levels are not available as xOP is enabled on this channel.
CHAN_LEVELS_RANGE
Level must be between %d and %d inclusive.
CHAN_LEVELS_CHANGED
Level for %s on channel %s changed to %d.
CHAN_LEVELS_UNKNOWN
Setting %s not known. Type %R%s HELP LEVELS DESC for a list of valid settings.
CHAN_LEVELS_DISABLED
%s disabled on channel %s.
CHAN_LEVELS_LIST_HEADER
Access level settings for channel %s:
CHAN_LEVELS_LIST_DISABLED
%-*s (disabled)
CHAN_LEVELS_LIST_FOUNDER
%-*s (founder only)
CHAN_LEVELS_LIST_NORMAL
%-*s %d
CHAN_LEVELS_RESET
Access levels for %s reset to defaults.
# Status Messages
CHAN_STATUS_SYNTAX
STATUS ERROR Syntax error
CHAN_STATUS_NOT_REGGED
STATUS ERROR Channel %s not registered
CHAN_STATUS_FORBIDDEN
STATUS ERROR Channel %s forbidden
CHAN_STATUS_NOTONLINE
STATUS ERROR Nick %s not online
CHAN_STATUS_INFO
STATUS %s %s %d
# INFO responses
CHAN_INFO_SYNTAX
INFO channel [ALL]
CHAN_INFO_HEADER
Information for channel %s:
CHAN_INFO_FOUNDER
Founder: %s (%s)
CHAN_INFO_NO_FOUNDER
Founder: %s
CHAN_INFO_SUCCESSOR
Successor: %s (%s)
CHAN_INFO_NO_SUCCESSOR
Successor: %s
CHAN_INFO_DESCRIPTION
Description: %s
CHAN_INFO_ENTRYMSG
Entry message: %s
CHAN_INFO_TIME_REGGED
Registered: %s
CHAN_INFO_LAST_USED
Last used: %s
CHAN_INFO_LAST_TOPIC
Last topic: %s
CHAN_INFO_TOPIC_SET_BY
Topic set by: %s
CHAN_INFO_URL
URL: %s
CHAN_INFO_EMAIL
E-mail address: %s
CHAN_INFO_BANTYPE
Ban type: %d
CHAN_INFO_OPTIONS
Options: %s
CHAN_INFO_OPT_KEEPTOPIC
Topic Retention
CHAN_INFO_OPT_OPNOTICE
OP Notice
CHAN_INFO_OPT_PEACE
Peace
CHAN_INFO_OPT_PRIVATE
Private
CHAN_INFO_OPT_RESTRICTED
Restricted Access
CHAN_INFO_OPT_SECURE
Secure
CHAN_INFO_OPT_SECUREOPS
Secure Ops
CHAN_INFO_OPT_SECUREFOUNDER
Secure Founder
CHAN_INFO_OPT_SIGNKICK
Signed kicks
CHAN_INFO_OPT_TOPICLOCK
Topic Lock
CHAN_INFO_OPT_XOP
xOP lists system
CHAN_INFO_OPT_NONE
None
CHAN_INFO_MODE_LOCK
Mode lock: %s
CHAN_INFO_EXPIRE
Expires on: %s
CHAN_INFO_NO_EXPIRE
This channel will not expire.
# LIST responses
CHAN_LIST_SYNTAX
LIST pattern
CHAN_LIST_SERVADMIN_SYNTAX
LIST pattern [FORBIDDEN] [SUSPENDED] [NOEXPIRE]
CHAN_LIST_HEADER
List of entries matching %s:
CHAN_LIST_FORMAT
%-20s %s
CHAN_LIST_END
End of list - %d/%d matches shown.
# INVITE responses
CHAN_INVITE_SYNTAX
INVITE channel
# UNBAN responses
CHAN_UNBAN_SYNTAX
UNBAN channel
CHAN_UNBANNED
You have been unbanned from %s.
# TOPIC responses
CHAN_TOPIC_SYNTAX
TOPIC channel [topic]
# CLEAR responses
CHAN_CLEAR_SYNTAX
CLEAR channel what
CHAN_CLEARED_BANS
All bans on channel %s have been removed.
CHAN_CLEARED_EXCEPTS
All excepts on channel %s have been removed.
CHAN_CLEARED_MODES
All modes on channel %s have been reset.
CHAN_CLEARED_OPS
Mode +o has been cleared from channel %s.
CHAN_CLEARED_HOPS
Mode +h has been cleared from channel %s.
CHAN_CLEARED_VOICES
Mode +v has been cleared from channel %s.
CHAN_CLEARED_USERS
All users have been kicked from channel %s.
CHAN_CLEARED_INVITES
All invites on channel %s have been removed.
# GETPASS responses
CHAN_GETPASS_SYNTAX
GETPASS channel
CHAN_GETPASS_UNAVAILABLE
GETPASS command unavailable because encryption is in use.
CHAN_GETPASS_PASSWORD_IS
Password for channel %s is %s.
# GETKEY responses
CHAN_GETKEY_SYNTAX
GETKEY channel
CHAN_GETKEY_NOKEY
The channel %s has no key.
CHAN_GETKEY_KEY
KEY %s %s
# SENDPASS responses
CHAN_SENDPASS_SYNTAX
SENDPASS channel
CHAN_SENDPASS_UNAVAILABLE
SENDPASS command unavailable because encryption is in use.
CHAN_SENDPASS_SUBJECT
Channel password (%s)
CHAN_SENDPASS_HEAD
Hi,
CHAN_SENDPASS_LINE_1
You have requested to receive the password of channel %s by e-mail.
CHAN_SENDPASS_LINE_2
The password is %s. For security reasons, you should change it as soon as possible.
CHAN_SENDPASS_LINE_3
If you don't know why this mail has been sent to you, please ignore it.
CHAN_SENDPASS_LINE_4
This mailbox is not monitored. Replies to this e-mail will NOT be responded to.
CHAN_SENDPASS_LINE_5
Thanks for using %s
CHAN_SENDPASS_OK
Password of %s has been sent.
# FORBID responses
CHAN_FORBID_SYNTAX
FORBID channel [reason]
CHAN_FORBID_SYNTAX_REASON
FORBID channel reason
CHAN_FORBID_SUCCEEDED
Channel %s is now forbidden.
CHAN_FORBID_FAILED
Couldn't forbid channel %s!
CHAN_FORBID_REASON
This channel has been forbidden.
# SUSPEND responses
CHAN_SUSPEND_SYNTAX
SUSPEND channel [reason]
CHAN_SUSPEND_SYNTAX_REASON
SUSPEND channel reason
CHAN_SUSPEND_SUCCEEDED
Channel %s is now suspended.
CHAN_SUSPEND_FAILED
Couldn't suspended channel %s!
CHAN_SUSPEND_REASON
This channel has been suspended.
# UNSUSPEND responses
CHAN_UNSUSPEND_SYNTAX
UNSUSPEND channel
CHAN_UNSUSPEND_ERROR
No # found in front of channel name.
CHAN_UNSUSPEND_SUCCEEDED
Channel %s is now released.
CHAN_UNSUSPEND_FAILED
Couldn't release channel %s!
# Misc responses
CHAN_EXCEPTED
%s matches an except on %s and cannot be banned until the except have been removed.
###########################################################################
#
# MemoServ messages
#
###########################################################################
# Automatic messages
MEMO_HAVE_NEW_MEMO
You have 1 new memo.
MEMO_HAVE_NEW_MEMOS
You have %d new memos.
MEMO_TYPE_READ_LAST
Type %R%s READ LAST to read it.
MEMO_TYPE_READ_NUM
Type %R%s READ %d to read it.
MEMO_TYPE_LIST_NEW
Type %R%s LIST NEW to list them.
MEMO_AT_LIMIT
Warning: You have reached your maximum number of memos (%d). You will be unable to receive any new memos until you delete some of your current ones.
MEMO_OVER_LIMIT
Warning: You are over your maximum number of memos (%d). You will be unable to receive any new memos until you delete some of your current ones.
MEMO_X_MANY_NOTICE
There are %d memos on channel %s.
MEMO_X_ONE_NOTICE
There is %d memo on channel %s.
MEMO_NEW_X_MEMO_ARRIVED
There is a new memo on channel %s.
Type %R%s READ %s %d to read it.
MEMO_NEW_MEMO_ARRIVED
You have a new memo from %s.
Type %R%s READ %d to read it.
# Multi-use responses
MEMO_HAVE_NO_MEMOS
You have no memos.
MEMO_X_HAS_NO_MEMOS
%s has no memos.
MEMO_DOES_NOT_EXIST
Memo %d does not exist!
MEMO_LIST_NOT_FOUND
No matching memos found.
# SEND responses
MEMO_SEND_SYNTAX
SEND {nick | channel} memo-text
MEMO_SEND_DISABLED
Sorry, memo sending is temporarily disabled.
MEMO_SEND_PLEASE_WAIT
Please wait %d seconds before using the SEND command again.
MEMO_X_GETS_NO_MEMOS
%s cannot receive memos.
MEMO_X_HAS_TOO_MANY_MEMOS
%s currently has too many memos and cannot receive more.
MEMO_SENT
Memo sent to %s.
MEMO_MASS_SENT
A massmemo has been sent to all registered users.
# STAFF responses
MEMO_STAFF_SYNTAX
STAFF memo-text
# CANCEL responses
MEMO_CANCEL_SYNTAX
CANCEL {nick | channel}
MEMO_CANCEL_DISABLED
Sorry, memo canceling is temporarily disabled.
MEMO_CANCEL_NONE
No memo was cancelable.
MEMO_CANCELLED
Last memo to %s has been cancelled.
# LIST responses
MEMO_LIST_SYNTAX
LIST [channel] [list | NEW]
MEMO_HAVE_NO_NEW_MEMOS
You have no new memos.
MEMO_X_HAS_NO_NEW_MEMOS
%s has no new memos.
MEMO_LIST_MEMOS
Memos for %s. To read, type: %R%s READ num
MEMO_LIST_NEW_MEMOS
New memos for %s. To read, type: %R%s READ num
MEMO_LIST_CHAN_MEMOS
Memos for %s. To read, type: %R%s READ %s num
MEMO_LIST_CHAN_NEW_MEMOS
New memos for %s. To read, type: %R%s READ %s num
MEMO_LIST_HEADER
Num Sender Date/Time
MEMO_LIST_FORMAT
%c%3d %-16s %s
# READ responses
MEMO_READ_SYNTAX
READ [channel] {list | LAST | NEW}
MEMO_HEADER
Memo %d from %s (%s). To delete, type: %R%s DEL %d
MEMO_CHAN_HEADER
Memo %d from %s (%s). To delete, type: %R%s DEL %s %d
MEMO_TEXT
%s
# DEL responses
MEMO_DEL_SYNTAX
DEL [channel] {num | list | ALL}
MEMO_DELETED_NONE
No memos were deleted.
MEMO_DELETED_ONE
Memo %d has been deleted.
MEMO_DELETED_SEVERAL
Memos %s have been deleted.
MEMO_DELETED_ALL
All of your memos have been deleted.
MEMO_CHAN_DELETED_ALL
All memos for channel %s have been deleted.
# SET responses
MEMO_SET_SYNTAX
SET option parameters
MEMO_SET_DISABLED
Sorry, memo option setting is temporarily disabled.
MEMO_SET_UNKNOWN_OPTION
Unknown SET option %s.
# SET NOTIFY responses
MEMO_SET_NOTIFY_SYNTAX
SET NOTIFY {ON | LOGON | NEW | MAIL | NOMAIL | OFF}
MEMO_SET_NOTIFY_ON
%s will now notify you of memos when you log on and when they are sent to you.
MEMO_SET_NOTIFY_LOGON
%s will now notify you of memos when you log on or unset /AWAY.
MEMO_SET_NOTIFY_NEW
%s will now notify you of memos when they are sent to you.
MEMO_SET_NOTIFY_OFF
%s will not send you any notification of memos.
MEMO_SET_NOTIFY_MAIL
You will now be informed about new memos via email.
MEMO_SET_NOTIFY_NOMAIL
You will no longer be informed via email.
MEMO_SET_NOTIFY_INVALIDMAIL
There's no email address set for your nick.
# SET LIMIT responses
MEMO_SET_LIMIT_SYNTAX
SET LIMIT [channel] limit
MEMO_SET_LIMIT_SERVADMIN_SYNTAX
SET LIMIT [user | channel] {limit | NONE} [HARD]
MEMO_SET_YOUR_LIMIT_FORBIDDEN
You are not permitted to change your memo limit.
MEMO_SET_LIMIT_FORBIDDEN
The memo limit for %s may not be changed.
MEMO_SET_YOUR_LIMIT_TOO_HIGH
You cannot set your memo limit higher than %d.
MEMO_SET_LIMIT_TOO_HIGH
You cannot set the memo limit for %s higher than %d.
MEMO_SET_LIMIT_OVERFLOW
Memo limit too large; limiting to %d instead.
MEMO_SET_YOUR_LIMIT
Your memo limit has been set to %d.
MEMO_SET_YOUR_LIMIT_ZERO
You will no longer be able to receive memos.
MEMO_UNSET_YOUR_LIMIT
Your memo limit has been disabled.
MEMO_SET_LIMIT
Memo limit for %s set to %d.
MEMO_SET_LIMIT_ZERO
Memo limit for %s set to 0.
MEMO_UNSET_LIMIT
Memo limit disabled for %s.
# INFO responses
MEMO_INFO_SYNTAX
INFO [channel]
MEMO_INFO_SERVADMIN_SYNTAX
INFO [nick | channel]
MEMO_INFO_NO_MEMOS
You currently have no memos.
MEMO_INFO_MEMO
You currently have 1 memo.
MEMO_INFO_MEMO_UNREAD
You currently have 1 memo, and it has not yet been read.
MEMO_INFO_MEMOS
You currently have %d memos.
MEMO_INFO_MEMOS_ONE_UNREAD
You currently have %d memos, of which 1 is unread.
MEMO_INFO_MEMOS_SOME_UNREAD
You currently have %d memos, of which %d are unread.
MEMO_INFO_MEMOS_ALL_UNREAD
You currently have %d memos; all of them are unread.
MEMO_INFO_LIMIT
Your memo limit is %d.
MEMO_INFO_HARD_LIMIT
Your memo limit is %d, and may not be changed.
MEMO_INFO_LIMIT_ZERO
Your memo limit is 0; you will not receive any new memos.
MEMO_INFO_HARD_LIMIT_ZERO
Your memo limit is 0; you will not receive any new memos. You cannot change this limit.
MEMO_INFO_NO_LIMIT
You have no limit on the number of memos you may keep.
MEMO_INFO_NOTIFY_OFF
You will not be notified of new memos.
MEMO_INFO_NOTIFY_ON
You will be notified of new memos at logon and when they arrive.
MEMO_INFO_NOTIFY_RECEIVE
You will be notified when new memos arrive.
MEMO_INFO_NOTIFY_SIGNON
You will be notified of new memos at logon.
MEMO_INFO_X_NO_MEMOS
%s currently has no memos.
MEMO_INFO_X_MEMO
%s currently has 1 memo.
MEMO_INFO_X_MEMO_UNREAD
%s currently has 1 memo, and it has not yet been read.
MEMO_INFO_X_MEMOS
%s currently has %d memos.
MEMO_INFO_X_MEMOS_ONE_UNREAD
%s currently has %d memos, of which 1 is unread.
MEMO_INFO_X_MEMOS_SOME_UNREAD
%s currently has %d memos, of which %d are unread.
MEMO_INFO_X_MEMOS_ALL_UNREAD
%s currently has %d memos; all of them are unread.
MEMO_INFO_X_LIMIT
%s's memo limit is %d.
MEMO_INFO_X_HARD_LIMIT
%s's memo limit is %d, and may not be changed.
MEMO_INFO_X_NO_LIMIT
%s has no memo limit.
MEMO_INFO_X_NOTIFY_OFF
%s is not notified of new memos.
MEMO_INFO_X_NOTIFY_ON
%s is notified of new memos at logon and when they arrive.
MEMO_INFO_X_NOTIFY_RECEIVE
%s is notified when new memos arrive.
MEMO_INFO_X_NOTIFY_SIGNON
%s is notified of news memos at logon.
# Memo2Mail responses
MEMO_MAIL_SUBJECT
New memo
MEMO_MAIL_TEXT1
Hi %s
MEMO_MAIL_TEXT2
You have just received a new memo from %s. This is memo number %d.
MEMO_MAIL_TEXT3
The text of the memo is:
# RSEND responses
MEMO_RSEND_PLEASE_WAIT
Please wait %d seconds before using the RSEND command again.
MEMO_RSEND_DISABLED
Sorry, RSEND has been disabled on this network.
MEMO_RSEND_SYNTAX
RSEND {nick | channel} memo-text
MEMO_RSEND_NICK_MEMO_TEXT
[auto-memo] The memo you sent has been viewed.
MEMO_RSEND_CHAN_MEMO_TEXT
[auto-memo] The memo you sent to %s has been viewed.
MEMO_RSEND_USER_NOTIFICATION
A notification memo has been sent to %s informing him/her you have
read his/her memo.
# CHECK responses
MEMO_CHECK_SYNTAX
CHECK nickname
MEMO_CHECK_NOT_READ
The last memo you sent to %s (sent on %s) has not yet been read.
MEMO_CHECK_READ
The last memo you sent to %s (sent on %s) has been read.
MEMO_CHECK_NO_MEMO
Nick %s doesn't have a memo from you.
MEMO_NO_RSEND_SELF
You can not request a receipt when sending a memo to yourself.
###########################################################################
#
# BotServ messages
#
###########################################################################
# Standard responses
BOT_DOES_NOT_EXIST
Bot %s does not exist.
BOT_NOT_ASSIGNED
You must assign a bot to the channel before using this command.
Type %R%S HELP ASSIGN for more information.
BOT_NOT_ON_CHANNEL
Bot is not on channel %s.
# Kick reasons (must be a single line)
BOT_REASON_BADWORD
Don't use the word "%s" on this channel!
BOT_REASON_BADWORD_GENTLE
Watch your language!
BOT_REASON_BOLD
Don't use bolds on this channel!
BOT_REASON_CAPS
Turn caps lock OFF!
BOT_REASON_COLOR
Don't use colors on this channel!
BOT_REASON_FLOOD
Stop flooding!
BOT_REASON_REPEAT
Stop repeating yourself!
BOT_REASON_REVERSE
Don't use reverses on this channel!
BOT_REASON_UNDERLINE
Don't use underlines on this channel!
# !seen replies
BOT_SEEN_BOT
You found me, %s!
BOT_SEEN_YOU
Looking for yourself, eh %s?
BOT_SEEN_ON_CHANNEL
%s is on the channel right now!
BOT_SEEN_ON_CHANNEL_AS
%s is on the channel right now (as %s) !
BOT_SEEN_ON
%s was last seen here %s ago.
BOT_SEEN_NEVER
I've never seen %s on this channel.
BOT_SEEN_UNKNOWN
I don't know who %s is.
# BOT responses
BOT_BOT_SYNTAX
BOT ADD nick user host real
BOT CHANGE oldnick newnick [user [host [real]]]
BOT DEL nick
BOT_BOT_ALREADY_EXISTS
Bot %s already exists.
BOT_BOT_CREATION_FAILED
Sorry, bot creation failed.
BOT_BOT_READONLY
Sorry, bot modification is temporarily disabled.
BOT_BOT_ADDED
%s!%s@%s (%s) added to the bot list.
BOT_BOT_ANY_CHANGES
Old info is equal to the new one.
BOT_BOT_CHANGED
Bot %s has been changed to %s!%s@%s (%s)
BOT_BOT_DELETED
Bot %s has been deleted.
# BOTLIST responses
BOT_BOTLIST_HEADER
Bot list:
BOT_BOTLIST_PRIVATE_HEADER
Bots reserved to IRC operators:
BOT_BOTLIST_FOOTER
%d bots available.
BOT_BOTLIST_EMPTY
There are no bots available at this time.
Ask a Services admin to create one!
# ASSIGN responses
BOT_ASSIGN_SYNTAX
ASSIGN chan nick
BOT_ASSIGN_READONLY
Sorry, bot assignment is temporarily disabled.
BOT_ASSIGN_ALREADY
Bot %s is already assigned to channel %s.
BOT_ASSIGN_ASSIGNED
Bot %s has been assigned to %s.
# UNASSIGN responses
BOT_UNASSIGN_SYNTAX
UNASSIGN chan
BOT_UNASSIGN_UNASSIGNED
There is no bot assigned to %s anymore.
# INFO responses
BOT_INFO_SYNTAX
INFO {chan | nick}
BOT_INFO_NOT_FOUND
%s is not a valid bot or registered channel.
BOT_INFO_BOT_HEADER
Information for bot %s:
BOT_INFO_BOT_MASK
Mask : %s@%s
BOT_INFO_BOT_REALNAME
Real name : %s
BOT_INFO_BOT_CREATED
Created : %s
BOT_INFO_BOT_USAGE
Used on : %d channel(s)
BOT_INFO_BOT_OPTIONS
Options : %s
BOT_INFO_OPT_PRIVATE
Private
BOT_INFO_CHAN_HEADER
Information for channel %s:
BOT_INFO_CHAN_BOT
Bot nick : %s
BOT_INFO_CHAN_BOT_NONE
Bot nick : not assigned yet.
BOT_INFO_CHAN_KICK_BADWORDS
Bad words kicker : %s
BOT_INFO_CHAN_KICK_BADWORDS_BAN
Bad words kicker : %s (%d kick(s) to ban)
BOT_INFO_CHAN_KICK_BOLDS
Bolds kicker : %s
BOT_INFO_CHAN_KICK_BOLDS_BAN
Bolds kicker : %s (%d kick(s) to ban)
BOT_INFO_CHAN_KICK_CAPS_ON
Caps kicker : %s (minimum %d/%d%%)
BOT_INFO_CHAN_KICK_CAPS_BAN
Caps kicker : %s (%d kick(s) to ban; minimum %d/%d%%)
BOT_INFO_CHAN_KICK_CAPS_OFF
Caps kicker : %s
BOT_INFO_CHAN_KICK_COLORS
Colors kicker : %s
BOT_INFO_CHAN_KICK_COLORS_BAN
Colors kicker : %s (%d kick(s) to ban)
BOT_INFO_CHAN_KICK_FLOOD_ON
Flood kicker : %s (%d lines in %ds)
BOT_INFO_CHAN_KICK_FLOOD_BAN
Flood kicker : %s (%d kick(s) to ban; %d lines in %ds)
BOT_INFO_CHAN_KICK_FLOOD_OFF
Flood kicker : %s
BOT_INFO_CHAN_KICK_REPEAT_ON
Repeat kicker : %s (%d times)
BOT_INFO_CHAN_KICK_REPEAT_BAN
Repeat kicker : %s (%d kick(s) to ban; %d times)
BOT_INFO_CHAN_KICK_REPEAT_OFF
Repeat kicker : %s
BOT_INFO_CHAN_KICK_REVERSES
Reverses kicker : %s
BOT_INFO_CHAN_KICK_REVERSES_BAN
Reverses kicker : %s (%d kick(s) to ban)
BOT_INFO_CHAN_KICK_UNDERLINES
Underlines kicker : %s
BOT_INFO_CHAN_KICK_UNDERLINES_BAN
Underlines kicker : %s (%d kick(s) to ban)
BOT_INFO_ACTIVE
enabled
BOT_INFO_INACTIVE
disabled
BOT_INFO_CHAN_OPTIONS
Options : %s
BOT_INFO_OPT_DONTKICKOPS
Ops protection
BOT_INFO_OPT_DONTKICKVOICES
Voices protection
BOT_INFO_OPT_FANTASY
Fantasy
BOT_INFO_OPT_GREET
Greet
BOT_INFO_OPT_NOBOT
No bot
BOT_INFO_OPT_SYMBIOSIS
Symbiosis
BOT_INFO_OPT_NONE
None
# SET responses
BOT_SET_SYNTAX
SET (channel | bot) option settings
BOT_SET_DISABLED
Sorry, bot option setting is temporarily disabled.
BOT_SET_UNKNOWN
Unknown option %s.
Type %R%S HELP SET for more information.
# SET DONTKICKOPS messages
BOT_SET_DONTKICKOPS_SYNTAX
SET channel DONTKICKOPS {ON|OFF}
BOT_SET_DONTKICKOPS_ON
Bot won't kick ops on channel %s.
BOT_SET_DONTKICKOPS_OFF
Bot will kick ops on channel %s.
# SET DONTKICKVOICES messages
BOT_SET_DONTKICKVOICES_SYNTAX
SET channel DONTKICKVOICES {ON|OFF}
BOT_SET_DONTKICKVOICES_ON
Bot won't kick voices on channel %s.
BOT_SET_DONTKICKVOICES_OFF
Bot will kick voices on channel %s.
# SET FANTASY messages
BOT_SET_FANTASY_SYNTAX
SET channel FANTASY {ON|OFF}
BOT_SET_FANTASY_ON
Fantasy mode is now ON on channel %s.
BOT_SET_FANTASY_OFF
Fantasy mode is now OFF on channel %s.
# SET GREET messages
BOT_SET_GREET_SYNTAX
SET channel GREET {ON|OFF}
BOT_SET_GREET_ON
Greet mode is now ON on channel %s.
BOT_SET_GREET_OFF
Greet mode is now OFF on channel %s.
# SET NOBOT
BOT_SET_NOBOT_SYNTAX
SET botname NOBOT {ON|OFF}
BOT_SET_NOBOT_ON
No Bot mode is now ON on channel %s.
BOT_SET_NOBOT_OFF
No Bot mode is now OFF on channel %s.
# SET PRIVATE
BOT_SET_PRIVATE_SYNTAX
SET botname PRIVATE {ON|OFF}
BOT_SET_PRIVATE_ON
Private mode of bot %s is now ON.
BOT_SET_PRIVATE_OFF
Private mode of bot %s is now OFF.
# SET SYMBIOSIS
BOT_SET_SYMBIOSIS_SYNTAX
SET channel SYMBIOSIS {ON|OFF}
BOT_SET_SYMBIOSIS_ON
Symbiosis mode is now ON on channel %s.
BOT_SET_SYMBIOSIS_OFF
Symbiosis mode is now OFF on channel %s.
# KICK responses
BOT_KICK_SYNTAX
KICK channel option {ON|OFF} [settings]
BOT_KICK_DISABLED
Sorry, kicker configuration is temporarily disabled.
BOT_KICK_UNKNOWN
Unknown option %s.
Type %R%S HELP KICK for more information.
BOT_KICK_BAD_TTB
%s cannot be taken as times to ban.
BOT_KICK_BADWORDS_ON
Bot will now kick bad words. Use the BADWORDS command
to add or remove a bad word.
BOT_KICK_BADWORDS_ON_BAN
Bot will now kick bad words, and will place a ban after
%d kicks for the same user. Use the BADWORDS command
to add or remove a bad word.
BOT_KICK_BADWORDS_OFF
Bot won't kick bad words anymore.
BOT_KICK_BOLDS_ON
Bot will now kick bolds.
BOT_KICK_BOLDS_ON_BAN
Bot will now kick bolds, and will place a ban after
%d kicks for the same user.
BOT_KICK_BOLDS_OFF
Bot won't kick bolds anymore.
BOT_KICK_CAPS_ON
Bot will now kick caps (they must constitute at least
%d characters and %d%% of the entire message).
BOT_KICK_CAPS_ON_BAN
Bot will now kick caps (they must constitute at least
%d characters and %d%% of the entire message), and will
place a ban after %d kicks for the same user.
BOT_KICK_CAPS_OFF
Bot won't kick caps anymore.
BOT_KICK_COLORS_ON
Bot will now kick colors.
BOT_KICK_COLORS_ON_BAN
Bot will now kick colors, and will place a ban after %d
kicks for the same user.
BOT_KICK_COLORS_OFF
Bot won't kick colors anymore.
BOT_KICK_FLOOD_ON
Bot will now kick flood (%d lines in %d seconds).
BOT_KICK_FLOOD_ON_BAN
Bot will now kick flood (%d lines in %d seconds), and
will place a ban after %d kicks for the same user.
BOT_KICK_FLOOD_OFF
Bot won't kick flood anymore.
BOT_KICK_REPEAT_ON
Bot will now kick repeats (users that say %d times
the same thing).
BOT_KICK_REPEAT_ON_BAN
Bot will now kick repeats (users that say %d times
the same thing), and will place a ban after %d
kicks for the same user.
BOT_KICK_REPEAT_OFF
Bot won't kick repeats anymore.
BOT_KICK_REVERSES_ON
Bot will now kick reverses.
BOT_KICK_REVERSES_ON_BAN
Bot will now kick reverses, and will place a ban after %d
kicks for the same user.
BOT_KICK_REVERSES_OFF
Bot won't kick reverses anymore.
BOT_KICK_UNDERLINES_ON
Bot will now kick underlines.
BOT_KICK_UNDERLINES_ON_BAN
Bot will now kick underlines, and will place a ban after %d
kicks for the same user.
BOT_KICK_UNDERLINES_OFF
Bot won't kick underlines anymore.
# BADWORDS messages
BOT_BADWORDS_SYNTAX
BADWORDS channel {ADD|DEL|LIST|CLEAR} [word | entry-list] [SINGLE|START|END]
BOT_BADWORDS_DISABLED
Sorry, channel bad words list modification is temporarily disabled.
BOT_BADWORDS_REACHED_LIMIT
Sorry, you can only have %d bad words entries on a channel.
BOT_BADWORDS_ALREADY_EXISTS
%s already exists in %s bad words list.
BOT_BADWORDS_ADDED
%s added to %s bad words list.
BOT_BADWORDS_NO_SUCH_ENTRY
No such entry (#%d) on %s bad words list.
BOT_BADWORDS_NOT_FOUND
%s not found on %s bad words list.
BOT_BADWORDS_NO_MATCH
No matching entries on %s bad words list.
BOT_BADWORDS_DELETED
%s deleted from %s bad words list.
BOT_BADWORDS_DELETED_ONE
Deleted 1 entry from %s bad words list.
BOT_BADWORDS_DELETED_SEVERAL
Deleted %d entries from %s bad words list.
BOT_BADWORDS_LIST_EMPTY
%s bad words list is empty.
BOT_BADWORDS_LIST_HEADER
Bad words list for %s:
Num Word Type
BOT_BADWORDS_LIST_FORMAT
%3d %-30s %s
BOT_BADWORDS_CLEAR
Bad words list is now empty.
# SAY responses
BOT_SAY_SYNTAX
SAY channel text
# ACT responses
BOT_ACT_SYNTAX
ACT channel text
# Errors
BOT_EXCEPT
User matches channel except.
BOT_BAD_NICK
Bot Nicks may only contain valid nick characters.
BOT_BAD_HOST
Bot Hosts may only contain valid host characters.
BOT_BAD_IDENT
Bot Idents may only contain valid characters.
BOT_LONG_IDENT
Bot Idents may only contain %d characters.
BOT_LONG_HOST
Bot Hosts may only contain %d characters.
###########################################################################
#
# OperServ messages
#
###########################################################################
# General messages
OPER_BOUNCY_MODES
Services is unable to change modes. Are your servers configured correctly?
OPER_BOUNCY_MODES_U_LINE
Services is unable to change modes. Are your servers' U:lines configured correctly?
# GLOBAL responses
OPER_GLOBAL_SYNTAX
GLOBAL message
# STATS responses
OPER_STATS_UNKNOWN_OPTION
Unknown STATS option %s.
OPER_STATS_CURRENT_USERS
Current users: %d (%d ops)
OPER_STATS_MAX_USERS
Maximum users: %d (%s)
# This is ugly, but at least it's language-portable...
# Note that you can include seconds in any of these--my personal preference
# is to only give resolution to the nearest minute when uptime is one hour
# or more, but just add a %d to get seconds as well.
OPER_STATS_UPTIME_DHMS
Services up %d days, %02d:%02d
OPER_STATS_UPTIME_1DHMS
Services up %d day, %02d:%02d
OPER_STATS_UPTIME_HMS
Services up %d hours, %d minutes
OPER_STATS_UPTIME_HM1S
Services up %d hours, %d minutes
OPER_STATS_UPTIME_H1MS
Services up %d hours, %d minute
OPER_STATS_UPTIME_H1M1S
Services up %d hours, %d minute
OPER_STATS_UPTIME_1HMS
Services up %d hour, %d minutes
OPER_STATS_UPTIME_1HM1S
Services up %d hour, %d minutes
OPER_STATS_UPTIME_1H1MS
Services up %d hour, %d minute
OPER_STATS_UPTIME_1H1M1S
Services up %d hour, %d minute
OPER_STATS_UPTIME_MS
Services up %d minutes, %d seconds
OPER_STATS_UPTIME_M1S
Services up %d minutes, %d second
OPER_STATS_UPTIME_1MS
Services up %d minute, %d seconds
OPER_STATS_UPTIME_1M1S
Services up %d minute, %d second
OPER_STATS_BYTES_READ
Bytes read : %5d kB
OPER_STATS_BYTES_WRITTEN
Bytes written : %5d kB
OPER_STATS_USER_MEM
User : %6d records, %5d kB
OPER_STATS_CHANNEL_MEM
Channel : %6d records, %5d kB
OPER_STATS_GROUPS_MEM
NS Groups : %6d records, %5d kB
OPER_STATS_ALIASES_MEM
NS Aliases : %6d records, %5d kB
OPER_STATS_CHANSERV_MEM
ChanServ : %6d records, %5d kB
OPER_STATS_BOTSERV_MEM
BotServ : %6d records, %5d kB
OPER_STATS_HOSTSERV_MEM
HostServ : %6d records, %5d kB
OPER_STATS_OPERSERV_MEM
OperServ : %6d records, %5d kB
OPER_STATS_SESSIONS_MEM
Sessions : %6d records, %5d kB
OPER_STATS_AKILL_COUNT
Current number of AKILLs: %d
OPER_STATS_AKILL_EXPIRE_DAYS
Default AKILL expiry time: %d days
OPER_STATS_AKILL_EXPIRE_DAY
Default AKILL expiry time: 1 day
OPER_STATS_AKILL_EXPIRE_HOURS
Default AKILL expiry time: %d hours
OPER_STATS_AKILL_EXPIRE_HOUR
Default AKILL expiry time: 1 hour
OPER_STATS_AKILL_EXPIRE_MINS
Default AKILL expiry time: %d minutes
OPER_STATS_AKILL_EXPIRE_MIN
Default AKILL expiry time: 1 minute
OPER_STATS_AKILL_EXPIRE_NONE
Default AKILL expiry time: No expiration
OPER_STATS_SGLINE_COUNT
Current number of SGLINEs: %d
OPER_STATS_SGLINE_EXPIRE_DAYS
Default SGLINE expiry time: %d days
OPER_STATS_SGLINE_EXPIRE_DAY
Default SGLINE expiry time: 1 day
OPER_STATS_SGLINE_EXPIRE_HOURS
Default SGLINE expiry time: %d hours
OPER_STATS_SGLINE_EXPIRE_HOUR
Default SGLINE expiry time: 1 hour
OPER_STATS_SGLINE_EXPIRE_MINS
Default SGLINE expiry time: %d minutes
OPER_STATS_SGLINE_EXPIRE_MIN
Default SGLINE expiry time: 1 minute
OPER_STATS_SGLINE_EXPIRE_NONE
Default SGLINE expiry time: No expiration
OPER_STATS_SQLINE_COUNT
Current number of SQLINEs: %d
OPER_STATS_SQLINE_EXPIRE_DAYS
Default SQLINE expiry time: %d days
OPER_STATS_SQLINE_EXPIRE_DAY
Default SQLINE expiry time: 1 day
OPER_STATS_SQLINE_EXPIRE_HOURS
Default SQLINE expiry time: %d hours
OPER_STATS_SQLINE_EXPIRE_HOUR
Default SQLINE expiry time: 1 hour
OPER_STATS_SQLINE_EXPIRE_MINS
Default SQLINE expiry time: %d minutes
OPER_STATS_SQLINE_EXPIRE_MIN
Default SQLINE expiry time: 1 minute
OPER_STATS_SQLINE_EXPIRE_NONE
Default SQLINE expiry time: No expiration
OPER_STATS_SZLINE_COUNT
Current number of SZLINEs: %d
OPER_STATS_SZLINE_EXPIRE_DAYS
Default SZLINE expiry time: %d days
OPER_STATS_SZLINE_EXPIRE_DAY
Default SZLINE expiry time: 1 day
OPER_STATS_SZLINE_EXPIRE_HOURS
Default SZLINE expiry time: %d hours
OPER_STATS_SZLINE_EXPIRE_HOUR
Default SZLINE expiry time: 1 hour
OPER_STATS_SZLINE_EXPIRE_MINS
Default SZLINE expiry time: %d minutes
OPER_STATS_SZLINE_EXPIRE_MIN
Default SZLINE expiry time: 1 minute
OPER_STATS_SZLINE_EXPIRE_NONE
Default SZLINE expiry time: No expiration
OPER_STATS_RESET
Statistics reset.
OPER_STATS_UPLINK_SERVER
Uplink server: %s
OPER_STATS_UPLINK_CAPAB
Uplink capab: %s
OPER_STATS_UPLINK_SERVER_COUNT
Servers found: %d
# MODE responses
OPER_MODE_SYNTAX
MODE channel modes
# UMODE respondes
OPER_UMODE_SYNTAX
UMODE nick modes
OPER_UMODE_SUCCESS
Changed usermodes of %s.
OPER_UMODE_CHANGED
%s changed your usermodes.
# OLINE responses
OPER_OLINE_SYNTAX
OLINE nick flags
OPER_OLINE_SUCCESS
Operflags %s have been added for %s.
OPER_OLINE_IRCOP
You are now an IRC Operator.
# CLEARMODES responses
OPER_CLEARMODES_SYNTAX
CLEARMODES channel [ALL]
OPER_CLEARMODES_DONE
Binary modes and bans cleared from channel %s.
OPER_CLEARMODES_ALL_DONE
All modes cleared from channel %s.
# KICK responses
OPER_KICK_SYNTAX
KICK channel user reason
# SVSNICK responses
OPER_SVSNICK_SYNTAX
SVSNICK nick newnick
OPER_SVSNICK_NEWNICK
The nick %s is now being changed to %s.
# ADMIN responses
OPER_ADMIN_SYNTAX
ADMIN {ADD|DEL|LIST|CLEAR} [nick | entry-list]
OPER_ADMIN_SKELETON
Services is in skeleton mode; the ADMIN command is unavailable.
OPER_ADMIN_EXISTS
%s already exists on Services admin list.
OPER_ADMIN_REACHED_LIMIT
Sorry, you can only have %d Services admins.
OPER_ADMIN_ADDED
%s added to Services admin list.
OPER_ADMIN_NOT_FOUND
%s not found on Services admin list.
OPER_ADMIN_NO_MATCH
No matching entries on Services admin list.
OPER_ADMIN_DELETED
%s deleted from Services admin list.
OPER_ADMIN_DELETED_ONE
Deleted 1 entry from Services admin list.
OPER_ADMIN_DELETED_SEVERAL
Deleted %d entries from Services admin list.
OPER_ADMIN_LIST_EMPTY
Services admin list is empty.
OPER_ADMIN_LIST_HEADER
Services admin list:
Num Nick
OPER_ADMIN_LIST_FORMAT
%3d %s
OPER_ADMIN_CLEAR
Services admin list has been cleared.
OPER_ADMIN_MOVED
%s has been moved to Services Administrators list.
# OPER responses
OPER_OPER_SYNTAX
OPER {ADD|DEL|LIST|CLEAR} [nick | entry-list]
OPER_OPER_SKELETON
Services is in skeleton mode; the OPER command is unavailable.
OPER_OPER_EXISTS
%s already exists on Services operator list.
OPER_OPER_REACHED_LIMIT
Sorry, you can only have %d Services operators.
OPER_OPER_ADDED
%s added to Services operator list.
OPER_OPER_NOT_FOUND
%s not found on Services operator list.
OPER_OPER_NO_MATCH
No matching entries on Services operator list.
OPER_OPER_DELETED
%s deleted from Services operator list.
OPER_OPER_DELETED_ONE
Deleted 1 entry from Services operator list.
OPER_OPER_DELETED_SEVERAL
Deleted %d entries from Services operator list.
OPER_OPER_LIST_EMPTY
Services operator list is empty.
OPER_OPER_LIST_HEADER
Services operator list:
Num Nick
OPER_OPER_LIST_FORMAT
%3d %s
OPER_OPER_CLEAR
Services operator list has been cleared.
OPER_OPER_MOVED
%s has been moved to Services Operators list.
# AKILL responses
OPER_AKILL_SYNTAX
AKILL {ADD | DEL | LIST | VIEW | CLEAR} [[+expiry] {mask | entry-list} [reason]]
OPER_AKILL_EXISTS
%s already exists on the AKILL list.
OPER_AKILL_ALREADY_COVERED
%s is already covered by %s.
OPER_AKILL_REACHED_LIMIT
Sorry, you can only have %d AKILLs.
OPER_AKILL_NO_NICK
Reminder: AKILL masks cannot contain nicknames; make sure you have not included a nick portion in your mask.
OPER_AKILL_ADDED
%s added to the AKILL list.
OPER_AKILL_CHANGED
Expiry time of %s changed.
OPER_AKILL_NOT_FOUND
%s not found on the AKILL list.
OPER_AKILL_NO_MATCH
No matching entries on the AKILL list.
OPER_AKILL_DELETED
%s deleted from the AKILL list.
OPER_AKILL_DELETED_ONE
Deleted 1 entry from the AKILL list.
OPER_AKILL_DELETED_SEVERAL
Deleted %d entries from the AKILL list.
OPER_AKILL_LIST_EMPTY
AKILL list is empty.
OPER_AKILL_LIST_HEADER
Current AKILL list:
Num Mask Reason
OPER_AKILL_LIST_FORMAT
%3d %-32s %s
OPER_AKILL_VIEW_HEADER
Current AKILL list:
# number, mask, set-by, set-time, expires, reason
OPER_AKILL_VIEW_FORMAT
%3d %s (by %s on %s; %s)
%s
OPER_AKILL_CLEAR
The AKILL list has been cleared.
OPER_CHANKILL_SYNTAX
CHANKILL [+expiry] {#channel} [reason]
# SGLINE responses
OPER_SGLINE_SYNTAX
SGLINE {ADD | DEL | LIST | VIEW | CLEAR} [[+expiry] {mask | entry-list}[:reason]]
OPER_SGLINE_UNSUPPORTED
Sorry, SGLINE is not available on this network.
OPER_SGLINE_EXISTS
%s already exists on the SGLINE list.
OPER_SGLINE_ALREADY_COVERED
%s is already covered by %s.
OPER_SGLINE_REACHED_LIMIT
Sorry, you can only have %d SGLINEs.
OPER_SGLINE_ADDED
%s added to the SGLINE list.
OPER_SGLINE_CHANGED
Expiry time of %s changed.
OPER_SGLINE_NOT_FOUND
%s not found on the SGLINE list.
OPER_SGLINE_NO_MATCH
No matching entries on the SGLINE list.
OPER_SGLINE_DELETED
%s deleted from the SGLINE list.
OPER_SGLINE_DELETED_ONE
Deleted 1 entry from the SGLINE list.
OPER_SGLINE_DELETED_SEVERAL
Deleted %d entries from the SGLINE list.
OPER_SGLINE_LIST_EMPTY
SGLINE list is empty.
OPER_SGLINE_LIST_HEADER
Current SGLINE list:
Num Mask Reason
OPER_SGLINE_LIST_FORMAT
%3d %-32s %s
OPER_SGLINE_VIEW_HEADER
Current SGLINE list:
# number, mask, set-by, set-time, expires, reason
OPER_SGLINE_VIEW_FORMAT
%3d %s (by %s on %s; %s)
%s
OPER_SGLINE_CLEAR
The SGLINE list has been cleared.
# SQLINE responses
OPER_SQLINE_SYNTAX
SQLINE {ADD | DEL | LIST | VIEW | CLEAR} [[+expiry] {mask | entry-list} [reason]]
OPER_SQLINE_CHANNELS_UNSUPPORTED
Channel SQLINEs are not supported by your IRCd, so you can't use them.
OPER_SQLINE_EXISTS
%s already exists on the SQLINE list.
OPER_SQLINE_ALREADY_COVERED
%s is already covered by %s.
OPER_SQLINE_REACHED_LIMIT
Sorry, you can only have %d SQLINEs.
OPER_SQLINE_ADDED
%s added to the SQLINE list.
OPER_SQLINE_CHANGED
Expiry time of %s changed.
OPER_SQLINE_NOT_FOUND
%s not found on the SQLINE list.
OPER_SQLINE_NO_MATCH
No matching entries on the SQLINE list.
OPER_SQLINE_DELETED
%s deleted from the SQLINE list.
OPER_SQLINE_DELETED_ONE
Deleted 1 entry from the SQLINE list.
OPER_SQLINE_DELETED_SEVERAL
Deleted %d entries from the SQLINE list.
OPER_SQLINE_LIST_EMPTY
SQLINE list is empty.
OPER_SQLINE_LIST_HEADER
Current SQLINE list:
Num Mask Reason
OPER_SQLINE_LIST_FORMAT
%3d %-32s %s
OPER_SQLINE_VIEW_HEADER
Current SQLINE list:
# number, mask, set-by, set-time, expires, reason
OPER_SQLINE_VIEW_FORMAT
%3d %s (by %s on %s; %s)
%s
OPER_SQLINE_CLEAR
The SQLINE list has been cleared.
# SZLINE responses
OPER_SZLINE_SYNTAX
SZLINE {ADD | DEL | LIST | VIEW | CLEAR} [[+expiry] {mask | entry-list} [reason]]
OPER_SZLINE_UNSUPPORTED
Sorry, SZLINE is not available on this network.
OPER_SZLINE_EXISTS
%s already exists on the SZLINE list.
OPER_SZLINE_ALREADY_COVERED
%s is already covered by %s.
OPER_SZLINE_REACHED_LIMIT
Sorry, you can only have %d SZLINEs.
OPER_SZLINE_ONLY_IPS
Reminder: you can only add IP masks to the SZLINE list.
OPER_SZLINE_ADDED
%s added to the SZLINE list.
OPER_SZLINE_CHANGED
Expiry time of %s changed.
OPER_SZLINE_NOT_FOUND
%s not found on the SZLINE list.
OPER_SZLINE_NO_MATCH
No matching entries on the SZLINE list.
OPER_SZLINE_DELETED
%s deleted from the SZLINE list.
OPER_SZLINE_DELETED_ONE
Deleted 1 entry from the SZLINE list.
OPER_SZLINE_DELETED_SEVERAL
Deleted %d entries from the SZLINE list.
OPER_SZLINE_LIST_EMPTY
SZLINE list is empty.
OPER_SZLINE_LIST_HEADER
Current SZLINE list:
Num Mask Reason
OPER_SZLINE_LIST_FORMAT
%3d %-32s %s
OPER_SZLINE_VIEW_HEADER
Current SZLINE list:
# number, mask, set-by, set-time, expires, reason
OPER_SZLINE_VIEW_FORMAT
%3d %s (by %s on %s; %s)
%s
OPER_SZLINE_CLEAR
The SZLINE list has been cleared.
# SET responses
OPER_SET_SYNTAX
SET option setting
OPER_SET_IGNORE_ON
Ignore code will be used.
OPER_SET_IGNORE_OFF
Ignore code will not be used.
OPER_SET_IGNORE_ERROR
Setting for IGNORE must be ON or OFF.
OPER_SET_READONLY_ON
Services are now in read-only mode.
OPER_SET_READONLY_OFF
Services are now in read-write mode.
OPER_SET_READONLY_ERROR
Setting for READONLY must be ON or OFF.
OPER_SET_LOGCHAN_ON
Services are now reporting log messages to %s.
OPER_SET_LOGCHAN_OFF
Services are no longer reporting log messages to a channel.
OPER_SET_LOGCHAN_ERROR
Setting for LOGCHAN must be ON or OFF and LogChannel must be defined.
OPER_SET_DEBUG_ON
Services are now in debug mode.
OPER_SET_DEBUG_OFF
Services are now in non-debug mode.
OPER_SET_DEBUG_LEVEL
Services are now in debug mode (level %d).
OPER_SET_DEBUG_ERROR
Setting for DEBUG must be ON, OFF, or a positive number.
OPER_SET_NOEXPIRE_ON
Services are now in no expire mode.
OPER_SET_NOEXPIRE_OFF
Services are now in expire mode.
OPER_SET_NOEXPIRE_ERROR
Setting for NOEXPIRE must be ON or OFF.
OPER_SET_UNKNOWN_OPTION
Unknown option %s.
OPER_SET_SQL_ON
SQL code will be used.
OPER_SET_SQL_OFF
SQL code will not be used.
OPER_SET_SQL_ERROR
Setting for SQL must be ON or OFF.
OPER_SET_SQL_ERROR_INIT
Error during init of SQL, check your logs to correct.
OPER_SET_SQL_ERROR_DISABLED
SQL is not configured for this network. Please edit the
configuration file (services.conf).
OPER_SET_LIST_OPTION_ON
%s is enabled
OPER_SET_LIST_OPTION_OFF
%s is disabled
# NOOP responses
OPER_NOOP_SYNTAX
NOOP {SET|REVOKE} server
OPER_NOOP_SET
All O:lines of %s have been removed.
OPER_NOOP_REVOKE
All O:lines of %s have been reset.
# JUPE responses
OPER_JUPE_SYNTAX
JUPE servername [reason]
OPER_JUPE_HOST_ERROR
Please use a valid server name when juping
OPER_JUPE_INVALID_SERVER
You can not jupe your services server or your uplink server.
# RAW responses
OPER_RAW_SYNTAX
RAW text
# UPDATE responses
OPER_UPDATING
Updating databases.
# RELOAD responses
OPER_RELOAD
Services' configuration file has been reloaded.
# RESTART responses
OPER_CANNOT_RESTART
SERVICES_BIN not defined; cannot restart. Rerun the \2configure\2 script and recompile Services to enable the RESTART command.
# IGNORE respondes
OPER_IGNORE_SYNTAX
IGNORE {ADD|DEL|LIST|CLEAR} [time] [nick | mask]
OPER_IGNORE_VALID_TIME
You have to enter a valid number as time.
OPER_IGNORE_TIME_DONE
%s will now be ignored for %s.
OPER_IGNORE_PERM_DONE
%s will now permanently be ignored.
OPER_IGNORE_DEL_DONE
%s will no longer be ignored.
OPER_IGNORE_LIST
Services ignore list:
OPER_IGNORE_LIST_NOMATCH
Nick %s not found on ignore list.
OPER_IGNORE_LIST_EMPTY
Ignore list is empty.
OPER_IGNORE_LIST_CLEARED
Ignore list has been cleared.
# KILLCLONES responses
OPER_KILLCLONES_SYNTAX
KILLCLONES nick
OPER_KILLCLONES_UNKNOWN_NICK
Could not find user %s.
# CHANLIST responses
OPER_CHANLIST_HEADER
Channel list:
Name Users Modes Topic
OPER_CHANLIST_HEADER_USER
%s channel list:
Name Users Modes Topic
OPER_CHANLIST_RECORD
%-20s %4d +%-6s %s
OPER_CHANLIST_END
End of channel list.
# USERLIST responses
OPER_USERLIST_HEADER
Users list:
Nick Mask
OPER_USERLIST_HEADER_CHAN
%s users list:
Nick Mask
OPER_USERLIST_RECORD
%-20s %s@%s
OPER_USERLIST_END
End of users list.
OPER_SUPER_ADMIN_ON
You are now a SuperAdmin
OPER_SUPER_ADMIN_OFF
You are no longer a SuperAdmin
OPER_SUPER_ADMIN_SYNTAX
Setting for SuperAdmin must be ON or OFF (must be enabled in services.conf)
OPER_SUPER_ADMIN_WALL_ON
%s is now a Super-Admin
OPER_SUPER_ADMIN_WALL_OFF
%s is no longer a Super-Admin
OPER_SUPER_ADMIN_ONLY
Only Super-Admins can use this command.
OPER_STAFF_LIST_HEADER
On Level Nick
OPER_STAFF_FORMAT
%c %s %s
OPER_STAFF_AFORMAT
%c %s %s [%s]
# DefCon Messages
OPER_DEFCON_SYNTAX
DEFCON [1|2|3|4|5]
OPER_DEFCON_DENIED
Services are in Defcon mode, Please try again later.
OPER_DEFCON_NO_CONF
The Defcon system must be enabled in the services.conf file
OPER_DEFCON_CHANGED
Services are now at DEFCON %d
OPER_DEFCON_WALL
%s Changed the DEFCON level to %d
DEFCON_GLOBAL
The Defcon Level is now at Level: %d
# Module strings
OPER_MODULE_LOADED
Module %s loaded
OPER_MODULE_UNLOADED
Module %s unloaded
OPER_MODULE_LOAD_FAIL
Unable to load module %s
OPER_MODULE_REMOVE_FAIL
Unable to remove module %s
OPER_MODULE_NO_UNLOAD
This module can not be unloaded.
OPER_MODULE_LOAD_SYNTAX
MODLOAD FileName
OPER_MODULE_UNLOAD_SYNTAX
MODUNLOAD FileName
OPER_MODULE_LIST_HEADER
Current Module list:
OPER_MODULE_LIST
Module: %s [%s] [%s]
OPER_MODULE_LIST_FOOTER
%d Modules loaded.
OPER_MODULE_INFO_LIST
Module: %s Version: %s Author: %s loaded: %s
OPER_MODULE_CMD_LIST
Providing command: %R%s %s
OPER_MODULE_MSG_LIST
Providing IRCD handler for: %s
OPER_MODULE_NO_LIST
No modules currently loaded
OPER_MODULE_NO_INFO
No information about module %s is available
OPER_MODULE_INFO_SYNTAX
MODINFO FileName
MODULE_HELP_HEADER
The following commands have been loaded by a module:
###########################################################################
#
# Session Limiting and Exception messages
#
###########################################################################
# EXCEPTION responses
OPER_EXCEPTION_SYNTAX
EXCEPTION {ADD | DEL | MOVE | LIST | VIEW} [params]
OPER_EXCEPTION_ADD_SYNTAX
EXCEPTION ADD [+expiry] mask limit reason
OPER_EXCEPTION_DEL_SYNTAX
EXCEPTION DEL {mask | list}
OPER_EXCEPTION_MOVE_SYNTAX
EXCEPTION MOVE num position
OPER_EXCEPTION_DISABLED
Session limiting is disabled.
OPER_EXCEPTION_ALREADY_PRESENT
Mask %s already present on exception list.
OPER_EXCEPTION_TOO_MANY
Session-limit exception list is full!
OPER_EXCEPTION_ADDED
Session limit for %s set to %d.
OPER_EXCEPTION_MOVED
Exception for %s (#%d) moved to position %d.
OPER_EXCEPTION_NO_SUCH_ENTRY
No such entry (#%d) session-limit exception list.
OPER_EXCEPTION_NOT_FOUND
%s not found on session-limit exception list.
OPER_EXCEPTION_NO_MATCH
No matching entries on session-limit exception list.
OPER_EXCEPTION_DELETED
%s deleted from session-limit exception list.
OPER_EXCEPTION_DELETED_ONE
Deleted 1 entry from session-limit exception list.
OPER_EXCEPTION_DELETED_SEVERAL
Deleted %d entries from session-limit exception list.
OPER_EXCEPTION_LIST_HEADER
Current Session Limit Exception list:
# mask, limit
OPER_EXCEPTION_LIST_FORMAT
%3d %4d %s
OPER_EXCEPTION_LIST_COLHEAD
Num Limit Host
# mask, set-by, set-time, expires, limit, reason
OPER_EXCEPTION_VIEW_FORMAT
%3d. %s (by %s on %s; %s)
Limit: %-4d - %s
OPER_EXCEPTION_INVALID_LIMIT
Invalid session limit. It must be a valid integer greater than or equal to zero and less than %d.
OPER_EXCEPTION_INVALID_HOSTMASK
Invalid hostmask. Only real hostmasks are valid as exceptions are not matched against nicks or usernames.
OPER_EXCEPTION_EXISTS
%s already exists on the EXCEPTION list.
OPER_EXCEPTION_CHANGED
Exception for %s has been updated to %d.
# SESSION responses
OPER_SESSION_SYNTAX
SESSION {LIST limit | VIEW host}
OPER_SESSION_LIST_SYNTAX
SESSION LIST limit
OPER_SESSION_VIEW_SYNTAX
SESSION VIEW host
OPER_SESSION_DISABLED
Session limiting is disabled.
OPER_SESSION_INVALID_THRESHOLD
Invalid threshold value. It must be a valid integer greater than 1.
OPER_SESSION_NOT_FOUND
%s not found on session list.
OPER_SESSION_LIST_HEADER
Hosts with at least %d sessions:
OPER_SESSION_LIST_COLHEAD
Sessions Host
# limit, host
OPER_SESSION_LIST_FORMAT
%6d %s
# host, sessions, limit
OPER_SESSION_VIEW_FORMAT
The host %s currently has %d sessions with a limit of %d.
# EXCEPTION help
OPER_HELP_EXCEPTION
Syntax: EXCEPTION ADD [+expiry] mask limit reason
EXCEPTION DEL {mask | list}
EXCEPTION MOVE num position
EXCEPTION LIST [mask | list]
EXCEPTION VIEW [mask | list]
Allows Services admins to manipulate the list of hosts that
have specific session limits - allowing certain machines,
such as shell servers, to carry more than the default number
of clients at a time. Once a host reaches it's session limit,
all clients attempting to connect from that host will be
killed. Before the user is killed, they are notified, via a
/NOTICE from %S, of a source of help regarding session
limiting. The content of this notice is a config setting.
EXCEPTION ADD adds the given host mask to the exception list.
Note that nick!user@host and user@host masks are invalid!
Only real host masks, such as box.host.dom and *.host.dom,
are allowed because sessions limiting does not take nick or
user names into account. limit must be a number greater than
or equal to zero. This determines how many sessions this host
may carry at a time. A value of zero means the host has an
unlimited session limit. See the AKILL help for details about
the format of the optional expiry parameter.
EXCEPTION DEL removes the given mask from the exception list.
EXCEPTION MOVE moves exception num to position. The
exceptions inbetween will be shifted up or down to fill the gap.
EXCEPTION LIST and EXCEPTION VIEW show all current
exceptions; if the optional mask is given, the list is limited
to those exceptions matching the mask. The difference is that
EXCEPTION VIEW is more verbose, displaying the name of the
person who added the exception, it's session limit, reason,
host mask and the expiry date and time.
Note that a connecting client will "use" the first exception
their host matches. Large exception lists and widely matching
exception masks are likely to degrade services' performance.
OPER_HELP_SESSION
Syntax: SESSION LIST threshold
SESSION VIEW host
Allows Services admins to view the session list.
SESSION LIST lists hosts with at least threshold sessions.
The threshold must be a number greater than 1. This is to
prevent accidental listing of the large number of single
session hosts.
SESSION VIEW displays detailed information about a specific
host - including the current session count and session limit.
The host value may not include wildcards.
See the EXCEPTION help for more information about session
limiting and how to set session limits specific to certain
hosts and groups thereof.
OPER_HELP_STAFF
Syntax: STAFF
Displays all Services Staff nicks along with level
and on-line status.
OPER_HELP_DEFCON
Syntax: DEFCON [1|2|3|4|5]
The defcon system can be used to implement a pre-defined
set of restrictions to services useful during an attempted
attack on the network.
OPER_HELP_DEFCON_NO_NEW_CHANNELS
* No new channel registrations
OPER_HELP_DEFCON_NO_NEW_NICKS
* No new nick registrations
OPER_HELP_DEFCON_NO_MLOCK_CHANGE
* No MLOCK changes
OPER_HELP_DEFCON_FORCE_CHAN_MODES
* Force Chan Modes (%s) to be set on all channels
OPER_HELP_DEFCON_REDUCE_SESSION
* Use the reduced session limit of %d
OPER_HELP_DEFCON_NO_NEW_CLIENTS
* Kill any NEW clients connecting
OPER_HELP_DEFCON_OPER_ONLY
* Ignore any non-opers with message
OPER_HELP_DEFCON_SILENT_OPER_ONLY
* Silently ignore non-opers
OPER_HELP_DEFCON_AKILL_NEW_CLIENTS
* AKILL any new clients connecting
OPER_HELP_DEFCON_NO_NEW_MEMOS
* No new memos sent
OPER_HELP_CHANKILL
Syntax: CHANKILL [+expiry] channel reason
Puts an AKILL for every nick on the specified channel. It
uses the entire and complete real ident@host for every nick,
then enforces the AKILL.
###########################################################################
#
# News system messages
#
###########################################################################
NEWS_LOGON_TEXT
[Logon News - %s] %s
NEWS_OPER_TEXT
[Oper News - %s] %s
NEWS_RANDOM_TEXT
[Random News - %s] %s
NEWS_LOGON_SYNTAX
LOGONNEWS {ADD|DEL|LIST} [text|num]
NEWS_LOGON_LIST_HEADER
Logon news items:
NEWS_LOGON_LIST_ENTRY
%5d (%s by %s)
%s
NEWS_LOGON_LIST_NONE
There is no logon news.
NEWS_LOGON_ADD_SYNTAX
LOGONNEWS ADD text
NEWS_LOGON_ADD_FULL
News list is full!
NEWS_LOGON_ADDED
Added new logon news item (#%d).
NEWS_LOGON_DEL_SYNTAX
LOGONNEWS DEL {num | ALL}
NEWS_LOGON_DEL_NOT_FOUND
Logon news item #%d not found!
NEWS_LOGON_DELETED
Logon news item #%d deleted.
NEWS_LOGON_DEL_NONE
No logon news items to delete!
NEWS_LOGON_DELETED_ALL
All logon news items deleted.
NEWS_OPER_SYNTAX
OPERNEWS {ADD|DEL|LIST} [text|num]
NEWS_OPER_LIST_HEADER
Oper news items:
NEWS_OPER_LIST_ENTRY
%5d (%s by %s)
%s
NEWS_OPER_LIST_NONE
There is no oper news.
NEWS_OPER_ADD_SYNTAX
OPERNEWS ADD text
NEWS_OPER_ADD_FULL
News list is full!
NEWS_OPER_ADDED
Added new oper news item (#%d).
NEWS_OPER_DEL_SYNTAX
OPERNEWS DEL {num | ALL}
NEWS_OPER_DEL_NOT_FOUND
Oper news item #%d not found!
NEWS_OPER_DELETED
Oper news item #%d deleted.
NEWS_OPER_DEL_NONE
No oper news items to delete!
NEWS_OPER_DELETED_ALL
All oper news items deleted.
NEWS_RANDOM_SYNTAX
RANDOMNEWS {ADD|DEL|LIST} [text|num]
NEWS_RANDOM_LIST_HEADER
Random news items:
NEWS_RANDOM_LIST_ENTRY
%5d (%s by %s)
%s
NEWS_RANDOM_LIST_NONE
There is no random news.
NEWS_RANDOM_ADD_SYNTAX
RANDOMNEWS ADD text
NEWS_RANDOM_ADD_FULL
News list is full!
NEWS_RANDOM_ADDED
Added new random news item (#%d).
NEWS_RANDOM_DEL_SYNTAX
RANDOMNEWS DEL {num | ALL}
NEWS_RANDOM_DEL_NOT_FOUND
Random news item #%d not found!
NEWS_RANDOM_DELETED
Random news item #%d deleted.
NEWS_RANDOM_DEL_NONE
No random news items to delete!
NEWS_RANDOM_DELETED_ALL
All random news items deleted.
NEWS_HELP_LOGON
Syntax: LOGONNEWS ADD text
LOGONNEWS DEL {num | ALL}
LOGONNEWS LIST
Edits or displays the list of logon news messages. When a
user connects to the network, these messages will be sent
to them. (However, no more than %d messages will be
sent in order to avoid flooding the user. If there are
more news messages, only the most recent will be sent.)
NewsCount can be configured in services.conf.
LOGONNEWS may only be used by Services admins.
NEWS_HELP_OPER
Syntax: OPERNEWS ADD text
OPERNEWS DEL {num | ALL}
OPERNEWS LIST
Edits or displays the list of oper news messages. When a
user opers up (with the /OPER command), these messages will
be sent to them. (However, no more than %d messages will
be sent in order to avoid flooding the user. If there are
more news messages, only the most recent will be sent.)
NewsCount can be configured in services.conf.
OPERNEWS may only be used by Services admins.
NEWS_HELP_RANDOM
Syntax: RANDOMNEWS ADD text
RANDOMNEWS DEL {num | ALL}
RANDOMNEWS LIST
Edits or displays the list of random news messages. When a
user connects to the network, one (and only one) of the
random news will be randomly chosen and sent to them.
RANDOMNEWS may only be used by Services admins.
###########################################################################
#
# HelpServ help message
#
###########################################################################
HELP_HELP
%S is a service designed to give out information on
Services. Help topics are accessible via
the HELP commands of the other Services clients:
%R%s HELP
for information on registering nicknames
%R%s HELP
for information on registering and controlling
channels
%R%s HELP
for information on sending messages to off-line users
HELP_HELP_BOT
%R%s HELP
for information on setting up a bot on your channel
HELP_HELP_HOST
%R%s HELP
for information on setting up nick vHosts
###########################################################################
#
# NickServ help messages
#
###########################################################################
NICK_HELP_CMD_CONFIRM
CONFIRM Confirm a nickserv auth code
NICK_HELP_CMD_RESEND
RESEND Resend a nickserv auth code
NICK_HELP_CMD_REGISTER
REGISTER Register a nickname
NICK_HELP_CMD_GROUP
GROUP Join a group
NICK_HELP_CMD_IDENTIFY
IDENTIFY Identify yourself with your password
NICK_HELP_CMD_ACCESS
ACCESS Modify the list of authorized addresses
NICK_HELP_CMD_SET
SET Set options, including kill protection
NICK_HELP_CMD_SASET
SASET Set SET-options on another nickname
NICK_HELP_CMD_DROP
DROP Cancel the registration of a nickname
NICK_HELP_CMD_RECOVER
RECOVER Kill another user who has taken your nick
NICK_HELP_CMD_RELEASE
RELEASE Regain custody of your nick after RECOVER
NICK_HELP_CMD_SENDPASS
SENDPASS Forgot your password? Try this
NICK_HELP_CMD_GHOST
GHOST Disconnects a "ghost" IRC session using your nick
NICK_HELP_CMD_ALIST
ALIST List channels you have access on
NICK_HELP_CMD_GLIST
GLIST Lists all nicknames in your group
NICK_HELP_CMD_INFO
INFO Displays information about a given nickname
NICK_HELP_CMD_LIST
LIST List all registered nicknames that match a given pattern
NICK_HELP_CMD_LOGOUT
LOGOUT Reverses the effect of the IDENTIFY command
NICK_HELP_CMD_STATUS
STATUS Returns the owner status of the given nickname
NICK_HELP_CMD_UPDATE
UPDATE Updates your current status, i.e. it checks for new memos
NICK_HELP_CMD_GETPASS
GETPASS Retrieve the password for a nickname
NICK_HELP_CMD_GETEMAIL
GETEMAIL Matches and returns all users that registered using given email
NICK_HELP_CMD_FORBID
FORBID Prevents a nickname from being registered
NICK_HELP_CMD_SUSPEND
SUSPEND Suspend a given nick
NICK_HELP_CMD_UNSUSPEND
UNSUSPEND Unsuspend a given nick
NICK_HELP
%S allows you to "register" a nickname and
prevent others from using it. The following
commands allow for registration and maintenance of
nicknames; to use them, type %R%S command.
For more information on a specific command, type
%R%S HELP command.
NICK_HELP_FOOTER
NOTICE: This service is intended to provide a way for
IRC users to ensure their identity is not compromised.
It is NOT intended to facilitate "stealing" of
nicknames or other malicious actions. Abuse of %S
will result in, at minimum, loss of the abused
nickname(s).
NICK_HELP_EXPIRES
Nicknames that are not used anymore are subject to
the automatic expiration, i.e. they will be deleted
after %d days if not used.
NICK_HELP_REGISTER
Syntax: REGISTER password [email]
Registers your nickname in the %S database. Once
your nick is registered, you can use the SET and ACCESS
commands to configure your nick's settings as you like
them. Make sure you remember the password you use when
registering - you'll need it to make changes to your nick
later. (Note that case matters! ANOPE, Anope, and
anope are all different passwords!)
Guidelines on choosing passwords:
Passwords should not be easily guessable. For example,
using your real name as a password is a bad idea. Using
your nickname as a password is a much worse idea ;) and,
in fact, %S will not allow it. Also, short
passwords are vulnerable to trial-and-error searches, so
you should choose a password at least 5 characters long.
Finally, the space character cannot be used in passwords.
The parameter email is optional and will set the email
for your nick immediately. However, it may be required
on certain networks.
Your privacy is respected; this e-mail won't be given to
any third-party person.
This command also creates a new group for your nickname,
that will allow you to register other nicks later sharing
the same configuration, the same set of memos and the
same channel privileges. For more information on this
feature, type %R%S HELP GROUP.
NICK_HELP_GROUP
Syntax: GROUP target password
This command makes your nickname join the target nickname's
group. password is the password of the target nickname.
Joining a group will allow you to share your configuration,
memos, and channel privileges with all the nicknames in the
group, and much more!
A group exists as long as it is useful. This means that even
if a nick of the group is dropped, you won't lose the
shared things described above, as long as there is at
least one nick remaining in the group.
You can use this command even if you have not registered
your nick yet. If your nick is already registered, you'll
need to identify yourself before using this command. Type
%R%S HELP IDENTIFY for more information. This
last may be not possible on your IRC network.
It is recommended to use this command with a non-registered
nick because it will be registered automatically when
using this command. You may use it with a registered nick (to
change your group) only if your network administrators allowed
it.
You can only be in one group at a time. Group merging is
not possible.
Note: all the nicknames of a group have the same password.
NICK_HELP_IDENTIFY
Syntax: IDENTIFY password
Tells %S that you are really the owner of this
nick. Many commands require you to authenticate yourself
with this command before you use them. The password
should be the same one you sent with the REGISTER
command.
NICK_HELP_UPDATE
Syntax: UPDATE
Updates your current status, i.e. it checks for new memos,
sets needed chanmodes (ModeonID) and updates your vhost and
your userflags (lastseentime, etc).
NICK_HELP_LOGOUT
Syntax: LOGOUT
This reverses the effect of the IDENTIFY command, i.e.
make you not recognized as the real owner of the nick
anymore. Note, however, that you won't be asked to reidentify
yourself.
NICK_HELP_DROP
Syntax: DROP [nickname]
Drops your nickname from the %S database. A nick
that has been dropped is free for anyone to re-register.
You may drop a nick within your group by passing it
as the nick parameter.
In order to use this command, you must first identify
with your password (%R%S HELP IDENTIFY for more
information).
NICK_HELP_ACCESS
Syntax: ACCESS ADD mask
ACCESS DEL mask
ACCESS LIST
Modifies or displays the access list for your nick. This
is the list of addresses which will be automatically
recognized by %S as allowed to use the nick. If
you want to use the nick from a different address, you
need to send an IDENTIFY command to make %S
recognize you.
Examples:
ACCESS ADD anyone@*.bepeg.com
Allows access to user anyone from any machine in
the bepeg.com domain.
ACCESS DEL anyone@*.bepeg.com
Reverses the previous command.
ACCESS LIST
Displays the current access list.
NICK_HELP_SET
Syntax: SET option parameters
Sets various nickname options. option can be one of:
DISPLAY Set the display of your group in Services
PASSWORD Set your nickname password
LANGUAGE Set the language Services will use when
sending messages to you
URL Associate a URL with your nickname
EMAIL Associate an E-mail address with your nickname
ICQ Associate an ICQ number with your nickname
GREET Associate a greet message with your nickname
KILL Turn protection on or off
SECURE Turn nickname security on or off
PRIVATE Prevent your nickname from appearing in a
%R%S LIST
HIDE Hide certain pieces of nickname information
MSG Change the communication method of Services
AUTOOP Should services op you automatically.
In order to use this command, you must first identify
with your password (%R%S HELP IDENTIFY for more
information).
Type %R%S HELP SET option for more information
on a specific option.
NICK_HELP_SET_DISPLAY
Syntax: SET DISPLAY new-display
Changes the display used to refer to your nickname group in
Services. The new display MUST be a nick of your group.
NICK_HELP_SET_PASSWORD
Syntax: SET PASSWORD new-password
Changes the password used to identify you as the nick's
owner.
NICK_HELP_SET_LANGUAGE
Syntax: SET LANGUAGE number
Changes the language Services uses when sending messages to
you (for example, when responding to a command you send).
number should be chosen from the following list of
supported languages:
NICK_HELP_SET_URL
Syntax: SET URL url
Associates the given URL with your nickname. This URL
will be displayed whenever someone requests information
on your nick with the INFO command.
NICK_HELP_SET_EMAIL
Syntax: SET EMAIL address
Associates the given E-mail address with your nickname.
This address will be displayed whenever someone requests
information on the nickname with the INFO command.
NICK_HELP_SET_ICQ
Syntax: SET ICQ number
Associates the given ICQ number with your nickname. This
number will be displayed whenever someone requests
information on your nick with the INFO command.
NICK_HELP_SET_GREET
Syntax: SET GREET message
Makes the given message the greet of your nickname, that
will be displayed when joining a channel that has GREET
option enabled, provided that you have the necessary
access on it.
NICK_HELP_SET_KILL
Syntax: SET KILL {ON | QUICK | IMMED | OFF}
Turns the automatic protection option for your nick
on or off. With protection on, if another user
tries to take your nick, they will be given one minute to
change to another nick, after which %S will forcibly change
their nick.
If you select QUICK, the user will be given only 20 seconds
to change nicks instead of the usual 60. If you select
IMMED, user's nick will be changed immediately without being
warned first or given a chance to change their nick; please
do not use this option unless necessary. Also, your
network's administrators may have disabled this option.
NICK_HELP_SET_SECURE
Syntax: SET SECURE {ON | OFF}
Turns %S's security features on or off for your
nick. With SECURE set, you must enter your password
before you will be recognized as the owner of the nick,
regardless of whether your address is on the access
list. However, if you are on the access list, %S
will not auto-kill you regardless of the setting of the
KILL option.
NICK_HELP_SET_PRIVATE
Syntax: SET PRIVATE {ON | OFF}
Turns %S's privacy option on or off for your nick.
With PRIVATE set, your nickname will not appear in
nickname lists generated with %S's LIST command.
(However, anyone who knows your nickname can still get
information on it using the INFO command.)
NICK_HELP_SET_HIDE
Syntax: SET HIDE {EMAIL | STATUS | USERMASK | QUIT} {ON | OFF}
Allows you to prevent certain pieces of information from
being displayed when someone does a %S INFO on your
nick. You can hide your E-mail address (EMAIL), last seen
user@host mask (USERMASK), your services access status
(STATUS) and last quit message (QUIT).
The second parameter specifies whether the information should
be displayed (OFF) or hidden (ON).
NICK_HELP_SET_MSG
Syntax: SET MSG {ON | OFF}
Allows you to choose the way Services are communicating with
you. With MSG set, Services will use messages, else they'll
use notices.
NICK_HELP_SET_AUTOOP
Syntax: SET AUTOOP {ON | OFF}
Sets whether you will be opped automatically. Set to ON to
allow ChanServ to op you automatically when entering channels.
NICK_HELP_SASET
Syntax: SASET nickname option parameters.
Sets various nickname options. option can be one of:
DISPLAY Set the display of the group in Services
PASSWORD Set the nickname password
URL Associate a URL with the nickname
EMAIL Associate an E-mail address with the nickname
ICQ Associate an ICQ number with the nickname
GREET Associate a greet message with the nickname
KILL Turn protection on or off
SECURE Turn nickname security on or off
PRIVATE Prevent the nickname from appearing in a
%R%S LIST
HIDE Hide certain pieces of nickname information
MSG Change the communication method of Services
NOEXPIRE Prevent the nickname from expiring
AUTOOP Turn autoop on or off
LANGUAGE Set the language Services will use when
sending messages to nickname
Type %R%S HELP SASET option for more information
on a specific option. The options will be set on the given
nickname.
NICK_HELP_SASET_DISPLAY
Syntax: SASET nickname DISPLAY new-display
Changes the display used to refer to the nickname group in
Services. The new display MUST be a nick of the group.
NICK_HELP_SASET_PASSWORD
Syntax: SASET nickname PASSWORD new-password
Changes the password used to identify as the nick's owner.
NICK_HELP_SASET_URL
Syntax: SASET nickname URL url
Associates the given URL with the nickname. This URL
will be displayed whenever someone requests information
on the nick with the INFO command.
NICK_HELP_SASET_EMAIL
Syntax: SASET nickname EMAIL address
Associates the given E-mail address with the nickname.
NICK_HELP_SASET_ICQ
Syntax: SASET nickname ICQ number
Associates the given ICQ number with the nickname. This
number will be displayed whenever someone requests
information on the nick with the INFO command.
NICK_HELP_SASET_GREET
Syntax: SASET nickname GREET message
Makes the given message the greet of the nickname, that
will be displayed when joining a channel that has GREET
option enabled, provided that the user has the necessary
access on it.
NICK_HELP_SASET_KILL
Syntax: SASET nickname KILL {ON | QUICK | IMMED | OFF}
Turns the automatic protection option for the nick
on or off. With protection on, if another user
tries to take the nick, they will be given one minute to
change to another nick, after which %S will forcibly change
their nick.
If you select QUICK, the user will be given only 20 seconds
to change nicks instead of the usual 60. If you select
IMMED, user's nick will be changed immediately without being
warned first or given a chance to change their nick; please
do not use this option unless necessary. Also, your
network's administrators may have disabled this option.
NICK_HELP_SASET_SECURE
Syntax: SASET nickname SECURE {ON | OFF}
Turns %S's security features on or off for your
nick. With SECURE set, you must enter your password
before you will be recognized as the owner of the nick,
regardless of whether your address is on the access
list. However, if you are on the access list, %S
will not auto-kill you regardless of the setting of the
KILL option.
NICK_HELP_SASET_PRIVATE
Syntax: SASET nickname PRIVATE {ON | OFF}
Turns %S's privacy option on or off for the nick.
With PRIVATE set, the nickname will not appear in
nickname lists generated with %S's LIST command.
(However, anyone who knows the nickname can still get
information on it using the INFO command.)
NICK_HELP_SASET_HIDE
Syntax: SASET nickname HIDE {EMAIL | STATUS | USERMASK | QUIT} {ON | OFF}
Allows you to prevent certain pieces of information from
being displayed when someone does a %S INFO on the
nick. You can hide the E-mail address (EMAIL), last seen
user@host mask (USERMASK), the services access status
(STATUS) and last quit message (QUIT).
The second parameter specifies whether the information should
be displayed (OFF) or hidden (ON).
NICK_HELP_SASET_MSG
Syntax: SASET nickname MSG {ON | OFF}
Allows you to choose the way Services are communicating with
the given user. With MSG set, Services will use messages,
else they'll use notices.
NICK_HELP_SASET_NOEXPIRE
Syntax: SASET nickname NOEXPIRE {ON | OFF}
Sets whether the given nickname will expire. Setting this
to ON prevents the nickname from expiring.
NICK_HELP_SASET_AUTOOP
Syntax: SASET nickname AUTOOP {ON | OFF}
Sets whether the given nickname will be opped automatically.
Set to ON to allow ChanServ to op the given nickname
automatically when joining channels.
NICK_HELP_SASET_LANGUAGE
Syntax: SASET nickname LANGUAGE number
Changes the language Services uses when sending messages to
nickname (for example, when responding to a command he sends).
number should be chosen from a list of supported languages
that you can get by typing %R%S HELP SET LANGUAGE.
NICK_HELP_RECOVER
Syntax: RECOVER nickname [password]
Allows you to recover your nickname if someone else has
taken it; this does the same thing that %S does
automatically if someone tries to use a kill-protected
nick.
When you give this command, %S will bring a fake
user online with the same nickname as the user you're
trying to recover your nick from. This causes the IRC
servers to disconnect the other user. This fake user will
remain online for %s to ensure that the other
user does not immediately reconnect; after that time, you
can reclaim your nick. Alternatively, use the RELEASE
command (%R%S HELP RELEASE) to get the nick
back sooner.
In order to use the RECOVER command for a nick, your
current address as shown in /WHOIS must be on that nick's
access list, you must be identified and in the group of
that nick, or you must supply the correct password for
the nickname.
NICK_HELP_RELEASE
Syntax: RELEASE nickname [password]
Instructs %S to remove any hold on your nickname
caused by automatic kill protection or use of the RECOVER
command. This holds lasts for %s;
this command gets rid of them sooner.
In order to use the RELEASE command for a nick, your
current address as shown in /WHOIS must be on that nick's
access list, you must be identified and in the group of
that nick, or you must supply the correct password for
the nickname.
NICK_HELP_GHOST
Syntax: GHOST nickname [password]
Terminates a "ghost" IRC session using your nick. A
"ghost" session is one which is not actually connected,
but which the IRC server believes is still online for one
reason or another. Typically, this happens if your
computer crashes or your Internet or modem connection
goes down while you're on IRC.
In order to use the GHOST command for a nick, your
current address as shown in /WHOIS must be on that nick's
access list, you must be identified and in the group of
that nick, or you must supply the correct password for
the nickname.
NICK_HELP_INFO
Syntax: INFO nickname [ALL]
Displays information about the given nickname, such as
the nick's owner, last seen address and time, and nick
options. If you are identified for the nick you're
getting information for and ALL is specified, you will
be shown all the information; regardless of whether
it's hidden or not.
NICK_HELP_LIST
Syntax: LIST pattern
Lists all registered nicknames which match the given
pattern, in nick!user@host format. Nicks with the
PRIVATE option set will not be displayed.
Note that a pattern preceding with a '#' specifies a range.
Examples:
LIST *!joeuser@foo.com
Lists all nicks owned by joeuser@foo.com.
LIST *Bot*!*@*
Lists all registered nicks with Bot in their
names (case insensitive).
LIST *!*@*.bar.org
Lists all nicks owned by users in the bar.org
domain.
LIST #50-100
Lists nicks numbers 50-100
NICK_HELP_ALIST
Syntax: ALIST [level]
Lists all channels you have access on. Optionally, you can specify
a level in XOP or ACCESS format. The resulting list will only
include channels where you have the given level of access.
Examples:
ALIST Founder
Lists all channels where you have Founder
access.
ALIST AOP
Lists all channels where you have AOP
access or greater.
ALIST 10
Lists all channels where you have level 10
access or greater.
Channels that have the NOEXPIRE option set will be
prefixed by an exclamation mark.
NICK_HELP_GLIST
Syntax: GLIST
Lists all nicks in your group.
NICK_HELP_STATUS
Syntax: STATUS nickname...
Returns whether the user using the given nickname is
recognized as the owner of the nickname. The response has
this format:
nickname status-code
where nickname is the nickname sent with the command, and
status-code is one of the following:
0 - no such user online or nickname not registered
1 - user not recognized as nickname's owner
2 - user recognized as owner via access list only
3 - user recognized as owner via password identification
Up to sixteen nicknames may be sent with each command; the
rest will be ignored. If no nickname is given, your status
will be returned.
NICK_HELP_SENDPASS
Syntax: SENDPASS nickname
Send the password of the given nickname to the e-mail address
set in the nickname record. This command is really useful
to deal with lost passwords.
May be limited to IRC operators on certain networks.
This command is unavailable when encryption is enabled.
NICK_HELP_CONFIRM
Syntax: CONFIRM passcode
This is the second step of nickname registration process.
You must perform this command in order to get your nickname
registered with %S. The passcode (or called auth code also)
is sent to your e-mail address in the first step of the
registration process. For more information about the first
stage of the registration process, type: %R%S HELP REGISTER
NICK_HELP_RESEND
Syntax: RESEND
This command will re-send the auth code (also called passcode)
to the e-mail address of the user whom is performing it.
NICK_SERVADMIN_HELP
Services admins can also drop any nickname without needing
to identify for the nick, and may view the access list for
any nickname (%R%S ACCESS LIST nick).
NICK_SERVADMIN_HELP_LOGOUT
Syntax: LOGOUT [nickname [REVALIDATE]]
Without a parameter, reverses the effect of the IDENTIFY
command, i.e. make you not recognized as the real owner of the nick
anymore. Note, however, that you won't be asked to reidentify
yourself.
With a parameter, does the same for the given nick. If you
specify REVALIDATE as well, Services will ask the given nick
to re-identify. This use limited to Services admins.
NICK_SERVADMIN_HELP_DROP
Syntax: DROP [nickname]
Without a parameter, drops your nickname from the
%S database.
With a parameter, drops the named nick from the database.
You may drop any nick within your group without any
special privileges. Dropping any nick is limited to
Services admins.
NICK_SERVADMIN_HELP_INFO
Services admins may use the ALL parameter with any nick.
NICK_SERVADMIN_HELP_LIST
Syntax: LIST pattern [FORBIDDEN] [SUSPENDED] [NOEXPIRE] [UNCONFIRMED]
Lists all registered nicknames which match the given
pattern, in nick!user@host format. Nicks with the PRIVATE
option set will only be displayed to Services admins. Nicks
with the NOEXPIRE option set will have a ! appended to
the nickname for Services admins.
If the FORBIDDEN, SUSPENDED, NOEXPIRE or UNCONFIRMED options are given, only
nicks which, respectively, are FORBIDDEN, SUSPENDED, UNCONFIRMED or have the
NOEXPIRE flag set will be displayed. If multiple options are
given, all nicks matching at least one option will be displayed.
These options are limited to Services admins.
Examples:
LIST *!joeuser@foo.com
Lists all registered nicks owned by joeuser@foo.com.
LIST *Bot*!*@*
Lists all registered nicks with Bot in their
names (case insensitive).
LIST * NOEXPIRE
Lists all registered nicks which have been set to
not expire.
NICK_SERVADMIN_HELP_ALIST
Syntax: ALIST [nickname] [level]
With no parameters, lists channels you have access on. With
one parameter, lists channels that nickname has access
on. With two parameters lists channels that nickname has
level access or greater on.
This use limited to Services admins.
NICK_SERVADMIN_HELP_GLIST
Syntax: GLIST [nickname]
Without a parameter, lists all nicknames that are in
your group.
With a parameter, lists all nicknames that are in the
group of the given nick.
This use limited to Services admins.
NICK_SERVADMIN_HELP_GETPASS
Syntax: GETPASS nickname
Returns the password for the given nickname. Note that
whenever this command is used, a message including the
person who issued the command and the nickname it was used
on will be logged and sent out as a WALLOPS/GLOBOPS.
This command is unavailable when encryption is enabled.
NICK_SERVADMIN_HELP_GETEMAIL
Syntax: GETEMAIL user@emailhost
Returns the matching nicks that used given email. Note that
you can not use wildcards for either user or emailhost. Whenever
this command is used, a message including the person who issued
the command and the email it was used on will be logged.
NICK_SERVADMIN_HELP_FORBID
Syntax: FORBID nickname [reason]
Disallows a nickname from being registered or used by
anyone. May be cancelled by dropping the nick.
On certain networks, reason is required.
NICK_SERVADMIN_HELP_SUSPEND
Syntax: SUSPEND nickname reason
SUSPENDs a nickname from being used.
NICK_SERVADMIN_HELP_UNSUSPEND
Syntax: UNSUSPEND nickname
UNSUSPENDS a nickname from being used.
###########################################################################
#
# ChanServ help messages
#
###########################################################################
CHAN_HELP_CMD_GETPASS
GETPASS Retrieve the founder password for a channel
CHAN_HELP_CMD_FORBID
FORBID Prevent a channel from being used
CHAN_HELP_CMD_SUSPEND
SUSPEND Prevent a channel from being used preserving
channel data and settings
CHAN_HELP_CMD_UNSUSPEND
UNSUSPEND Releases a suspended channel
CHAN_HELP_CMD_STATUS
STATUS Returns the current access level of a user
on a channel
CHAN_HELP_CMD_REGISTER
REGISTER Register a channel
CHAN_HELP_CMD_IDENTIFY
IDENTIFY Identify yourself with your password
CHAN_HELP_CMD_SET
SET Set channel options and information
CHAN_HELP_CMD_AOP
AOP Modify the list of AOP users
CHAN_HELP_CMD_SOP
SOP Modify the list of SOP users
CHAN_HELP_CMD_ACCESS
ACCESS Modify the list of privileged users
CHAN_HELP_CMD_LEVELS
LEVELS Redefine the meanings of access levels
CHAN_HELP_CMD_AKICK
AKICK Maintain the AutoKick list
CHAN_HELP_CMD_DROP
DROP Cancel the registration of a channel
CHAN_HELP_CMD_SENDPASS
SENDPASS Help retrieve lost passwords
CHAN_HELP_CMD_BAN
BAN Bans a selected nick on a channel
CHAN_HELP_CMD_CLEAR
CLEAR Tells ChanServ to clear certain settings on a channel
CHAN_HELP_CMD_DEVOICE
DEVOICE Devoices a selected nick on a channel
CHAN_HELP_CMD_GETKEY
GETKEY Returns the key of the given channel
CHAN_HELP_CMD_INFO
INFO Lists information about the named registered channel
CHAN_HELP_CMD_INVITE
INVITE Tells ChanServ to invite you into a channel
CHAN_HELP_CMD_KICK
KICK Kicks a selected nick from a channel
CHAN_HELP_CMD_LIST
LIST Lists all registered channels matching the given pattern
CHAN_HELP_CMD_LOGOUT
LOGOUT This command will logout the selected nickname
CHAN_HELP_CMD_OP
OP Gives Op status to a selected nick on a channel
CHAN_HELP_CMD_TOPIC
TOPIC Manipulate the topic of the specified channel
CHAN_HELP_CMD_UNBAN
UNBAN Remove all bans preventing you from entering a channel
CHAN_HELP_CMD_VOICE
VOICE Voices a selected nick on a channel
CHAN_HELP_CMD_VOP
VOP Maintains the VOP (VOicePeople) list for a channel
CHAN_HELP_CMD_DEHALFOP
DEHALFOP Dehalfops a selected nick on a channel
CHAN_HELP_CMD_DEOWNER
DEOWNER Removes your owner status on a channel
CHAN_HELP_CMD_DEPROTECT
DEPROTECT Deprotects a selected nick on a channel
CHAN_HELP_CMD_HALFOP
HALFOP Halfops a selected nick on a channel
CHAN_HELP_CMD_HOP
HOP Maintains the HOP (HalfOP) list for a channel
CHAN_HELP_CMD_OWNER
OWNER Gives you owner status on channel
CHAN_HELP_CMD_PROTECT
PROTECT Protects a selected nick on a channel
CHAN_HELP_CMD_ADMIN
ADMIN Protects a selected nick on a channel
CHAN_HELP_CMD_DEADMIN
DEADMIN Deprotects a selected nick on a channel
CHAN_HELP_CMD_DEOP
DEOP Deops a selected nick on a channel
CHAN_HELP
%S allows you to register and control various
aspects of channels. %S can often prevent
malicious users from "taking over" channels by limiting
who is allowed channel operator privileges. Available
commands are listed below; to use them, type
%R%S command. For more information on a
specific command, type %R%S HELP command.
CHAN_HELP_EXPIRES
Note that any channel which is not used for %d days
(i.e. which no user on the channel's access list enters
for that period of time) will be automatically dropped.
CHAN_HELP_REGISTER
Syntax: REGISTER channel password description
Registers a channel in the %S database. In order
to use this command, you must first be a channel operator
on the channel you're trying to register. The password
is used with the IDENTIFY command to allow others to
make changes to the channel settings at a later time.
The last parameter, which must be included, is a
general description of the channel's purpose.
When you register a channel, you are recorded as the
"founder" of the channel. The channel founder is allowed
to change all of the channel settings for the channel;
%S will also automatically give the founder
channel-operator privileges when s/he enters the channel.
See the ACCESS command (%R%S HELP ACCESS) for
information on giving a subset of these privileges to
other channel users.
NOTICE: In order to register a channel, you must have
first registered your nickname. If you haven't,
%R%s HELP for information on how to do so.
CHAN_HELP_IDENTIFY
Syntax: IDENTIFY channel password
Authenticates you to %S as the founder of the given
channel. Many commands require you to use this command
before using them. The password should be the same one
you sent with the REGISTER command.
CHAN_HELP_LOGOUT
Syntax: LOGOUT channel nickname
This command will log the selected nickname out meaning they
would have to reidentify themselves to regain their access.
If you are the founder of the channel, you can log out anybody,
else you can only log out yourself.
CHAN_HELP_DROP
Syntax: DROP channel
Unregisters the named channel. Can only be used by
channel founder, who must use the IDENTIFY command first.
CHAN_HELP_SET
Syntax: SET channel option parameters
Allows the channel founder to set various channel options
and other information.
Available options:
FOUNDER Set the founder of a channel
SUCCESSOR Set the successor for a channel
PASSWORD Set the founder password
DESC Set the channel description
URL Associate a URL with the channel
EMAIL Associate an E-mail address with the channel
ENTRYMSG Set a message to be sent to users when they
enter the channel
BANTYPE Set how Services make bans on the channel
MLOCK Lock channel modes on or off
KEEPTOPIC Retain topic when channel is not in use
OPNOTICE Send a notice when OP/DEOP commands are used
PEACE Regulate the use of critical commands
PRIVATE Hide channel from LIST command
RESTRICTED Restrict access to the channel
SECURE Activate %S security features
SECUREOPS Stricter control of chanop status
SECUREFOUNDER Stricter control of channel founder status
SIGNKICK Sign kicks that are done with KICK command
TOPICLOCK Topic can only be changed with TOPIC
XOP Toggle the user privilege system
Type %R%S HELP SET option for more information on a
particular option.
CHAN_HELP_SET_FOUNDER
Syntax: SET channel FOUNDER nick
Changes the founder of a channel. The new nickname must
be a registered one.
CHAN_HELP_SET_SUCCESSOR
Syntax: SET channel SUCCESSOR nick
Changes the successor of a channel. If the founder's
nickname expires or is dropped while the channel is still
registered, the successor will become the new founder of the
channel. However, if the successor already has too many
channels registered (%d), the channel will be dropped
instead, just as if no successor had been set. The new
nickname must be a registered one.
CHAN_HELP_SET_PASSWORD
Syntax: SET channel PASSWORD password
Sets the password used to identify as the founder of the
channel.
CHAN_HELP_SET_DESC
Syntax: SET channel DESC description
Sets the description for the channel, which shows up with
the LIST and INFO commands.
CHAN_HELP_SET_URL
Syntax: SET channel URL [url]
Associates the given URL with the channel. This URL will
be displayed whenever someone requests information on the
channel with the INFO command. If no parameter is given,
deletes any current URL for the channel.
CHAN_HELP_SET_EMAIL
Syntax: SET channel EMAIL [address]
Associates the given E-mail address with the channel.
This address will be displayed whenever someone requests
information on the channel with the INFO command. If no
parameter is given, deletes any current E-mail address for
the channel.
CHAN_HELP_SET_ENTRYMSG
Syntax: SET channel ENTRYMSG [message]
Sets the message which will be sent via /notice to users
when they enter the channel. If no parameter is given,
causes no message to be sent upon entering the channel.
CHAN_HELP_SET_BANTYPE
Syntax: SET channel BANTYPE bantype
Sets the ban type that will be used by services whenever
they need to ban someone from your channel.
bantype is a number between 0 and 3 that means:
0: ban in the form *!user@host
1: ban in the form *!*user@host
2: ban in the form *!*@host
3: ban in the form *!*user@*.domain
CHAN_HELP_SET_KEEPTOPIC
Syntax: SET channel KEEPTOPIC {ON | OFF}
Enables or disables the topic retention option for a
channel. When topic retention is set, the topic for the
channel will be remembered by %S even after the
last user leaves the channel, and will be restored the
next time the channel is created.
CHAN_HELP_SET_TOPICLOCK
Syntax: SET channel TOPICLOCK {ON | OFF}
Enables or disables the topic lock option for a channel.
When topic lock is set, %S will not allow the
channel topic to be changed except via the TOPIC
command.
CHAN_HELP_SET_MLOCK
Syntax: SET channel MLOCK modes
Sets the mode-lock parameter for the channel. %S
allows you to define certain channel modes to be always
on, off or free to be either on or off.
The modes parameter is constructed exactly the same way
as a /MODE command; that is, modes followed by a + are
locked on, and modes followed by a - are locked off. Note,
however, that unlike the /MODE command, each use of
SET MLOCK will remove all modes previously locked before
setting the new!
Warning: If you set a mode-locked key, as in the second
example below, you should also set the RESTRICTED option for
the channel (see HELP SET RESTRICTED), or anyone entering
the channel when it is empty will be able to see the key!
Examples:
SET #channel MLOCK +nt-iklps
Forces modes n and t on, and modes i, k, l, p, and
s off. Mode m is left free to be either on or off.
SET #channel MLOCK +knst-ilmp my-key
Forces modes k, n, s, and t on, and modes i, l, m,
and p off. Also forces the channel key to be
"my-key".
SET #channel MLOCK +
Removes the mode lock; all channel modes are free
to be either on or off.
CHAN_HELP_SET_PEACE
Syntax: SET channel PEACE {ON | OFF}
Enables or disables the peace option for a channel.
When peace is set, a user won't be able to kick,
ban or remove a channel status of a user that has
a level superior or equal to his via %S commands.
CHAN_HELP_SET_PRIVATE
Syntax: SET channel PRIVATE {ON | OFF}
Enables or disables the private option for a channel.
When private is set, a %R%S LIST will not
include the channel in any lists.
CHAN_HELP_SET_RESTRICTED
Syntax: SET channel RESTRICTED {ON | OFF}
Enables or disables the restricted access option for a
channel. When restricted access is set, users not on
the access list will instead be kicked and banned from the channel.
CHAN_HELP_SET_SECURE
Syntax: SET channel SECURE {ON | OFF}
Enables or disables %S's security features for a
channel. When SECURE is set, only users who have
registered their nicknames with %s and IDENTIFY'd
with their password will be given access to the channel
as controlled by the access list.
CHAN_HELP_SET_SECUREOPS
Syntax: SET channel SECUREOPS {ON | OFF}
Enables or disables the secure ops option for a channel.
When secure ops is set, users who are not on the userlist
will not be allowed chanop status.
CHAN_HELP_SET_SECUREFOUNDER
Syntax: SET channel SECUREFOUNDER {ON | OFF}
Enables or disables the secure founder option for a channel.
When secure founder is set, only the real founder will be
able to drop the channel, change its password, its founder and its
successor, and not those who are IDENTIFY'd with %S.
CHAN_HELP_SET_SIGNKICK
Syntax: SET channel SIGNKICK {ON | LEVEL | OFF}
Enables or disables signed kicks for a
channel. When SIGNKICK is set, kicks issued with
%S KICK command will have the nick that used the
command in their reason.
If you use LEVEL, those who have a level that is superior
or equal to the SIGNKICK level on the channel won't have their
kicks signed. See %R%S HELP LEVELS for more information.
CHAN_HELP_SET_XOP
Syntax: SET channel XOP {ON | OFF}
Enables or disables the xOP lists system for a channel.
When XOP is set, you have to use the AOP/SOP/VOP
commands in order to give channel privileges to
users, else you have to use the ACCESS command.
Technical Note: when you switch from access list to xOP
lists system, your level definitions and user levels will be
changed, so you won't find the same values if you
switch back to access system!
You should also check that your users are in the good xOP
list after the switch from access to xOP lists, because the
guess is not always perfect... in fact, it is not recommended
to use the xOP lists if you changed level definitions with
the LEVELS command.
Switching from xOP lists system to access list system
causes no problem though.
CHAN_HELP_SET_OPNOTICE
Syntax: SET channel OPNOTICE {ON | OFF}
Enables or disables the op-notice option for a channel.
When op-notice is set, %S will send a notice to the
channel whenever the OP or DEOP commands are used for a user
in the channel.
CHAN_HELP_AOP
Syntax: AOP channel ADD nick
AOP channel DEL {nick | entry-num | list}
AOP channel LIST [mask | list]
AOP channel CLEAR
Maintains the AOP (AutoOP) list for a channel. The AOP
list gives users the right to be auto-opped on your channel,
to unban or invite themselves if needed, to have their
greet message showed on join, and so on.
The AOP ADD command adds the given nickname to the
AOP list.
The AOP DEL command removes the given nick from the
AOP list. If a list of entry numbers is given, those
entries are deleted. (See the example for LIST below.)
The AOP LIST command displays the AOP list. If
a wildcard mask is given, only those entries matching the
mask are displayed. If a list of entry numbers is given,
only those entries are shown; for example:
AOP #channel LIST 2-5,7-9
Lists AOP entries numbered 2 through 5 and
7 through 9.
The AOP CLEAR command clears all entries of the
AOP list.
The AOP ADD and AOP DEL commands are limited to
SOPs or above, while the AOP CLEAR command can only
be used by the channel founder. However, any user on the
AOP list may use the AOP LIST command.
This command may have been disabled for your channel, and
in that case you need to use the access list. See
%R%S HELP ACCESS for information about the access list,
and %R%S HELP SET XOP to know how to toggle between
the access list and xOP list systems.
CHAN_HELP_HOP
Syntax: HOP channel ADD nick
HOP channel DEL {nick | entry-num | list}
HOP channel LIST [mask | list]
HOP channel CLEAR
Maintains the HOP (HalfOP) list for a channel. The HOP
list gives users the right to be auto-halfopped on your
channel.
The HOP ADD command adds the given nickname to the
HOP list.
The HOP DEL command removes the given nick from the
HOP list. If a list of entry numbers is given, those
entries are deleted. (See the example for LIST below.)
The HOP LIST command displays the HOP list. If
a wildcard mask is given, only those entries matching the
mask are displayed. If a list of entry numbers is given,
only those entries are shown; for example:
HOP #channel LIST 2-5,7-9
Lists HOP entries numbered 2 through 5 and
7 through 9.
The HOP CLEAR command clears all entries of the
HOP list.
The HOP ADD, HOP DEL and HOP LIST commands are
limited to AOPs or above, while the HOP CLEAR command
can only be used by the channel founder.
This command may have been disabled for your channel, and
in that case you need to use the access list. See
%R%S HELP ACCESS for information about the access list,
and %R%S HELP SET XOP to know how to toggle between
the access list and xOP list systems.
CHAN_HELP_SOP
Syntax: SOP channel ADD nick
SOP channel DEL {nick | entry-num | list}
SOP channel LIST [mask | list]
SOP channel CLEAR
Maintains the SOP (SuperOP) list for a channel. The SOP
list gives users all rights given by the AOP list, and adds
those needed to use the AutoKick and the BadWords lists,
to send and read channel memos, and so on.
The SOP ADD command adds the given nickname to the
SOP list.
The SOP DEL command removes the given nick from the
SOP list. If a list of entry numbers is given, those
entries are deleted. (See the example for LIST below.)
The SOP LIST command displays the SOP list. If
a wildcard mask is given, only those entries matching the
mask are displayed. If a list of entry numbers is given,
only those entries are shown; for example:
SOP #channel LIST 2-5,7-9
Lists AOP entries numbered 2 through 5 and
7 through 9.
The SOP CLEAR command clears all entries of the
SOP list.
The SOP ADD, SOP DEL and SOP CLEAR commands are
limited to the channel founder. However, any user on the
AOP list may use the SOP LIST command.
This command may have been disabled for your channel, and
in that case you need to use the access list. See
%R%S HELP ACCESS for information about the access list,
and %R%S HELP SET XOP to know how to toggle between
the access list and xOP list systems.
CHAN_HELP_VOP
Syntax: VOP channel ADD nick
VOP channel DEL {nick | entry-num | list}
VOP channel LIST [mask | list]
VOP channel CLEAR
Maintains the VOP (VOicePeople) list for a channel.
The VOP list allows users to be auto-voiced and to voice
themselves if they aren't.
The VOP ADD command adds the given nickname to the
VOP list.
The VOP DEL command removes the given nick from the
VOP list. If a list of entry numbers is given, those
entries are deleted. (See the example for LIST below.)
The VOP LIST command displays the VOP list. If
a wildcard mask is given, only those entries matching the
mask are displayed. If a list of entry numbers is given,
only those entries are shown; for example:
VOP #channel LIST 2-5,7-9
Lists VOP entries numbered 2 through 5 and
7 through 9.
The VOP CLEAR command clears all entries of the
VOP list.
The VOP ADD, VOP DEL and VOP LIST commands are
limited to AOPs or above, while the VOP CLEAR command
can only be used by the channel founder.
This command may have been disabled for your channel, and
in that case you need to use the access list. See
%R%S HELP ACCESS for information about the access list,
and %R%S HELP SET XOP to know how to toggle between
the access list and xOP list systems.
CHAN_HELP_ACCESS
Syntax: ACCESS channel ADD nick level
ACCESS channel DEL {nick | entry-num | list}
ACCESS channel LIST [mask | list]
ACCESS channel CLEAR
Maintains the access list for a channel. The access
list specifies which users are allowed chanop status or
access to %S commands on the channel. Different
user levels allow for access to different subsets of
privileges; %R%S HELP ACCESS LEVELS for more
specific information. Any nick not on the access list has
a user level of 0.
The ACCESS ADD command adds the given nickname to the
access list with the given user level; if the nick is
already present on the list, its access level is changed to
the level specified in the command. The level specified
must be less than that of the user giving the command, and
if the nick is already on the access list, the current
access level of that nick must be less than the access level
of the user giving the command.
The ACCESS DEL command removes the given nick from the
access list. If a list of entry numbers is given, those
entries are deleted. (See the example for LIST below.)
The ACCESS LIST command displays the access list. If
a wildcard mask is given, only those entries matching the
mask are displayed. If a list of entry numbers is given,
only those entries are shown; for example:
ACCESS #channel LIST 2-5,7-9
Lists access entries numbered 2 through 5 and
7 through 9.
The ACCESS CLEAR command clears all entries of the
access list.
CHAN_HELP_ACCESS_LEVELS
User access levels
By default, the following access levels are defined:
Founder Full access to %S functions; automatic
opping upon entering channel. Note
that only one person may have founder
status (it cannot be given using the
ACCESS command).
10 Access to AKICK command; automatic opping.
5 Automatic opping.
3 Automatic voicing.
0 No special privileges; can be opped by other
ops (unless secure-ops is set).
<0 May not be opped.
These levels may be changed, or new ones added, using the
LEVELS command; type %R%S HELP LEVELS for
information.
CHAN_HELP_AKICK
Syntax: AKICK channel ADD {nick | mask} [reason]
AKICK channel STICK mask
AKICK channel UNSTICK mask
AKICK channel DEL {nick | mask | entry-num | list}
AKICK channel LIST [mask | entry-num | list]
AKICK channel VIEW [mask | entry-num | list]
AKICK channel ENFORCE
AKICK channel CLEAR
Maintains the AutoKick list for a channel. If a user
on the AutoKick list attempts to join the channel,
%S will ban that user from the channel, then kick
the user.
The AKICK ADD command adds the given nick or usermask
to the AutoKick list. If a reason is given with
the command, that reason will be used when the user is
kicked; if not, the default reason is "You have been
banned from the channel".
When akicking a registered nick the nickserv account
will be added to the akick list instead of the mask.
All users within that nickgroup will then be akicked.
The AKICK STICK command permanently bans the given mask
on the channel. If someone tries to remove the ban, %S
will automatically set it again. You can't use it for
registered nicks.
The AKICK UNSTICK command cancels the effect of the
AKICK STICK command, so you'll be able to unset the
ban again on the channel.
The AKICK DEL command removes the given nick or mask
from the AutoKick list. It does not, however, remove any
bans placed by an AutoKick; those must be removed
manually.
The AKICK LIST command displays the AutoKick list, or
optionally only those AutoKick entries which match the
given mask.
The AKICK VIEW command is a more verbose version of
AKICK LIST command.
The AKICK ENFORCE command causes %S to enforce the
current AKICK list by removing those users who match an
AKICK mask.
The AKICK CLEAR command clears all entries of the
akick list.
CHAN_HELP_LEVELS
Syntax: LEVELS channel SET type level
LEVELS channel {DIS | DISABLE} type
LEVELS channel LIST
LEVELS channel RESET
The LEVELS command allows fine control over the meaning of
the numeric access levels used for channels. With this
command, you can define the access level required for most
of %S's functions. (The SET FOUNDER and SET PASSWORD
commands, as well as this command, are always restricted to
the channel founder.)
LEVELS SET allows the access level for a function or group of
functions to be changed. LEVELS DISABLE (or DIS for short)
disables an automatic feature or disallows access to a
function by anyone other than the channel founder.
LEVELS LIST shows the current levels for each function or
group of functions. LEVELS RESET resets the levels to the
default levels of a newly-created channel (see
HELP ACCESS LEVELS).
For a list of the features and functions whose levels can be
set, see HELP LEVELS DESC.
CHAN_HELP_LEVELS_DESC
The following feature/function names are understood. Note
that the levels for AUTODEOP and NOJOIN are maximum levels,
while all others are minimum levels.
CHAN_HELP_LEVELS_DESC_FORMAT
%-*s %s
CHAN_HELP_INFO
Syntax: INFO channel [ALL]
Lists information about the named registered channel,
including its founder, time of registration, last time
used, description, and mode lock, if any. If ALL is
specified, the entry message and successor will also
be displayed.
By default, the ALL option is limited to those with
founder access on the channel.
CHAN_HELP_LIST
Syntax: LIST pattern
Lists all registered channels matching the given pattern.
(Channels with the PRIVATE option set are not listed.)
Note that a preceding '#' specifies a range, channel names
are to be written without '#'.
CHAN_HELP_OP
Syntax: OP [#channel [nick]]
Ops a selected nick on a channel. If nick is not given,
it will op you. If channel and nick are not given,
it will op you on all channels you're on, provided you
have the rights to.
By default, limited to AOPs or those with level 5 access
and above on the channel.
CHAN_HELP_DEOP
Syntax: DEOP [#channel [nick]]
Deops a selected nick on a channel. If nick is not given,
it will deop you. If channel and nick are not given,
it will deop you on all channels you're on, provided you
have the rights to.
By default, limited to AOPs or those with level 5 access
and above on the channel.
CHAN_HELP_VOICE
Syntax: VOICE [#channel [nick]]
Voices a selected nick on a channel. If nick is not given,
it will voice you. If channel and nick are not given,
it will voice you on all channels you're on, provided you
have the rights to.
By default, limited to AOPs or those with level 5 access
and above on the channel, or to VOPs or those with level 3
and above for self voicing.
CHAN_HELP_DEVOICE
Syntax: DEVOICE [#channel [nick]]
Devoices a selected nick on a channel. If nick is not given,
it will devoice you. If channel and nick are not given,
it will devoice you on all channels you're on, provided you
have the rights to.
By default, limited to AOPs or those with level 5 access
and above on the channel, or to VOPs or those with level 3
and above for self devoicing.
CHAN_HELP_HALFOP
Syntax: HALFOP [#channel [nick]]
Halfops a selected nick on a channel. If nick is not given,
it will halfop you. If channel and nick are not given,
it will halfop you on all channels you're on, provided you
have the rights to.
By default, limited to AOPs and those with level 5 access
and above on the channel, or to HOPs or those with level 4
and above for self halfopping.
CHAN_HELP_DEHALFOP
Syntax: DEHALFOP [#channel [nick]]
Dehalfops a selected nick on a channel. If nick is not given,
it will dehalfop you. If channel and nick are not given,
it will dehalfop you on all channels you're on, provided you
have the rights to.
By default, limited to AOPs and those with level 5 access
and above on the channel, or to HOPs or those with level 4
and above for self dehalfopping.
CHAN_HELP_PROTECT
Syntax: PROTECT [#channel [nick]]
Protects a selected nick on a channel. If nick is not given,
it will protect you. If channel and nick are not given,
it will protect you on all channels you're on, provided you
have the rights to.
By default, limited to the founder, or to SOPs or those with
level 10 and above on the channel for self protecting.
CHAN_HELP_DEPROTECT
Syntax: DEPROTECT [#channel [nick]]
Deprotects a selected nick on a channel. If nick is not given,
it will deprotect you. If channel and nick are not given,
it will deprotect you on all channels you're on, provided you
have the rights to.
By default, limited to the founder, or to SOPs or those with
level 10 and above on the channel for self deprotecting.
CHAN_HELP_OWNER
Syntax: OWNER [#channel]
Gives you owner status on channel. If channel is not
given, it will give you owner status on all channels you're
on, provided you have the rights to.
Limited to those with founder access on the channel.
CHAN_HELP_DEOWNER
Syntax: DEOWNER [#channel]
Removes your owner status on channel. If channel is
not given, it will remove your owner status on all channels
you're on, provided you have the rights to.
Limited to those with founder access on the channel.
CHAN_HELP_INVITE
Syntax: INVITE channel
Tells %S to invite you into the given channel.
By default, limited to AOPs or those with level 5 and above
on the channel.
CHAN_HELP_UNBAN
Syntax: UNBAN channel
Tells %S to remove all bans preventing you from
entering the given channel.
By default, limited to AOPs or those with level 5 and above
on the channel.
CHAN_HELP_KICK
Syntax: KICK [#channel [nick [reason]]]
Kicks a selected nick on a channel. If nick is not given,
it will kick you. If channel and nick are not given,
it will kick you on all channels you're on, provided you
have the rights to.
By default, limited to AOPs or those with level 5 access
and above on the channel.
CHAN_HELP_BAN
Syntax: BAN [#channel [nick [reason]]]
Bans a selected nick on a channel. If nick is not given,
it will ban you. If channel and nick are not given,
it will ban you on all channels you're on, provided you
have the rights to.
By default, limited to AOPs or those with level 5 access
and above on the channel.
CHAN_HELP_TOPIC
Syntax: TOPIC channel [topic]
Causes %S to set the channel topic to the one
specified. If topic is not given, then an empty topic
is set. This command is most useful in conjunction
with SET TOPICLOCK. See %R%S HELP SET TOPICLOCK
for more information.
By default, limited to those with founder access on the
channel.
CHAN_HELP_CLEAR
Syntax: CLEAR channel what
Tells %S to clear certain settings on a channel. what
can be any of the following:
MODES Resets all modes on the channel (i.e. clears
modes i,k,l,m,n,p,s,t).
BANS Clears all bans on the channel.
EXCEPTS Clears all excepts on the channel.
INVITES Clears all invites on the channel.
OPS Removes channel-operator status (mode +o) from
all channel operators.
HOPS Removes channel-halfoperator status (mode +h) from
all channel halfoperators, if supported.
VOICES Removes "voice" status (mode +v) from anyone
with that mode set.
USERS Removes (kicks) all users from the channel.
By default, limited to those with founder access on the
channel.
CHAN_HELP_GETKEY
Syntax: GETKEY channel
Returns the key of the given channel. This is a command
mainly intended to be used by bots and/or scripts, so
the output is in the following way:
KEY <channel> <key>
key is "NO KEY" if no key is set.
CHAN_HELP_SENDPASS
Syntax: SENDPASS channel
Send the password of the given channel to the e-mail address
set in the founder's nickname record. This command is really
useful to deal with lost passwords.
May be limited to IRC operators on certain networks.
This command is unavailable when encryption is enabled.
CHAN_SERVADMIN_HELP
Services admins can also drop any channel without needing
to identify via password, and may view the access, AKICK,
and level setting lists for any channel.
CHAN_SERVADMIN_HELP_LOGOUT
Syntax: LOGOUT channel [nickname]
This command will log the selected nickname out meaning they
would have to reidentify themselves to regain their access.
If you are the founder of the channel, you can log out anybody,
else you can only log out yourself.
If you are a Services admin, you can log out
anybody of any channel without having to be the founder
of the channel. Also, you can omit the nickname parameter;
this will log out all identified users from the channel.
CHAN_SERVADMIN_HELP_DROP
Syntax: DROP channel
Unregisters the named channel. Only Services admins
can drop a channel for which they have not identified.
CHAN_SERVADMIN_HELP_SET
Services admins can also set the option NOEXPIRE, with
which channels can be prevented from expiring.
Additionally, Services admins can set options for any
channel without identifying by password for the channel.
CHAN_SERVADMIN_HELP_SET_NOEXPIRE
Syntax: SET channel NOEXPIRE {ON | OFF}
Sets whether the given channel will expire. Setting this
to ON prevents the channel from expiring.
CHAN_SERVADMIN_HELP_INFO
Services admins can use the ALL parameter with any channel.
CHAN_SERVADMIN_HELP_LIST
Syntax: LIST pattern [FORBIDDEN] [SUSPENDED] [NOEXPIRE]
Lists all registered channels matching the given pattern.
Channels with the PRIVATE option set will only be displayed
to Services admins. Channels with the NOEXPIRE option set
will have a ! appended to the channel name for Services admins.
If the FORBIDDEN, SUSPENDED or NOEXPIRE options are given, only
channels which, respectively, are FORBIDden, SUSPENDed or have
the NOEXPIRE flag set will be displayed. If multiple options are
given, more types of channels will be displayed. These options are
limited to Services admins.
CHAN_SERVADMIN_HELP_GETPASS
Syntax: GETPASS channel
Returns the password for the given channel. Note that
whenever this command is used, a message including the
person who issued the command and the channel it was used
on will be logged and sent out as a WALLOPS/GLOBOPS.
CHAN_SERVADMIN_HELP_FORBID
Syntax: FORBID channel [reason]
Disallows anyone from registering or using the given
channel. May be cancelled by dropping the channel.
Reason may be required on certain networks.
CHAN_SERVADMIN_HELP_SUSPEND
Syntax: SUSPEND channel [reason]
Disallows anyone from registering or using the given
channel. May be cancelled by using the UNSUSPEND
command to preserve all previous channel data/settings.
Reason may be required on certain networks.
CHAN_SERVADMIN_HELP_UNSUSPEND
Syntax: UNSUSPEND channel
Releases a suspended channel. All data and settings
are preserved from before the suspension.
CHAN_SERVADMIN_HELP_STATUS
Syntax: STATUS channel nickname
Returns the current access level of the given nick on the
given channel. The reply is of the form:
STATUS channel nickname access-level
If an error occurs, the reply will be in the form:
STATUS ERROR error-message
###########################################################################
#
# MemoServ help messages
#
###########################################################################
MEMO_HELP_CMD_SEND
SEND Send a memo to a nick or channel
MEMO_HELP_CMD_CANCEL
CANCEL Cancel last memo you sent
MEMO_HELP_CMD_LIST
LIST List your memos
MEMO_HELP_CMD_READ
READ Read a memo or memos
MEMO_HELP_CMD_DEL
DEL Delete a memo or memos
MEMO_HELP_CMD_SET
SET Set options related to memos
MEMO_HELP_CMD_INFO
INFO Displays information about your memos
MEMO_HELP_CMD_RSEND
RSEND Sends a memo and requests a read receipt
MEMO_HELP_CMD_CHECK
CHECK Checks if last memo to a nick was read
MEMO_HELP_CMD_SENDALL
SENDALL Send a memo to all registered users
MEMO_HELP_CMD_STAFF
STAFF Send a memo to all opers/admins
MEMO_HELP_HEADER
%S is a utility allowing IRC users to send short
messages to other IRC users, whether they are online at
the time or not, or to channels(*). Both the sender's
nickname and the target nickname or channel must be
registered in order to send a memo.
%S's commands include:
MEMO_HELP_ADMIN
not used.
MEMO_HELP_OPER
not used.
MEMO_HELP_FOOTER
Type %R%S HELP command for help on any of the
above commands.
(*) By default, any user with at least level 10 access on a
channel can read that channel's memos. This can be
changed with the %s LEVELS command.
MEMO_HELP_SEND
Syntax: SEND {nick | channel} memo-text
Sends the named nick or channel a memo containing
memo-text. When sending to a nickname, the recipient will
receive a notice that he/she has a new memo. The target
nickname/channel must be registered.
MEMO_HELP_CANCEL
Syntax: CANCEL {nick | channel}
Cancels the last memo you sent to the given nick or channel,
provided it has not been read at the time you use the command.
MEMO_HELP_LIST
Syntax: LIST [channel] [list | NEW]
Lists any memos you currently have. With NEW, lists only
new (unread) memos. Unread memos are marked with a "*"
to the left of the memo number. You can also specify a list
of numbers, as in the example below:
LIST 2-5,7-9
Lists memos numbered 2 through 5 and 7 through 9.
MEMO_HELP_READ
Syntax: READ [channel] {num | list | LAST | NEW}
Sends you the text of the memos specified. If LAST is
given, sends you the memo you most recently received. If
NEW is given, sends you all of your new memos. Otherwise,
sends you memo number num. You can also give a list of
numbers, as in this example:
READ 2-5,7-9
Displays memos numbered 2 through 5 and 7 through 9.
MEMO_HELP_DEL
Syntax: DEL [channel] {num | list | LAST | ALL}
Deletes the specified memo or memos. You can supply
multiple memo numbers or ranges of numbers instead of a
single number, as in the second example below.
If LAST is given, the last memo will be deleted.
If ALL is given, deletes all of your memos.
Examples:
DEL 1
Deletes your first memo.
DEL 2-5,7-9
Deletes memos numbered 2 through 5 and 7 through 9.
MEMO_HELP_SET
Syntax: SET option parameters
Sets various memo options. option can be one of:
NOTIFY Changes when you will be notified about
new memos (only for nicknames)
LIMIT Sets the maximum number of memos you can
receive
Type %R%S HELP SET option for more information
on a specific option.
MEMO_HELP_SET_NOTIFY
Syntax: SET NOTIFY {ON | LOGON | NEW | MAIL | NOMAIL | OFF}
Changes when you will be notified about new memos:
ON You will be notified of memos when you log on,
when you unset /AWAY, and when they are sent
to you.
LOGON You will only be notified of memos when you log
on or when you unset /AWAY.
NEW You will only be notified of memos when they
are sent to you.
MAIL You will be notified of memos by email aswell as
any other settings you have.
NOMAIL You will not be notified of memos by email.
OFF You will not receive any notification of memos.
ON is essentially LOGON and NEW combined.
MEMO_HELP_SET_LIMIT
Syntax: SET LIMIT [channel] limit
Sets the maximum number of memos you (or the given channel)
are allowed to have. If you set this to 0, no one will be
able to send any memos to you. However, you cannot set
this any higher than %d.
MEMO_HELP_INFO
Syntax: INFO [channel]
Displays information on the number of memos you have, how
many of them are unread, and how many total memos you can
receive. With a parameter, displays the same information
for the given channel.
MEMO_SERVADMIN_HELP_SET_LIMIT
Syntax: SET LIMIT [user | channel] {limit | NONE} [HARD]
Sets the maximum number of memos a user or channel is
allowed to have. Setting the limit to 0 prevents the user
from receiving any memos; setting it to NONE allows the
user to receive and keep as many memos as they want. If
you do not give a nickname or channel, your own limit is
set.
Adding HARD prevents the user from changing the limit. Not
adding HARD has the opposite effect, allowing the user to
change the limit (even if a previous limit was set with
HARD).
This use of the SET LIMIT command is limited to Services
admins. Other users may only enter a limit for themselves
or a channel on which they have such privileges, may not
remove their limit, may not set a limit above %d, and may
not set a hard limit.
MEMO_SERVADMIN_HELP_INFO
Syntax: INFO [nick | channel]
Without a parameter, displays information on the number of
memos you have, how many of them are unread, and how many
total memos you can receive.
With a channel parameter, displays the same information for
the given channel.
With a nickname parameter, displays the same information
for the given nickname. This use limited to Services
admins.
MEMO_HELP_STAFF
Syntax: STAFF memo-text
Sends all services staff a memo containing memo-text.
Note: If you have opers on both the oper list and the
admin list they will receive the memo twice. The same
applies for oper's on the Root list as well as other
lists.
MEMO_HELP_SENDALL
Syntax: SENDALL memo-text
Sends all registered users a memo containing memo-text.
MEMO_HELP_RSEND
Syntax: RSEND {nick | channel} memo-text
Sends the named nick or channel a memo containing
memo-text. When sending to a nickname, the recipient will
receive a notice that he/she has a new memo. The target
nickname/channel must be registered.
Once the memo is read by its recipient, an automatic notification
memo will be sent to the sender informing him/her that the memo
has been read.
MEMO_HELP_CHECK
Syntax: CHECK nick
Checks whether the _last_ memo you sent to nick has been read
or not. Note that this does only work with nicks, not with chans.
###########################################################################
#
# OperServ help messages
#
###########################################################################
OPER_HELP_CMD_GLOBAL
GLOBAL Send a message to all users
OPER_HELP_CMD_STATS
STATS Show status of Services and network
OPER_HELP_CMD_OPER
OPER Modify the Services operator list
OPER_HELP_CMD_ADMIN
ADMIN Modify the Services admin list
OPER_HELP_CMD_STAFF
STAFF Display Services staff and online status
OPER_HELP_CMD_MODE
MODE Change a channel's modes
OPER_HELP_CMD_KICK
KICK Kick a user from a channel
OPER_HELP_CMD_CLEARMODES
CLEARMODES Clear modes of a channel
OPER_HELP_CMD_KILLCLONES
KILLCLONES Kill all users that have a certain host
OPER_HELP_CMD_AKILL
AKILL Manipulate the AKILL list
OPER_HELP_CMD_SGLINE
SGLINE Manipulate the SGLINE list
OPER_HELP_CMD_SQLINE
SQLINE Manipulate the SQLINE list
OPER_HELP_CMD_SZLINE
SZLINE Manipulate the SZLINE list
OPER_HELP_CMD_CHANLIST
CHANLIST Lists all channel records
OPER_HELP_CMD_USERLIST
USERLIST Lists all user records
OPER_HELP_CMD_LOGONNEWS
LOGONNEWS Define messages to be shown to users at logon
OPER_HELP_CMD_RANDOMNEWS
RANDOMNEWS Define messages to be randomly shown to users
at logon
OPER_HELP_CMD_OPERNEWS
OPERNEWS Define messages to be shown to users who oper
OPER_HELP_CMD_SESSION
SESSION View the list of host sessions
OPER_HELP_CMD_EXCEPTION
EXCEPTION Modify the session-limit exception list
OPER_HELP_CMD_NOOP
NOOP Temporarily remove all O:lines of a server
remotely
OPER_HELP_CMD_JUPE
JUPE "Jupiter" a server
OPER_HELP_CMD_IGNORE
IGNORE Modify the Services ignore list
OPER_HELP_CMD_SET
SET Set various global Services options
OPER_HELP_CMD_RELOAD
RELOAD Reload services' configuration file
OPER_HELP_CMD_UPDATE
UPDATE Force the Services databases to be
updated on disk immediately
OPER_HELP_CMD_RESTART
RESTART Save databases and restart Services
OPER_HELP_CMD_QUIT
QUIT Terminate the Services program with no save
OPER_HELP_CMD_SHUTDOWN
SHUTDOWN Terminate the Services program with save
OPER_HELP_CMD_DEFCON
DEFCON Manipulate the DefCon system
OPER_HELP_CMD_CHANKILL
CHANKILL AKILL all users on a specific channel
OPER_HELP_CMD_OLINE
OLINE Give Operflags to a certain user
OPER_HELP_CMD_UMODE
UMODE Change a user's modes
OPER_HELP_CMD_SVSNICK
SVSNICK Forcefully change a user's nickname
OPER_HELP_CMD_MODLOAD
MODLOAD Load a module
OPER_HELP_CMD_MODUNLOAD
MODUNLOAD Un-Load a module
OPER_HELP_CMD_MODINFO
MODINFO Info about a loaded module
OPER_HELP_CMD_MODLIST
MODLIST List loaded modules
OPER_HELP
%S commands:
OPER_HELP_LOGGED
Notice: All commands sent to %S are logged!
OPER_HELP_GLOBAL
Syntax: GLOBAL message
Allows Administrators to send messages to all users on the
network. The message will be sent from the nick %s.
OPER_HELP_STATS
Syntax: STATS [AKILL | ALL | RESET | MEMORY | UPLINK]
Without any option, shows the current number of users and
IRCops online (excluding Services), the highest number of
users online since Services was started, and the length of
time Services has been running.
With the AKILL option, displays the current size of the
AKILL list and the current default expiry time.
The RESET option currently resets the maximum user count
to the number of users currently present on the network.
The MEMORY option displays information on the memory
usage of Services. Using this option can freeze Services for
a short period of time on large networks; don't overuse it!
The UPLINK option displays information about the current
server Anope uses as an uplink to the network.
The ALL displays the user and uptime statistics, and
everything you'd see with MEMORY and UPLINK options.
UPTIME may be used as a synonym for STATS.
OPER_HELP_OPER
Syntax: OPER ADD nick
OPER DEL {nick | entry-num | list}
OPER LIST [mask | list]
OPER CLEAR
Allows the Services Root Admins to add or remove nicknames
to or from the Services operator list. A user whose nickname
is on the Services operator list and who has identified to
%s will be able to access Services operator commands.
The OPER ADD command adds the given nickname to the
Services operator list.
The OPER DEL command removes the given nick from the
Services operator list. If a list of entry numbers is given,
those entries are deleted. (See the example for LIST below.)
The OPER LIST command displays the Services operator list.
If a wildcard mask is given, only those entries matching the
mask are displayed. If a list of entry numbers is given,
only those entries are shown; for example:
OPER LIST 2-5,7-9
Lists Services operator entries numbered 2 through
5 and 7 through 9.
The OPER CLEAR command clears all entries of the
Services operator list.
Any IRC operator may use the OPER LIST form of the command.
OPER_HELP_ADMIN
Syntax: ADMIN ADD nick
ADMIN DEL {nick | entry-num | list}
ADMIN LIST [mask | list]
ADMIN CLEAR
Allows the Services root to add or remove nicknames
to or from the Services admin list. A user whose nickname
is on the Services admin list and who has identified to
%s will be able to access Services admin commands.
The ADMIN ADD command adds the given nickname to the
Services admin list.
The ADMIN DEL command removes the given nick from the
Services admin list. If a list of entry numbers is given,
those entries are deleted. (See the example for LIST below.)
The ADMIN LIST command displays the Services admin list.
If a wildcard mask is given, only those entries matching the
mask are displayed. If a list of entry numbers is given,
only those entries are shown; for example:
ADMIN LIST 2-5,7-9
Lists Services admin entries numbered 2 through
5 and 7 through 9.
The ADMIN CLEAR command clears all entries of the
Services admin list.
Any IRC operator may use the ADMIN LIST form of the command.
All other use limited to Services root.
OPER_HELP_IGNORE
Syntax: IGNORE {ADD|DEL|LIST|CLEAR} [time] [nick | mask]
Allows Services Admins to make Services ignore a nick or mask
for a certain time or until the next restart. The default
time format is seconds. You can specify it by using units.
Valid units are: s for seconds, m for minutes,
h for hours and d for days.
Combinations of these units are not permitted.
To make Services permanently ignore the user, type 0 as time.
When adding a mask, it should be in the format user@host
or nick!user@host, everything else will be considered a nick.
Wildcards are permitted.
Ignores will not be enforced on IRC Operators.
OPER_HELP_MODE
Syntax: MODE channel modes
Allows Services operators to set channel modes for any
channel. Parameters are the same as for the standard /MODE
command.
OPER_HELP_UMODE
Syntax: UMODE user modes
Allows Super Admins to set user modes for any user.
Parameters are the same as for the standard /MODE
command.
OPER_HELP_OLINE
Syntax: OLINE user flags
Allows Super Admins to give Operflags to any user.
Flags have to be prefixed with a "+" or a "-". To
remove all flags simply type a "-" instead of any flags.
OPER_HELP_CLEARMODES
Syntax: CLEARMODES channel [ALL]
Clears all binary modes (i,k,l,m,n,p,s,t) and bans from a
channel. If ALL is given, also clears all ops and
voices (+o and +v modes) from the channel.
OPER_HELP_KICK
Syntax: KICK channel user reason
Allows staff to kick a user from any channel.
Parameters are the same as for the standard /KICK
command. The kick message will have the nickname of the
IRCop sending the KICK command prepended; for example:
*** SpamMan has been kicked off channel #my_channel by %S (Alcan (Flood))
OPER_HELP_SVSNICK
Syntax: SVSNICK nick newnick
Forcefully changes a user's nickname from nick to newnick.
Limited to Super Admins.
OPER_HELP_AKILL
Syntax: AKILL ADD [+expiry] mask reason
AKILL DEL {mask | entry-num | list}
AKILL LIST [mask | list]
AKILL VIEW [mask | list]
AKILL CLEAR
Allows Services operators to manipulate the AKILL list. If
a user matching an AKILL mask attempts to connect, Services
will issue a KILL for that user and, on supported server
types, will instruct all servers to add a ban (K-line) for
the mask which the user matched.
AKILL ADD adds the given user@host/ip mask to the AKILL
list for the given reason (which must be given).
expiry is specified as an integer followed by one of d
(days), h (hours), or m (minutes). Combinations (such as
1h30m) are not permitted. If a unit specifier is not
included, the default is days (so +30 by itself means 30
days). To add an AKILL which does not expire, use +0. If the
usermask to be added starts with a +, an expiry time must
be given, even if it is the same as the default. The
current AKILL default expiry time can be found with the
STATS AKILL command.
The AKILL DEL command removes the given mask from the
AKILL list if it is present. If a list of entry numbers is
given, those entries are deleted. (See the example for LIST
below.)
The AKILL LIST command displays the AKILL list.
If a wildcard mask is given, only those entries matching the
mask are displayed. If a list of entry numbers is given,
only those entries are shown; for example:
AKILL LIST 2-5,7-9
Lists AKILL entries numbered 2 through 5 and 7
through 9.
AKILL VIEW is a more verbose version of AKILL LIST, and
will show who added an AKILL, the date it was added, and when
it expires, as well as the user@host/ip mask and reason.
AKILL CLEAR clears all entries of the AKILL list.
OPER_HELP_SGLINE
Syntax: SGLINE ADD [+expiry] mask:reason
SGLINE DEL {mask | entry-num | list}
SGLINE LIST [mask | list]
SGLINE VIEW [mask | list]
SGLINE CLEAR
Allows Services operators to manipulate the SGLINE list. If
a user with a realname matching an SGLINE mask attempts to
connect, Services will not allow it to pursue his IRC
session.
SGLINE ADD adds the given realname mask to the SGLINE
list for the given reason (which must be given).
expiry is specified as an integer followed by one of d
(days), h (hours), or m (minutes). Combinations (such as
1h30m) are not permitted. If a unit specifier is not
included, the default is days (so +30 by itself means 30
days). To add an SGLINE which does not expire, use +0. If the
realname mask to be added starts with a +, an expiry time must
be given, even if it is the same as the default. The
current SGLINE default expiry time can be found with the
STATS AKILL command.
Note: because the realname mask may contain spaces, the
separator between it and the reason is a colon.
The SGLINE DEL command removes the given mask from the
SGLINE list if it is present. If a list of entry numbers is
given, those entries are deleted. (See the example for LIST
below.)
The SGLINE LIST command displays the SGLINE list.
If a wildcard mask is given, only those entries matching the
mask are displayed. If a list of entry numbers is given,
only those entries are shown; for example:
SGLINE LIST 2-5,7-9
Lists SGLINE entries numbered 2 through 5 and 7
through 9.
SGLINE VIEW is a more verbose version of SGLINE LIST, and
will show who added an SGLINE, the date it was added, and when
it expires, as well as the realname mask and reason.
SGLINE CLEAR clears all entries of the SGLINE list.
OPER_HELP_SQLINE
Syntax: SQLINE ADD [+expiry] mask reason
SQLINE DEL {mask | entry-num | list}
SQLINE LIST [mask | list]
SQLINE VIEW [mask | list]
SQLINE CLEAR
Allows Services operators to manipulate the SQLINE list. If
a user with a nick matching an SQLINE mask attempts to
connect, Services will not allow it to pursue his IRC
session.
If the first character of the mask is #, services will
prevent the use of matching channels (on IRCds that
support it).
SQLINE ADD adds the given mask to the SQLINE
list for the given reason (which must be given).
expiry is specified as an integer followed by one of d
(days), h (hours), or m (minutes). Combinations (such as
1h30m) are not permitted. If a unit specifier is not
included, the default is days (so +30 by itself means 30
days). To add an SQLINE which does not expire, use +0.
If the mask to be added starts with a +, an expiry time
must be given, even if it is the same as the default. The
current SQLINE default expiry time can be found with the
STATS AKILL command.
The SQLINE DEL command removes the given mask from the
SQLINE list if it is present. If a list of entry numbers is
given, those entries are deleted. (See the example for LIST
below.)
The SQLINE LIST command displays the SQLINE list.
If a wildcard mask is given, only those entries matching the
mask are displayed. If a list of entry numbers is given,
only those entries are shown; for example:
SQLINE LIST 2-5,7-9
Lists SQLINE entries numbered 2 through 5 and 7
through 9.
SQLINE VIEW is a more verbose version of SQLINE LIST, and
will show who added an SQLINE, the date it was added, and when
it expires, as well as the mask and reason.
SQLINE CLEAR clears all entries of the SQLINE list.
OPER_HELP_SZLINE
Syntax: SZLINE ADD [+expiry] mask reason
SZLINE DEL {mask | entry-num | list}
SZLINE LIST [mask | list]
SZLINE VIEW [mask | list]
SZLINE CLEAR
Allows Services operators to manipulate the SZLINE list. If
a user with an IP matching an SZLINE mask attempts to
connect, Services will not allow it to pursue his IRC
session (and this, whether the IP has a PTR RR or not).
SZLINE ADD adds the given IP mask to the SZLINE
list for the given reason (which must be given).
expiry is specified as an integer followed by one of d
(days), h (hours), or m (minutes). Combinations (such as
1h30m) are not permitted. If a unit specifier is not
included, the default is days (so +30 by itself means 30
days). To add an SZLINE which does not expire, use +0. If the
realname mask to be added starts with a +, an expiry time must
be given, even if it is the same as the default. The
current SZLINE default expiry time can be found with the
STATS AKILL command.
The SZLINE DEL command removes the given mask from the
SZLINE list if it is present. If a list of entry numbers is
given, those entries are deleted. (See the example for LIST
below.)
The SZLINE LIST command displays the SZLINE list.
If a wildcard mask is given, only those entries matching the
mask are displayed. If a list of entry numbers is given,
only those entries are shown; for example:
SZLINE LIST 2-5,7-9
Lists SZLINE entries numbered 2 through 5 and 7
through 9.
SZLINE VIEW is a more verbose version of SZLINE LIST, and
will show who added an SZLINE, the date it was added, and when
it expires, as well as the IP mask and reason.
SZLINE CLEAR clears all entries of the SZLINE list.
OPER_HELP_SET
Syntax: SET option setting
Sets various global Services options. Option names
currently defined are:
READONLY Set read-only or read-write mode
LOGCHAN Report log messages to a channel
DEBUG Activate or deactivate debug mode
NOEXPIRE Activate or deactivate no expire mode
SUPERADMIN Activate or deactivate super-admin mode
SQL Activate or deactivate sql mode
IGNORE Activate or deactivate ignore mode
LIST List the options
OPER_HELP_SET_READONLY
Syntax: SET READONLY {ON | OFF}
Sets read-only mode on or off. In read-only mode, normal
users will not be allowed to modify any Services data,
including channel and nickname access lists, etc. IRCops
with sufficient Services privileges will be able to modify
Services' AKILL list and drop or forbid nicknames and
channels, but any such changes will not be saved unless
read-only mode is deactivated before Services is terminated
or restarted.
This option is equivalent to the command-line option
-readonly.
OPER_HELP_SET_LOGCHAN
Syntax: SET LOGCHAN {ON | OFF}
With this setting on, Services will send its logs to a specified
channel as well as the log file. LogChannel must also be defined
in the Services configuration file for this setting to be of any
use.
This option is equivalent to the command-line option -logchan.
Note: This can have strong security implications if your log
channel is not properly secured.
OPER_HELP_SET_DEBUG
Syntax: SET DEBUG {ON | OFF | num}
Sets debug mode on or off. In debug mode, all data sent to
and from Services as well as a number of other debugging
messages are written to the log file. If num is
given, debug mode is activated, with the debugging level set
to num.
This option is equivalent to the command-line option
-debug.
OPER_HELP_SET_NOEXPIRE
Syntax: SET NOEXPIRE {ON | OFF}
Sets no expire mode on or off. In no expire mode, nicks,
channels, akills and exceptions won't expire until the
option is unset.
This option is equivalent to the command-line option
-noexpire.
OPER_HELP_SET_SUPERADMIN
Syntax: SET SUPERADMIN {ON | OFF}
Setting this will grant you extra privileges such as the
ability to be "founder" on all channel's etc...
This option is not persistent, and should only be used when
needed, and set back to OFF when no longer needed.
OPER_HELP_SET_SQL
Syntax: SET SQL {ON | OFF}
Setting this will toggle Anope's usage of SQL, this should
be used to disable and enable SQL should your SQL server go down
while services are running.
OPER_HELP_SET_IGNORE
Syntax: SET IGNORE {ON | OFF}
Setting this will toggle Anope's usage of the IGNORE system
on or off.
OPER_HELP_SET_LIST
Syntax: SET LIST
Display the various %S settings
OPER_HELP_NOOP
Syntax: NOOP SET server
NOOP REVOKE server
NOOP SET remove all O:lines of the given
server and kill all IRCops currently on it to
prevent them from rehashing the server (because this
would just cancel the effect).
NOOP REVOKE makes all removed O:lines available again
on the given server.
Note: The server is not checked at all by the
Services.
OPER_HELP_JUPE
Syntax: JUPE server [reason]
Tells Services to jupiter a server -- that is, to create
a fake "server" connected to Services which prevents
the real server of that name from connecting. The jupe
may be removed using a standard SQUIT. If a reason is
given, it is placed in the server information field;
otherwise, the server information field will contain the
text "Juped by <nick>", showing the nickname of the
person who jupitered the server.
OPER_HELP_RAW
Syntax: RAW text
Sends a string of text directly to the server to which
Services is connected. This command has a very limited
range of uses, and can wreak havoc on a network if used
improperly. DO NOT USE THIS COMMAND unless you are
absolutely certain you know what you are doing!
OPER_HELP_UPDATE
Syntax: UPDATE
Causes Services to update all database files as soon as you
send the command.
OPER_HELP_RELOAD
Syntax: RELOAD
Causes Services to reload the configuration file. Note that
some directives still need the restart of the Services to
take effect (such as Services' nicknames, activation of the
session limitation, etc.)
OPER_HELP_QUIT
Syntax: QUIT
Causes Services to do an immediate shutdown; databases are
not saved. This command should not be used unless
damage to the in-memory copies of the databases is feared
and they should not be saved. For normal shutdowns, use the
SHUTDOWN command.
OPER_HELP_SHUTDOWN
Syntax: SHUTDOWN
Causes Services to save all databases and then shut down.
OPER_HELP_RESTART
Syntax: RESTART
Causes Services to save all databases and then restart
(i.e. exit and immediately re-run the executable).
OPER_HELP_CHANLIST
Syntax: CHANLIST [{pattern | nick} [SECRET]]
Lists all channels currently in use on the IRC network, whether they
are registered or not.
If pattern is given, lists only channels that match it. If a nickname
is given, lists only the channels the user using it is on. If SECRET is
specified, lists only channels matching pattern that have the +s or
+p mode.
OPER_HELP_USERLIST
Syntax: USERLIST [{pattern | channel} [INVISIBLE]]
Lists all users currently online on the IRC network, whether their
nick is registered or not.
If pattern is given, lists only users that match it (it must be in
the format nick!user@host). If channel is given, lists only users
that are on the given channel. If INVISIBLE is specified, only users
with the +i flag will be listed.
OPER_HELP_MODLOAD
Syntax: MODLOAD FileName
This command loads the module named FileName from the modules
directory.
OPER_HELP_MODUNLOAD
Syntax: MODUNLOAD FileName
This command unloads the module named FileName from the modules
directory.
OPER_HELP_MODINFO
Syntax: MODINFO FileName
This command lists information about the specified loaded module
OPER_HELP_MODLIST
Syntax: MODLIST [Core|3rd|protocol|encryption|supported|qatested]
Lists all currently loaded modules.
###########################################################################
#
# BotServ help messages
#
###########################################################################
BOT_HELP_CMD_BOTLIST
BOTLIST Lists available bots
BOT_HELP_CMD_ASSIGN
ASSIGN Assigns a bot to a channel
BOT_HELP_CMD_SET
SET Configures bot options
BOT_HELP_CMD_KICK
KICK Configures kickers
BOT_HELP_CMD_BADWORDS
BADWORDS Maintains bad words list
BOT_HELP_CMD_ACT
ACT Makes the bot do the equivalent of a "/me" command
BOT_HELP_CMD_INFO
INFO Allows you to see BotServ information about a channel or a bot
BOT_HELP_CMD_SAY
SAY Makes the bot say the given text on the given channel
BOT_HELP_CMD_UNASSIGN
UNASSIGN Unassigns a bot from a channel
BOT_HELP_CMD_BOT
BOT Maintains network bot list
BOT_HELP
%S allows you to have a bot on your own channel.
It has been created for users that can't host or
configure a bot, or for use on networks that don't
allow users' bot. Available commands are listed
below; to use them, type %R%S command. For
more information on a specific command, type %R
%S HELP command.
BOT_HELP_FOOTER
Bot will join a channel whenever there is at least
%d user(s) on it.
BOT_HELP_BOTLIST
Syntax: BOTLIST
Lists all available bots on this network.
BOT_HELP_ASSIGN
Syntax: ASSIGN chan nick
Assigns a bot pointed out by nick to the channel chan. You
can then configure the bot for the channel so it fits
your needs.
BOT_HELP_UNASSIGN
Syntax: UNASSIGN chan
Unassigns a bot from a channel. When you use this command,
the bot won't join the channel anymore. However, bot
configuration for the channel is kept, so you will always
be able to reassign a bot later without have to reconfigure
it entirely.
BOT_HELP_INFO
Syntax: INFO {chan | nick}
Allows you to see %S information about a channel or a bot.
If the parameter is a channel, then you'll get information
such as enabled kickers. If the parameter is a nick,
you'll get information about a bot, such as creation
time or number of channels it is on.
BOT_HELP_SET
Syntax: SET (channel | bot) option parameters
Configures bot options. option can be one of:
DONTKICKOPS To protect ops against bot kicks
DONTKICKVOICES To protect voices against bot kicks
GREET Enable greet messages
FANTASY Enable fantaisist commands
SYMBIOSIS Allow the bot to act as a real bot
Type %R%S HELP SET option for more information
on a specific option.
Note: access to this command is controlled by the
level SET.
BOT_HELP_SET_DONTKICKOPS
Syntax: SET channel DONTKICKOPS {ON|OFF}
Enables or disables ops protection mode on a channel.
When it is enabled, ops won't be kicked by the bot
even if they don't match the NOKICK level.
BOT_HELP_SET_DONTKICKVOICES
Syntax: SET channel DONTKICKVOICES {ON|OFF}
Enables or disables voices protection mode on a channel.
When it is enabled, voices won't be kicked by the bot
even if they don't match the NOKICK level.
BOT_HELP_SET_FANTASY
Syntax: SET channel FANTASY {ON|OFF}
Enables or disables fantasy mode on a channel.
When it is enabled, users will be able to use
commands !op, !deop, !voice, !devoice,
!kick, !kb, !unban, !seen on a channel (find how
to use them; try with or without nick for each,
and with a reason for some?).
Note that users wanting to use fantaisist
commands MUST have enough level for both
the FANTASIA and another level depending
of the command if required (for example, to use
!op, user must have enough access for the OPDEOP
level).
BOT_HELP_SET_GREET
Syntax: SET channel GREET {ON|OFF}
Enables or disables greet mode on a channel.
When it is enabled, the bot will display greet
messages of users joining the channel, provided
they have enough access to the channel.
BOT_HELP_SET_SYMBIOSIS
Syntax: SET channel SYMBIOSIS {ON|OFF}
Enables or disables symbiosis mode on a channel.
When it is enabled, the bot will do everything
normally done by %s on channels, such as MODEs,
KICKs, and even the entry message.
BOT_HELP_KICK
Syntax: KICK channel option parameters
Configures bot kickers. option can be one of:
BOLDS Sets if the bot kicks bolds
BADWORDS Sets if the bot kicks bad words
CAPS Sets if the bot kicks caps
COLORS Sets if the bot kicks colors
FLOOD Sets if the bot kicks flooding users
REPEAT Sets if the bot kicks users who repeat
themselves
REVERSES Sets if the bot kicks reverses
UNDERLINES Sets if the bot kicks underlines
Type %R%S HELP KICK option for more information
on a specific option.
Note: access to this command is controlled by the
level SET.
BOT_HELP_KICK_BOLDS
Syntax: KICK channel BOLDS {ON|OFF} [ttb]
Sets the bolds kicker on or off. When enabled, this
option tells the bot to kick users who use bolds.
ttb is the number of times a user can be kicked
before it get banned. Don't give ttb to disable
the ban system once activated.
BOT_HELP_KICK_COLORS
Syntax: KICK channel COLORS {ON|OFF} [ttb]
Sets the colors kicker on or off. When enabled, this
option tells the bot to kick users who use colors.
ttb is the number of times a user can be kicked
before it get banned. Don't give ttb to disable
the ban system once activated.
BOT_HELP_KICK_REVERSES
Syntax: KICK channel REVERSES {ON|OFF} [ttb]
Sets the reverses kicker on or off. When enabled, this
option tells the bot to kick users who use reverses.
ttb is the number of times a user can be kicked
before it get banned. Don't give ttb to disable
the ban system once activated.
BOT_HELP_KICK_UNDERLINES
Syntax: KICK channel UNDERLINES {ON|OFF} [ttb]
Sets the underlines kicker on or off. When enabled, this
option tells the bot to kick users who use underlines.
ttb is the number of times a user can be kicked
before it get banned. Don't give ttb to disable
the ban system once activated.
BOT_HELP_KICK_CAPS
Syntax: KICK channel CAPS {ON|OFF} [ttb [min [percent]]]
Sets the caps kicker on or off. When enabled, this
option tells the bot to kick users who are talking in
CAPS.
The bot kicks only if there are at least min caps
and they constitute at least percent%% of the total
text line (if not given, it defaults to 10 characters
and 25%%).
ttb is the number of times a user can be kicked
before it get banned. Don't give ttb to disable
the ban system once activated.
BOT_HELP_KICK_FLOOD
Syntax: KICK channel FLOOD {ON|OFF} [ttb [ln [secs]]]
Sets the flood kicker on or off. When enabled, this
option tells the bot to kick users who are flooding
the channel using at least ln lines in secs seconds
(if not given, it defaults to 6 lines in 10 seconds).
ttb is the number of times a user can be kicked
before it get banned. Don't give ttb to disable
the ban system once activated.
BOT_HELP_KICK_REPEAT
Syntax: KICK #channel REPEAT {ON|OFF} [ttb [num]]
Sets the repeat kicker on or off. When enabled, this
option tells the bot to kick users who are repeating
themselves num times (if num is not given, it
defaults to 3).
ttb is the number of times a user can be kicked
before it get banned. Don't give ttb to disable
the ban system once activated.
BOT_HELP_KICK_BADWORDS
Syntax: KICK #channel BADWORDS {ON|OFF} [ttb]
Sets the bad words kicker on or off. When enabled, this
option tells the bot to kick users who say certain words
on the channels.
You can define bad words for your channel using the
BADWORDS command. Type %R%S HELP BADWORDS for
more information.
ttb is the number of times a user can be kicked
before it get banned. Don't give ttb to disable
the ban system once activated.
BOT_HELP_BADWORDS
Syntax: BADWORDS channel ADD word [SINGLE | START | END]
BADWORDS channel DEL {word | entry-num | list}
BADWORDS channel LIST [mask | list]
BADWORDS channel CLEAR
Maintains the bad words list for a channel. The bad
words list determines which words are to be kicked
when the bad words kicker is enabled. For more information,
type %R%S HELP KICK BADWORDS.
The BADWORDS ADD command adds the given word to the
badword list. If SINGLE is specified, a kick will be
done only if a user says the entire word. If START is
specified, a kick will be done if a user says a word
that starts with word. If END is specified, a kick
will be done if a user says a word that ends with
word. If you don't specify anything, a kick will
be issued every time word is said by a user.
The BADWORDS DEL command removes the given word from the
bad words list. If a list of entry numbers is given, those
entries are deleted. (See the example for LIST below.)
The BADWORDS LIST command displays the bad words list. If
a wildcard mask is given, only those entries matching the
mask are displayed. If a list of entry numbers is given,
only those entries are shown; for example:
BADWORDS #channel LIST 2-5,7-9
Lists bad words entries numbered 2 through 5 and
7 through 9.
The BADWORDS CLEAR command clears all entries of the
bad words list.
BOT_HELP_SAY
Syntax: SAY channel text
Makes the bot say the given text on the given channel.
BOT_HELP_ACT
Syntax: ACT channel text
Makes the bot do the equivalent of a "/me" command
on the given channel using the given text.
BOT_SERVADMIN_HELP_BOT
Syntax: BOT ADD nick user host real
BOT CHANGE oldnick newnick [user [host [real]]]
BOT DEL nick
Allows Services admins to create, modify, and delete
bots that users will be able to use on their own
channels.
BOT ADD adds a bot with the given nickname, username,
hostname and realname. Since no integrity checks are done
for these settings, be really careful.
BOT CHANGE allows to change nickname, username, hostname
or realname of a bot without actually delete it (and all
the data associated with it).
BOT DEL removes the given bot from the bot list.
Note: you cannot create a bot that has a nick that is
currently registered. If an unregistered user is currently
using the nick, they will be killed.
BOT_SERVADMIN_HELP_SET
These options are reserved to Services admins:
NOBOT Prevent a bot from being assigned to
a channel
PRIVATE Prevent a bot from being assigned by
non IRC operators
BOT_SERVADMIN_HELP_SET_NOBOT
Syntax: SET channel NOBOT {ON|OFF}
This option makes a channel be unassignable. If a bot
is already assigned to the channel, it is unassigned
automatically when you enable the option.
BOT_SERVADMIN_HELP_SET_PRIVATE
Syntax: SET bot-nick PRIVATE {ON|OFF}
This option prevents a bot from being assigned to a
channel by users that aren't IRC operators.
###########################################################################
#
# HostServ messages
#
###########################################################################
HOST_EMPTY
The vhost list is empty.
HOST_ENTRY
#%d Nick:%s, vhost:%s (%s - %s)
HOST_IDENT_ENTRY
#%d Nick:%s, vhost:%s@%s (%s - %s)
HOST_SET
vhost for %s set to %s.
HOST_IDENT_SET
vhost for %s set to %s@%s.
HOST_SETALL
vhost for group %s set to %s.
HOST_DELALL
vhosts for group %s have been removed.
HOST_DELALL_SYNTAX
DELALL <nick>.
HOST_IDENT_SETALL
vhost for group %s set to %s@%s.
HOST_SET_ERROR
A vhost must be in the format of a valid hostmask.
HOST_SET_IDENT_ERROR
A vhost ident must be in the format of a valid ident
HOST_SET_TOOLONG
Error! The vhost is too long, please use a host shorter than %d characters.
HOST_SET_IDENTTOOLONG
Error! The Ident is too long, please use an ident shorter than %d characters.
HOST_NOREG
User %s not found in the nickserv db.
HOST_SET_SYNTAX
SET <nick> <hostmask>.
HOST_SETALL_SYNTAX
SETALL <nick> <hostmask>.
HOST_DENIED
Access Denied.
HOST_NOT_ASSIGNED
Please contact an Operator to get a vhost assigned to this nick.
HOST_ACTIVATED
Your vhost of %s is now activated.
HOST_IDENT_ACTIVATED
Your vhost of %s@%s is now activated.
HOST_ID
Please identify to services first.
HOST_NOT_REGED
You need to register before a vhost can be assigned to you.
HOST_DEL
vhost for %s removed.
HOST_DEL_SYNTAX
DEL <nick>.
HOST_OFF
Your vhost was removed and the normal cloaking restored.
HOST_OFF_UNREAL
Your vhost was removed. To re-enable the standard host cloaking, type /mode %s +%s
HOST_NO_VIDENT
Your IRCD does not support vIdent's, if this is incorrect, please report this as a possible bug
HOST_GROUP
All vhosts in the group %s have been set to %s
HOST_IDENT_GROUP
All vhosts in the group %s have been set to %s@%s
HOST_LIST_FOOTER
Displayed all records (Count: %d)
HOST_LIST_RANGE_FOOTER
Displayed records from %d to %d
HOST_LIST_KEY_FOOTER
Displayed records matching key %s (Count: %d)
###########################################################################
#
# HostServ Help messages
#
###########################################################################
HOST_HELP_CMD_ON
ON Activates your assigned vhost
HOST_HELP_CMD_OFF
OFF Deactivates your assigned vhost
HOST_HELP_CMD_GROUP
GROUP Syncs the vhost for all nicks in a group
HOST_HELP_CMD_SET
SET Set the vhost of another user
HOST_HELP_CMD_SETALL
SETALL Set the vhost for all nicks in a group
HOST_HELP_CMD_DEL
DEL Delete the vhost of another user
HOST_HELP_CMD_DELALL
DELALL Delete the vhost for all nicks in a group
HOST_HELP_CMD_LIST
LIST Displays one or more vhost entries.
HOST_OPER_HELP
not used.
HOST_ADMIN_HELP
not used.
HOST_HELP
%S commands:
HOST_HELP_ON
Syntax: ON
Activates the vhost currently assigned to the nick in use.
When you use this command any user who performs a /whois
on you will see the vhost instead of your real IP address.
HOST_HELP_SET
Syntax: SET <nick> <hostmask>.
Sets the vhost for the given nick to that of the given
hostmask. If your IRCD supports vIdents, then using
SET <nick> <ident>@<hostmask> set idents for users as
well as vhosts.
HOST_HELP_DELALL
Syntax: DELALL <nick>.
Deletes the vhost for all nick's in the same group as
that of the given nick.
HOST_HELP_SETALL
Syntax: SETALL <nick> <hostmask>.
Sets the vhost for all nicks in the same group as that
of the given nick. If your IRCD supports vIdents, then
using SETALL <nick> <ident>@<hostmask> will set idents
for users as well as vhosts.
* NOTE, this will not update the vhost for any nick's
added to the group after this command was used.
HOST_HELP_OFF
Syntax: OFF
Deactivates the vhost currently assigned to the nick in use.
When you use this command any user who performs a /whois
on you will see your real IP address.
HOST_HELP_DEL
Syntax: DEL <nick>
Deletes the vhost assigned to the given nick from the
database.
HOST_HELP_LIST
Syntax: LIST [<key>|<#X-Y>]
This command lists registered vhosts to the operator
if a Key is specified, only entries whos nick or vhost match
the pattern given in <key> are displayed e.g. Rob* for all
entries beginning with "Rob"
If a #X-Y style is used, only entries between the range of X
and Y will be displayed, e.g. #1-3 will display the first 3
nick/vhost entries.
The list uses the value of NSListMax as a hard limit for the
number of items to display to a operator at any 1 time.
HOST_HELP_GROUP
Syntax: GROUP
This command allows users to set the vhost of their
CURRENT nick to be the vhost for all nicks in the same
group.
OPER_SVSNICK_UNSUPPORTED
Sorry, SVSNICK is not available on this network.
OPER_SQLINE_UNSUPPORTED
Sorry, SQLINE is not available on this network.
OPER_SVSO_UNSUPPORTED
Sorry, OLINE is not available on this network.
OPER_UMODE_UNSUPPORTED
Sorry, UMODE is not available on this network.
OPER_SUPER_ADMIN_NOT_ENABLED
SuperAdmin setting not enabled in services.conf
|