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
|
---
-
authors: 'Patrik Akerfeldt'
contact: patrik.akerfeldt@gmail.com
description: 'Dont like to take decisions? Have the 8-ball do it for you instead.'
filename: 8-ball.pl
license: GPL
modified: '2015-09-15 19:05:29'
name: 8-ball
version: '0.22'
-
authors: 'Dani Soufi (compengi)'
commands: 'audacious mocp'
contact: 'IRC: Freenode network, #ubuntu-lb'
description: 'Controls Audacious2 and MOCP from Irssi'
filename: Cirssi.pl
license: 'GNU General Public License'
modified: '2009-08-14 22:56:45'
name: 'Consolidate Irssi Player'
url: http://bazaar.launchpad.net/~compengi/%2Bjunk/Cirssi/annotate/head%3A/Cirssi.pl
version: 2.0.0
-
authors: 'Doncho N. Gunchev'
commands: id
contact: mr_700@yahoo.com
description: "Automaticaly \x02/msg ident NS yourpassword\x02 when you connect or services come back from death"
filename: UNIBG-autoident.pl
license: 'Public Domain'
modified: '2003-01-25 02:35:40'
name: UNIBG-autoident
url: http://not.available.yet/
version: '0.1'
-
authors: 'Tamas SZERB'
contact: toma@rulez.org
description: 'This script strips the hungarian accents.'
filename: accent.pl
license: GPL
modified: '2015-01-26 22:59:40'
name: accent
version: '1.34'
-
authors: "Chris 'raz' Hoogenboezem"
contact: chrish@carrier6.com
description: 'Instead of displaying semi-raw data, a /whois now gives a tidy accountname on Asuka/lain servers (if applicable).'
filename: accountname.pl
license: 'Feel free to alter anything conform your own liking.'
modified: '2008-05-17 17:39:09'
name: accountname
version: '1.0'
-
authors: c0ffee
commands: act
contact: c0ffee@penguin-breeder.org
description: 'Reset window activity status. defines command /act'
filename: act.pl
license: 'Public Domain'
modified: '2016-05-01 21:05:08'
name: 'Reset window activity status'
url: http://www.penguin-breeder.org/irssi/
version: '0.15'
-
authors: 'Daniel Kalør (Xnybre)'
contact: irssi@kalor.dk
description: 'Print window activity to a fifo'
filename: act_fifo.pl
license: GPLv2
modified: '2014-10-17 18:30:46'
name: act_fifo
version: '1.1'
-
authors: 'Geert Hauwaerts'
contact: geert@irssi.org
description: 'This script shows notices into the active channel unless it has its own window.'
filename: active_notice.pl
license: 'GNU General Public License'
modified: '2016-01-20 22:59:49'
name: active_notice.pl
url: http://irssi.hauwaerts.be/active_notice.pl
version: '1.08'
-
authors: 'Geert Hauwaerts'
contact: geert@irssi.org
description: 'This script will display notify messages into the active window or broadcast it so all the windows.'
filename: active_notify.pl
license: 'GNU General Public License'
modified: '2003-09-17 23:00:11'
name: active_notify.pl
url: http://irssi.hauwaerts.be/active_notify.pl
version: '0.07'
-
authors: 'Antti Vähäkotamäki'
description: 'Maintains a representation of window activity status in a file'
filename: activity_file.pl
license: 'GNU General Public License'
modified: '2006-07-19 23:59:00'
name: activity_file
version: '1.00'
-
authors: Nei
commands: awl
contact: 'Nei @ anti@conference.jabber.teamidiot.de'
description: 'Adds a permanent advanced window list on the right or in a status bar.'
filename: adv_windowlist.pl
license: 'GNU GPLv2 or later'
modified: '2017-04-07 16:34:31'
modules: Text::CharWidth
name: adv_windowlist
url: http://anti.teamidiot.de/
version: '1.4'
-
authors: BC-bd
commands: ai
contact: bd@bc-bd.org
description: 'Puts people on ignore if they do a public away. See source for options.'
filename: ai.pl
license: 'GPL v2'
modified: '2014-10-17 18:30:46'
name: ai
url: https://bc-bd.org/svn/repos/irssi/trunk/
version: '0.3'
-
authors: "Maciek 'fahren' Freudenheim"
contact: fahren@bochnia.pl
description: 'Antyidler with random time'
filename: aidle.pl
license: 'GNU GPLv2 or later'
modified: '2014-10-17 18:30:46'
name: Antyidler
version: 1.1b
-
authors: ak
commands: akftp
contact: ocb23@freenet.removethis.de
description: 'Full configurable FTP advertiser for Irssi'
filename: akftp.pl
license: GPLv2
modified: '2008-05-17 17:39:09'
name: 'ak FTP-Ad'
url: http://members.tripod.com.br/archiv/
version: '1.4'
-
authors: "Christian 'mordeth' Weber"
commands: alamer
contact: mordeth\@mac.com
description: 'Converts towards lame speech'
filename: alame.pl
license: 'GPL v2'
modified: '2008-05-17 17:39:09'
name: alame
url: http://
version: 0.0.1
-
authors: "Tobias 'camel69' Wulff"
commands: amarok
contact: camel69(at)codeeye.de
description: 'Retrievs song infos and controls amaroK via dcop, optionally running on another computer via ssh'
filename: amarok_ssh.pl
license: 'Public Domain'
modified: '2014-10-17 18:30:46'
name: 'amaroK (via ssh)'
url: http://www.codeeye.de/irssi/
version: '1.0'
-
authors: 'Tuukka Lukkala'
contact: 'ragdim at mbnet dot fi'
description: 'Shows the song playing in amaroK in the active window (channel or query).'
filename: amaroknp.pl
license: GPL
modified: '2004-03-30 23:20:00'
name: amaroknp
url: http://koti.mbnet.fi/ragdim/amaroknp/
version: '0.10'
-
authors: 'Matt "f0rked" Sparks, Miklos Vajna'
commands: anames
contact: ms+irssi@quadpoint.org
description: 'a /names display with away nicks coloured'
filename: anames.pl
license: GPLv2
modified: '2016-09-11 15:19:57'
modules: Text::CharWidth
name: anames
url: http://quadpoint.org
version: '1.7'
-
authors: "Stefan 'tommie' Tomanek"
contact: stefan@pico.ruhr.de
description: 'Another auto away script'
filename: anotherway.pl
license: GPLv2
modified: '2008-05-17 17:39:11'
name: anotherway
version: '2003010201'
-
authors: 'Grigori Goronzy'
contact: greg@chown.ath.cx
description: 'notices users who "plenk"'
filename: antiplenk.pl
license: BSD
modified: '2003-02-12 07:00:05'
name: antiplenk
url: http://chown.ath.cx/~greg/antiplenk/
version: 0.2.1
-
authors: 'Alexander Wirt'
contact: formorer@formorer.de
description: 'Shows your battery status in your Statusbar'
filename: apm.pl
license: 'GNU Public License'
modified: '2017-04-07 16:34:31'
name: apm
url: http://www.formorer.de/code
version: '0.4'
-
authors: 'Erkki Seppälä'
commands: armeija
contact: flux@inside.org
description: 'Ignores people bringin up boring/repeated subjects, plus replies.'
filename: armeija.pl
license: 'Public Domain'
modified: '2014-10-17 18:30:46'
name: 'Armeija Ignore'
url: http://xulfad.inside.org/~flux/software/irssi/
version: '0.4'
-
authors: 'Marcin Rozycki'
commands: 'ascii colkick colme colquit colsay coltopic'
contact: derwan@irssi.pl
description: 'Ascii-art bassed on figlet. Available commands: /ASCII, /COLSAY, /COLME, /COLTOPIC, /COLKICK, /COLQUIT.'
filename: ascii.pl
license: 'GNU GPL v2'
modified: '2002-06-21 17:17:53'
name: ascii-art
url: http://derwan.irssi.pl
version: 1.6.3
-
authors: 'Isaac Good (yitz_), Tom Feist (shabble)'
commands: spellcheck
contact: 'irssi@isaacgood.com, shabble+irssi@metavore.org'
description: 'ASpell spellchecking system for Irssi'
filename: aspell.pl
license: MIT
modified: '2016-10-06 17:55:58'
modules: Text::Aspell
name: aspell
version: 1.6.2
-
authors: 'Philipp Haegi'
commands: rotate_dict
contact: phaegi\@mimir.ch
description: 'Adds Text::Aspell suggestions to the list of completions'
filename: aspell_complete.pl
license: 'Public Domain'
modified: '2016-01-29 08:59:40'
modules: Text::Aspell
name: aspell_complete
note: ''
url: http://www.mimir.ch/ph/
version: '1.01'
-
authors: 'Mantas Mikulėnas'
contact: grawity@gmail.com
description: "Implements QuakeNet's CHALLENGE authentication"
filename: auth_quakenet.pl
license: 'WTFPL v2 <http://sam.zoy.org/wtfpl/>'
modified: '2014-12-18 08:54:54'
modules: 'Digest::HMAC Digest::SHA1'
name: auth_quakenet_challenge.pl
url: http://purl.net/net/grawity/irssi.html
version: '1.0'
-
authors: "Andreas 'ads' Scherbaum"
contact: ads@ufp.de
description: '/WHOIS all the users who send you a private message.'
filename: auto_whois.pl
license: GPL
modified: '2014-10-17 18:30:46'
name: auto_whois
url: http://irssi.org/
version: '0.9'
-
authors: 'Larry "Vizzie" Daffner'
commands: autoaway
contact: vizzie@airmail.net
description: 'Automatically goes away after defined inactivity'
filename: autoaway.pl
license: BSD
modified: '2016-04-26 17:34:00'
name: 'Automagic away setting'
url: http://www.flamingpackets.net/~vizzie/irssi/
version: '0.4'
-
authors: 'Peder Stray'
contact: peder@ninja.no
description: 'Auto add channels to channel list on join'
filename: autochannel.pl
license: GPL
modified: '2007-09-20 08:58:11'
name: autochannel
url: http://ninja.no/irssi/autochannel.pl
version: '1.2'
-
authors: 'Trevor "tee" Slocum'
commands: 'autocleared cleared'
contact: tslocum@gmail.com
description: 'Automatically clears pending input when you are away.'
filename: autoclearinput.pl
license: GPLv3
modified: '2014-08-01 15:27:47'
name: AutoClearInput
url: https://github.com/tslocum/irssi-scripts
version: 1.0.1
-
authors: 'Marcin Rozycki'
commands: autocycle
contact: derwan@irssi.pl
description: 'Auto regain ops in empty opless channels'
filename: autocycle.pl
license: 'GNU GPL v2'
modified: '2003-01-03 23:20:06'
name: autocycle
url: http://derwan.irssi.pl
version: '0.4'
-
authors: 'David Leadbeater'
contact: dgl@dgl.cx
description: 'does an autolimit for a channel, set variables in the script'
filename: autolimit.pl
license: 'GNU GPLv2 or later'
modified: '2014-10-17 18:30:46'
name: autolimit
url: http://irssi.dgl.cx/
version: '1.00'
-
authors: Juerd
contact: '#####@juerd.nl'
description: "Change 'nick: ' prefix if the nick is changed while you're still editing."
filename: autonickprefix.pl
license: 'Any OSI'
modified: '2016-02-06 01:40:08'
name: autonickprefix
version: '1.00'
-
authors: 'Timo Sirainen & Jostein Kjønigsen'
commands: autoop
description: 'Simple auto-op script'
filename: autoop.pl
license: 'Public Domain'
modified: '2014-10-24 12:54:12'
name: autoop
version: '1.10'
-
authors: 'Toni Salomäki'
commands: 'autoop_add autoop_check autoop_del autoop_dynamic autoop_load autoop_save autoop_show'
contact: Toni@IRCNet
description: 'Auto-op script with dynamic address support and random delay'
filename: autoopper.pl
license: 'GNU GPLv2 or later'
modified: '2014-10-17 18:30:46'
name: autoopper
url: http://vinku.dyndns.org/irssi_scripts/
version: '3.7'
-
authors: "Timo 'cras' Sirainen, Bastian Blank"
contact: 'tss@iki.fi, waldi@debian.org'
description: 'Print realname of everyone who join to channels'
filename: autorealname.pl
license: 'GPLv2 or later'
modified: '2003-01-24 15:40:22'
name: 'auto realname'
url: http://irssi.org/
version: 0.8.6
-
authors: "Timo 'cras' Sirainen, Leszek Matok"
contact: lam@lac.pl
description: 'Automatically rejoin to channel after being kick, after a (short) user-defined delay'
filename: autorejoin.pl
license: GPLv2
modified: '2002-03-10 14:00:00'
name: autorejoin
version: 1.0.0
-
authors: "Paul 'laaama' Raade"
contact: paul\@raade.org
description: 'Kickbans or knockouts people who use autorejoin on kick.'
filename: autorejoinpunish.pl
license: BSD
modified: '2002-05-02 22:04:48'
name: 'Autorejoin punisher'
url: http://www.raade.org/~paul/irssi/scripts/
version: '0.3'
-
authors: 'Terry Lewis'
commands: 'start stop'
contact: terry@kryogenic.co.uk
description: 'This script Reminds people to do stuff! :)'
filename: autoreminder.pl
license: GPLv2
modified: '2008-05-17 17:39:11'
name: 'Auto Reminder'
version: '0.01'
-
authors: 'Jari Matilainen, original script by nightfrog'
contact: 'vague!#irssi@freenode on irc'
description: 'Autorun scripts/symlinks created in the scripts/autorun directory'
filename: autorun_scripts.pl
license: GPLv2
modified: '2016-04-18 15:11:40'
modules: File::ChangeNotify
name: autorun_scripts
version: '0.1'
-
authors: Juerd
commands: autostuff
contact: '#####@juerd.nl'
description: 'Save current servers, channels and windows for autoconnect and autojoin'
filename: autostuff.pl
license: 'Public Domain'
modified: '2010-10-24 14:35:00'
name: autostuff
url: http://juerd.nl/site.plp/irssi
version: '0.02'
-
authors: "Christian 'mordeth' Weber"
contact: chris@mac.ruhr.de
description: 'Auto-CTCP Verison on every joining nick'
filename: autoversion.pl
license: GPLv2
modified: '2002-08-21 00:00:00'
name: autoversion
url: ''
version: 0.0.1
-
authors: aluser
commands: autovoice
description: autovoice
filename: autovoice.pl
license: GPL
modified: '2008-05-22 01:47:56'
name: autovoice
version: '0.05'
-
authors: Nei
contact: 'Nei @ anti@conference.jabber.teamidiot.de'
description: 'Periodically sends /who on configured channels to update away state.'
filename: autowho.pl
license: ISC
modified: '2016-04-26 23:37:32'
name: autowho
url: http://anti.teamidiot.de/
version: '0.1'
-
authors: "Timo 'cras' Sirainen"
contact: tss@iki.fi
description: '/WHOIS all the users who send you a private message.'
filename: autowhois.pl
license: 'Public Domain'
modified: '2014-10-17 18:30:46'
name: autowhois
url: http://irssi.org/
version: '1.1'
-
authors: 'Janne Mikola'
contact: janne@mikola.info
description: '/WHOIS anyone querying you automatically.'
filename: autowhois_simple.pl
license: GPL
modified: '2014-10-17 18:30:46'
name: autowhois_simple
url: http://www.mikola.info
version: '0.1'
-
authors: 'Bitt Faulk'
contact: lxsfx3h02@sneakemail.com
description: 'Automatically wraps long sent messages into multiple shorter sent messages'
filename: autowrap.pl
license: BSD
modified: '2008-05-25 14:51:58'
name: autowrap
url: none
version: '2007031900'
-
authors: 'Jean-Yves Lefort, Larry "Vizzie" Daffner, Kees Cook'
contact: 'jylefort@brutele.be, vizzie@airmail.net, kc@outflux.net'
description: 'Away with reason, unaway, and autoaway'
filename: away.pl
license: BSD
modified: '2014-10-17 18:30:46'
name: away
version: '0.23'
-
authors: "Oskari 'Okko' Ojala"
contact: sorter.irssi-scripts@okko.net
description: 'Write /away information to a file to be used on web pages'
filename: away2web.pl
license: BSD
modified: '2014-10-17 18:30:46'
name: away2web
version: '2003100201'
-
authors: 'Geert Hauwaerts'
contact: geert@irssi.org
description: 'This script will notice your away message to the person who just hilighted you.'
filename: away_hilight_notice.pl
license: 'GNU General Public License'
modified: '2003-12-31 15:37:24'
name: away_hilight_notice.pl
url: http://irssi.hauwaerts.be/away_hilight_notice.pl
version: '0.10'
-
authors: 'Wouter Coekaerts, Koenraad Heijlen'
contact: 'vipie@ulyssis.org, wouter@coekaerts.be'
description: 'A verbose away script, displays a verbose away/back message in the channels you are in. BUT it can limit the channels (not spamming every channel!)'
filename: away_verbose.pl
license: 'GNU GPL version 2'
modified: '2004-01-01 00:00:00'
name: away_verbose
url: http://vipie.studentenweb.org/dev/irssi/
version: 0.0.7
-
authors: 'Simon Shine'
contact: http://shine.eu.org/
description: 'Provides a menubar item with away message'
filename: awaybar.pl
license: 'Public domain'
modified: '2017-04-07 16:34:31'
name: awaybar
version: 0.1.1
-
authors: 'Marcin Rozycki'
contact: derwan@irssi.pl
description: 'Displays in statusbar number of messages in awaylog'
filename: awaylogcnt.pl
license: 'GNU GPL v2'
modified: '2017-04-07 16:34:31'
name: awalogcnt
url: http://derwan.irssi.pl
version: '0.2'
-
authors: BCOW
contact: anttip@n0-life.com
description: 'Sets nick away when client discconects from the irssi-proxy. If away gathers messages targeted to nick and forwards them to an email address.'
filename: awayproxy.pl
license: GPLv2
modified: '2016-03-21 23:29:10'
name: awayproxy
url: http://www.n0-life.com
version: 0.2e
-
authors: "Stefan 'tommie' Tomanek"
commands: babelirc
contact: stefan@pico.ruhr.de
description: 'translates your messages via Babelfish'
filename: babelirc.pl
license: GPLv2
modified: '2008-05-17 17:39:09'
modules: 'Unicode::String WWW::Babelfish'
name: babelirc
url: http://irssi.org/scripts/
version: '2003020801'
-
authors: "Jan 'fissie' Sembera"
contact: fis@ji.cz
description: 'Configurable badword kickbanning script'
filename: badword.pl
license: 'GPL v2 and any later'
modified: '2008-05-17 17:39:09'
name: badword
url: http://fis.bofh.cz/devel/irssi/
version: 0.0.3
-
authors: "Maciek 'fahren' Freudenheim"
contact: fahren@bochnia.pl
description: '/BAN [channel] [-normal|-host|-user|-domain|-crap|-ip|-class -before|-after "cmd" nick|mask] ... - bans several nicks/masks on channel, removes any conflicting bans before banning'
filename: ban.pl
license: 'GNU GPLv2 or later'
modified: '2002-11-19 18:11:09'
name: ban
version: 1.4d
-
authors: 'Riku Voipio'
contact: riku.voipio@iki.fi
description: 'shows bandwidth usage in statusbar'
filename: bandwidth.pl
license: GPLv2
modified: '2017-04-07 16:34:31'
name: bandwidth
url: http://nchip.ukkosenjyly.mine.nu/irssiscripts/
version: '1.0'
-
authors:
- 'Nathan Handler'
- 'Joseph Price'
commands: bansearch
contact:
- nathan.handler@gmail.com
- pricechild@ubuntu.com
description: 'Searches for bans, quiets, and channel modes affecting a user'
filename: bansearch.pl
license: GPLv3+
modified: '2015-09-11 05:01:40'
name: bansearch
version: '1.1'
-
authors: "David O'Rourke"
commands: bantime
contact: phyber@#irssi
description: 'Print time when ban was set in a nicer way. eg. 23 mins, 40 secs ago.'
filename: bantime.pl
license: GPLv2
modified: '2004-08-01 02:46:00'
modules: Time::Duration
name: bantime
version: '0.5'
-
authors: 'Jean-Yves Lefort'
contact: 'jylefort\@brutele.be, decadix on IRCNet'
description: 'Replaces your terminal bell by a command specified via /set; adds a beep_when_not_away setting'
filename: beep.pl
license: BSD
modified: '2014-10-17 20:34:00'
name: beep
url: http://void.adminz.be/irssi.shtml
version: '1.01'
-
authors: 'Georg Lukas'
contact: georg@op-co.de
description: 'runs arbitrary command instead of system beep, includes flood protection'
filename: beep_beep.pl
license: 'Public Domain'
modified: '2014-10-17 20:34:00'
name: beep_beep
url: http://op-co.de/irssi/
version: '0.10'
-
authors: "Simon 'corecode' Schubert"
contact: corecode@corecode.ath.cx
description: 'Only beep when you are away'
filename: beepaway.pl
license: BSD
modified: '2008-05-17 17:39:11'
name: beepaway
version: '2003011501'
-
authors: Nei
commands: key_insert_before_space
contact: 'Nei @ anti@conference.jabber.teamidiot.de'
description: 'Rebind certain keys so that they are inserted before the space'
filename: beforespace.pl
license: ISC
modified: '2016-04-26 23:42:54'
name: beforespace
url: http://anti.teamidiot.de/
version: '0.1'
-
authors: "Stefan 'tommie' Tomanek"
commands: bestoiber
contact: stefan@pico.ruhr.de
description: 'stoibers your messages'
filename: bestoiber.pl
license: GPLv2
modified: '2008-05-17 17:39:09'
name: BeStoiber
url: ''
version: '2003020801'
-
authors: 'Liam Hopkins'
commands: betterlist
contact: we.hopkins@gmail.com
description: '/list <perl-regexp>'
filename: betterlist.pl
license: GPL
modified: '2016-03-19 19:58:23'
name: betterlist
version: '2.1'
-
authors: '[^BgTA^]'
commands: 'bgdebian bggoogle bghelp bgperl bgphp bgphpwb bgversion bgwwwd'
contact: raul@bgta.net
description: "Byte's Gallery of the TAilor Script"
filename: bgta.pl
license: 'Public Domain'
modified: '2008-05-17 17:39:11'
modules: 'LWP Net::Google'
name: 'BgTA Script'
version: 0.0.1
-
authors: 'Carl Fischer'
commands: 'binary unbinary'
contact: carl.fischer@netcourrier.com
description: 'adds /binary command that converts what you type into 2-base string representation, also decodes other peoples binary automatically'
filename: binary.pl
license: GPLv2
modified: '2008-05-17 17:39:11'
name: binary
version: '1.2'
-
authors: 'Aaron Toponce, Knut Auvor Grythe'
contact: 'aaron.toponce@gmail.com, irssi@auvor.no'
description: 'Prints the timestamp in binary format'
filename: binary_time.pl
license: GPL
modified: '2008-06-16 10:12:35'
name: binary_time
version: '20060826'
-
authors: 'Tijmen "timing" Ruizendaal'
commands: blist
contact: tijmen.ruizendaal@gmail.com
description: '/blist <all|online|offline|away> <word>, greps <word> from blist for bitlbee'
filename: bitlbee_blist.pl
license: GPLv2
modified: '2006-10-27 00:00:00'
name: bitlbee_blist
url: http://the-timing.nl/stuff/irssi-bitlbee
version: '0.4'
-
authors: 'Ævar Arnfjörð Bjarmason'
contact: avarab@gmail.com
description: 'Hide your REGISTER and IDENTIFY password lines in &bitlbee from screen & logs '
filename: bitlbee_hide_password.pl
license: 'Public Domain'
modified: '2016-03-15 17:52:13'
name: bitlbee_hide_password.pl
url: 'http://scripts.irssi.org & https://github.com/avar/dotfiles/blob/master/.irssi/scripts/bitlbee_hide_password.pl'
version: '1.0'
-
authors: 'Tijmen "timing" Ruizendaal'
contact: tijmen.ruizendaal@gmail.com
description: '1. Adds an item to the status bar wich shows [joined: <nicks>] when someone is joining &bitlbee. 2. Shows join messages in the query. (For bitlbee v3.0+)'
filename: bitlbee_join_notice.pl
license: GPLv2
modified: '2017-04-07 16:34:31'
name: BitlBee_join_notice
url: http://the-timing.nl/stuff/irssi-bitlbee
version: '1.3'
-
authors: 'Tijmen "timing" Ruizendaal'
contact: tijmen.ruizendaal@gmail.com
description: 'Shows an IM nickchange in an Irssi way. (in a query and in the bitlbee channel). (For bitlbee 3.0+)'
filename: bitlbee_nick_change.pl
license: GPLv2
modified: '2010-07-28 00:00:00'
name: BitlBee_nick_change
url: http://the-timing.nl/stuff/irssi-bitlbee
version: '1.3'
-
authors: 'Tijmen "timing" Ruizendaal & Wilmer van der Gaast'
contact: tijmen.ruizendaal@gmail.com
description: 'Intelligent Tab-completion for BitlBee commands.'
filename: bitlbee_tab_completion.pl
license: GPLv2
modified: '2009-08-11 00:00:00'
name: BitlBee_tab_completion
url: http://the-timing.nl/stuff/irssi-bitlbee
version: '1.3'
-
authors: 'Tijmen "timing" Ruizendaal'
contact: tijmen.ruizendaal@gmail.com
description: "Replace Irssi's timestamps with those sent by BitlBee"
filename: bitlbee_timestamp.pl
license: GPLv2
modified: '2010-05-01 00:00:00'
modules: DateTime
name: bitlbee_timestamp
url: http://the-timing.nl/stuff/irssi-bitlbee
version: '0.5'
-
authors: 'Tijmen "timing" Ruizendaal, Matt "f0rked" Sparks'
commands: db_typing
contact: 'tijmen.ruizendaal@gmail.com, root@f0rked.com'
description: "1. Adds an item to the status bar wich shows [typing] when someone is typing a message on the supported IM-networks\t2. Sends typing notices to the supported IM networks (the other way arround). (For bitlbee 3.0+)"
filename: bitlbee_typing_notice.pl
license: GPLv2
modified: '2017-04-07 16:34:31'
name: BitlBee_typing_notice
url: 'http://the-timing.nl/stuff/irssi-bitlbee, http://f0rked.com'
version: 1.7.2
-
authors: iMil,Skid,Foxmask,reiffert
commands: 'bconf blow blowhelp delkey perm setkey showkey'
contact: imil@gcu-squad.org,blowjob@reifferscheid.org,#blowtest@freenode
description: 'Crypt IRC communication with blowfish encryption. Supports public #channels, !channels, +channel, querys and dcc chat. Roadmap for Version 1.0.0 is to get some feedback and cleanup. Join #blowtest on freenode (irc.debian.org) to get latest stuff available. Note to users upgrading from versions prior to 0.8.5: The blowjob.keys format has changed.'
filename: blowjob.pl
license: 'GNU GPL'
modified: '2015-04-22 22:27:27'
modules: 'Crypt::Blowfish Crypt::CBC'
name: blowjob
url: http://ftp.gcu-squad.org/misc/
version: 0.9.0
-
authors: 'Daniel K. Gebhart, Marcus Rückert'
commands: bmi
contact: 'dkg@con-fuse.org, darix@irssi.org'
description: 'a simple body mass index calculator for depression ;)'
filename: bmi.pl
license: GPLv2
modified: '2008-05-17 17:39:09'
name: 'BMI Calculator'
url: http://dkg.con-fuse.org/irssi/scripts/
version: '2002121801'
-
authors: Juerd
contact: juerd@juerd.nl
description: 'Saves the buffer for /upgrade, so that no information is lost'
filename: buf.pl
license: 'Public Domain'
modified: '2016-09-22 02:26:09'
name: 'Scroll buffer restorer'
url: http://juerd.nl/irssi/
version: '2.20'
-
authors: 'Pablo Martín Báez Echevarría'
commands: buffer
contact: pab_24n@outlook.com
description: 'pastes a buffer into a channel or query window line by line with a specific delay between lines'
filename: buffer.pl
license: 'Public Domain'
modified: '2016-06-28 00:45:27'
name: buffer
url: http://reirssi.wordpress.com
version: '1.1'
-
authors: Juerd
commands: calc
contact: juerd@juerd.nl
description: 'Simple /calc mechanism'
filename: calc.pl
license: 'Public Domain'
modified: '2002-03-19 11:00:00'
name: Calculator
url: http://juerd.nl/irssi/
version: '1.10'
-
authors: 'Daniel "dubkat" Reidy'
contact: 'dubkat@dubkat.org (www.dubkat.org)'
description: "Reformats CallerID (+g) Messages\n (Also known as Server-Side Ignore)\n on Hybrid & Ratbox IRCDs (EFnet)\n to be Easier on the Eyes"
filename: callerid.pl
license: GPL
modified: '2008-05-17 17:39:11'
name: callerid
url: http://scripts.irssi.org/
version: '1.0'
-
authors: dwfreed
contact: dwfreed@mtu.edu
description: 'Prints caps; derived from cap_sasl.pl by Michael Tharp (gxti), Jilles Tjoelker (jilles), and Mantas Mikulėnas (grawity)'
filename: cap.pl
license: GPLv2
modified: '2016-09-13 03:32:53'
name: cap
url: 'none yet'
version: '1.0'
-
authors: 'Michael Tharp (gxti), Jilles Tjoelker (jilles), Mantas Mikulėnas (grawity)'
contact: grawity@gmail.com
description: 'Implements SASL authentication and enables CAP "multi-prefix"'
filename: cap_sasl.pl
license: GPLv2
modified: '2015-12-04 19:11:05'
modules: Crypt::PK::ECC
name: cap_sasl.pl
url: http://ircv3.atheme.org/extensions/sasl-3.1
version: '1.11'
-
authors: Nei
description: 'Disconnect from server if SASL authentication fails.'
filename: cap_sasl_fail.pl
license: 'GNU GPLv2 or later'
modified: '2017-01-16 16:43:50'
name: cap_sasl_fail
version: '2.1'
-
authors: ZaMz0n
contact: zamzon@freakpower.com
description: 'Find CDs by Artist, Disc name or Track name in CDDB.'
filename: cddb.pl
license: Free
modified: '2003-10-29 01:27:00'
modules: LWP::Simple
name: cddb
url: http://www.gracenote.com/music/
version: '1.21'
-
authors: 'Joost "Garion" Vunderink'
contact: joost@carnique.nl
description: 'Staturbar item which indicates how many new messages you have in your centericq'
filename: centericq.pl
license: 'Public Domain'
modified: '2017-04-07 16:34:31'
name: centericq
url: 'http://irssi.org, http://scripts.irssi.org'
version: 1.0.0
-
authors: 'Pieter-Bas IJdens'
commands: cgrep
contact: irssi-scripts@nospam.mi4.org.uk
description: 'Lists users on the channel matching the specified regexp'
filename: cgrep.pl
license: 'GPLv2 or later'
modified: '2016-09-20 14:26:40'
name: cgrep
url: http://pieter-bas.ijdens.com/irssi/
version: 1.0.0
-
authors: BC-bd
commands: 'chanact_window_alias chanact_window_unalias'
contact: bd@bc-bd.org
description: 'Adds new powerful and customizable [Act: ...] item (chanelnames,modes,alias). Lets you give alias characters to windows so that you can select those with meta-<char>'
filename: chanact.pl
license: 'GNU GPLv2 or later'
modified: '2017-02-13 17:21:07'
name: chanact
url: http://bc-bd.org/blog/irssi/
version: 0.6.0
-
authors: "Joern 'Wulf' Heissler"
contact: wulf@wulf.eu.org
description: 'Notifies the user when some channel limit is reached'
filename: chanfull.pl
license: GPLv2
modified: '2008-05-17 17:39:09'
name: chanfull
url: ''
version: '2003011700'
-
authors: "Uwe 'duden' Dudenhoeffer"
contact: script@duden.eu.org
description: 'Notify if Channellimit is reached'
filename: chanfull_duden.pl
license: GPLv2
modified: '2003-02-08 18:08:54'
name: chanfull
url: ''
version: '0.1'
-
authors: "Bjoern 'fuchs' Krombholz"
contact: bjkro@gmx.de
description: 'Log maximum number of people ever been in a channel'
filename: chanpeak.pl
license: 'Public Domain'
modified: '2002-06-02 17:00:00'
name: chanpeak
version: 0.2.2
-
authors: "Stefan 'tommie' Tomanek"
commands: chansearch
contact: stefan@pico.ruhr.de
description: 'searches for specific channels'
filename: chansearch.pl
license: GPLv2
modified: '2008-05-17 17:39:11'
modules: LWP::UserAgent
name: ChanSearch
url: http://scripts.irssi.org/
version: '20021019'
-
authors: "Timo 'cras' Sirainen"
commands: chanshare
contact: tss@iki.fi
description: '/CHANSHARE - display people who are in more than one channel with you'
filename: chanshare.pl
license: 'Public Domain'
modified: '2014-10-17 20:34:00'
name: 'chan share'
url: http://irssi.org/
version: '0.3'
-
authors: 'Peder Stray'
commands: chansort
contact: peder@ninja.no
description: 'Sort all channel and query windows'
filename: chansort.pl
license: GPL
modified: '2008-05-17 17:39:09'
name: chansort
url: http://ninja.no/irssi/chansort.pl
version: '1.4'
-
authors: 'Ævar Arnfjörð Bjarmason'
commands: chansort_configurable
contact: avarab@gmail.com
description: "Sort channels & query windows in a configurable way, based on Peder Stray's chansort.pl"
filename: chansort_configurable.pl
license: GPL
modified: '2016-05-04 11:49:27'
name: chansort_configurable
url: 'http://scripts.irssi.org & https://github.com/avar/dotfiles/blob/master/.irssi/scripts/chansort_configurable.pl'
version: '1.2'
-
authors: "Uwe 'duden' Dudenhoeffer"
commands: chansync
contact: script@duden.eu.org
description: '/who a channel and optionaly executes a command'
filename: chansync.pl
license: GPLv2
modified: '2003-02-09 18:27:51'
name: chansync
url: ''
version: '0.22'
-
authors: 'Jakub Jankowski'
commands: 'chops nops'
contact: shasta@atn.pl
description: "Simulates BitchX's /CHOPS and /NOPS commands."
filename: chops.pl
license: 'GNU GPLv2 or later'
modified: '2008-05-17 17:39:11'
name: chops
url: http://irssi.atn.pl/
version: '20020223'
-
authors: 'Jørgen Tjernø'
contact: darkthorne@samsen.com
description: 'Simple script that removes colors and other formatting (bold, etc) from public channels'
filename: cleanpublic.pl
license: GPL
modified: '2003-09-24 13:17:15'
name: CleanPublic
url: http://mental.mine.nu
version: '0.3'
-
commands: clearable
contact: 'Nei @ anti@conference.jabber.teamidiot.de'
description: 'make some command output clearable'
filename: clearable.pl
license: ISC
modified: '2015-11-16 19:32:11'
name: clearable
url: http://anti.teamidiot.de/
version: '0.1'
-
authors: 'Dominic Battre'
commands: qc
contact: dominic@battre.de
description: 'Better quoting of content from clipboard (without leading spaces) -- requires Perl/Tk'
filename: clipboard.pl
license: 'Public Domain'
modified: '2002-12-06 23:23:31'
modules: Tk
name: 'Quoting from X clipboard'
url: http://www.battre.de
version: '1.2'
-
authors: 'Rick (strlen) Jansen'
commands: 'ak cw tk tr'
contact: strlen@shellz.nl
description: 'Parses OperServ notices to make autokill aliases from clonewarnings'
filename: cloneprot.pl
license: GPL/1
modified: '2002-03-13 20:26:46'
name: cloneprot
url: http://www.shellz.nl/
version: '1.11'
-
authors: 'From irssi source, modified by David Leadbeater (dg)'
commands: clones
description: '/CLONES - Display clones in the active channel (with added options)'
filename: clones.pl
license: 'Same as Irssi'
modified: '2014-10-17 20:34:00'
name: clones
url: http://irssi.dgl.cx/
version: '2.01'
-
authors: 'Pablo Martín Báez Echevarría'
commands: clones_scanner_size
contact: pab_24n@outlook.com
description: 'when a nick joins #channel, notifies you if there is (or there has been) someone in #channel with the same hostname'
filename: clones_scanner.pl
license: 'Public Domain'
modified: '2016-06-18 12:01:20'
modules: Devel::Size
name: clones_scanner
url: http://reirssi.wordpress.com
version: '1.6'
-
authors: 'Jari Matilainen, init[1]@irc.freenode.net'
commands: cmp
contact: vague@vague.se
description: 'Compare nicks in two channels'
filename: cmpchans.pl
license: 'Public Domain'
modified: '2015-11-16 19:36:52'
name: cmpchans
url: http://vague.se
version: '0.5'
-
authors: 'Lars Djerf, Nei'
contact: 'lars.djerf@gmail.com, Nei @ anti@conference.jabber.teamidiot.de'
description: 'Replace words between :...: in messages according to a text file. Was intended for Unicode Emoji on certain proprietary platforms.'
filename: colon_emoji.pl
license: GPLv3
modified: '2016-04-26 23:53:02'
name: colon_emoji
version: '0.1'
-
authors: Nei
contact: 'Nei @ anti@conference.jabber.teamidiot.de'
description: 'Colourise mention of nicks in the message body.'
filename: colorize_nicks.pl
license: 'GNU GPLv2 or later'
modified: '2015-11-16 19:32:11'
name: colorize_nicks
url: http://anti.teamidiot.de/
version: 0.3.6
-
authors: 'Gabor Nyeki'
contact: bigmac@vim.hu
description: 'kicking users for using colors or blinks'
filename: colorkick.pl
license: 'public domain'
modified: '2017-03-07 22:28:22'
name: colorkick
version: '0.1'
-
authors: "Timo 'cras' Sirainen"
contact: tss@iki.fi
description: "Swap between green and white format for public messages. I think this helps readability. Assumes you haven't changed message formats."
filename: colorswap.pl
license: 'Public Domain'
modified: '2002-03-04 22:47:00'
name: colorswap
url: http://irssi.org/
version: '0.1'
-
authors: Nei
contact: 'Nei @ anti@conference.jabber.teamidiot.de'
description: 'Complete nicks after @ (twitter-style)'
filename: complete_at.pl
license: ISC
modified: '2015-11-16 19:32:11'
name: complete_at
url: http://anti.teamidiot.de/
version: '0.2'
-
authors: Daenyth
contact: 'Daenyth /at/ gmail /dot/ com'
description: 'When using tab completion on an empty input buffer, complete to the nick of the person who spoke most recently.'
filename: complete_lastspoke.pl
license: GPL2
modified: '2008-12-07 19:07:31'
name: 'Complete Last-Spoke'
version: '2.1'
-
authors: 'Ian Peters'
commands: connectcmd
contact: itp@ximian.com
description: 'run arbitrary shell commands while [dis]connecting to a server'
filename: connectcmd.pl
license: 'Public Domain'
modified: '2017-03-18 12:17:25'
name: 'Connect Command'
url: http://irssi.org/
version: '0.2'
-
authors: "Mikko 'Quidz' Salmi"
contact: mikko@quidz.net
description: 'adds public channel command for counting down something'
filename: countdown.pl
license: 'Public Domain'
modified: '2014-11-06 21:34:32'
name: countdown
version: '1.0'
-
authors: 'Timo Sirainen'
commands: country
contact: tss@iki.fi
description: 'Print the country name in /WHOIS replies'
filename: country.pl
license: 'Public Domain'
modified: '2002-10-28 00:29:26'
name: country
version: 1.0.1
-
authors: 'Tomasz Poradowski'
contact: batonik@irc.pl
description: 'Kicks people using cp1250 charset'
filename: cp1250_kick.pl
license: GPL
modified: '2002-09-28 12:58:26'
name: cp1250_kick
version: '1.3'
-
authors: "Stefan 'tommie' Tomanek"
commands: crapbuster
contact: stefan@pico.ruhr.de
description: 'Removes CRAP or CLIENTCRAP messages from your buffer'
filename: crapbuster.pl
license: GPLv2
modified: '2008-05-17 17:39:09'
name: CRAPbuster
version: '2003020801'
-
authors: Benedetto
commands: credstore
contact: dettox@gmail.com
description: 'store fingerprints of know users so can verify'
filename: credstore.pl
license: GPLv3+
modified: '2015-06-12 21:40:32'
name: credstore
url: http://irssi.org/
version: '1.3'
-
authors: 'Piotr Krukowiecki'
contact: 'piotr \at/ krukowiecki /dot\ net'
description: 'cron implementation, allows to execute commands at given interval/time'
filename: cron.pl
license: 'GNU GPLv2'
modified: '2014-11-12 12:23:06'
name: 'cron aka jobs'
url: http://www.krukowiecki.net/code/irssi/
version: '0.12'
-
authors: 'martin f. krafft'
commands: ctrlact
contact: madduck@madduck.net
description: 'allows per-channel control over activity indication'
filename: ctrlact.pl
license: MIT
modified: '2017-02-24 07:41:29'
name: ctrlact
version: '1.2'
-
authors: "Maciek 'fahren' Freudenheim"
commands: cwho
contact: fahren@bochnia.pl
description: 'Usage: /CWHO [-a | -l | -o | -v ] [ mask ]'
filename: cwho.pl
license: 'GNU GPLv2 or later'
modified: '2002-05-06 14:02:25'
name: 'Cached WHO'
version: '1.1'
-
authors: 'Geert Hauwaerts'
contact: geert@irssi.org
description: 'This script will fix the Irssi problem with channel forwarding on the Dancer ircd.'
filename: dancer_forwardfix.pl
license: 'Public Domain'
modified: '2004-05-09 01:19:25'
name: dancer_forwardfix.pl
url: http://irssi.hauwaerts.be/dancer_forwardfix.pl
version: '0.03'
-
authors: 'Geert Hauwaerts'
contact: geert@irssi.org
description: 'This script hides the 477 numerics from the dancer IRCd.'
filename: dancer_hide_477.pl
license: 'GNU General Public License'
modified: '2004-03-12 19:46:24'
name: dancer_hide_477.pl
url: http://irssi.hauwaerts.be/dancer_hide_477.pl
version: '0.01'
-
authors: 'Clemens Heidinger'
commands: dau
contact: heidinger@dau.pl
description: 'write like an idiot'
filename: dau.pl
license: BSD
modified: '2017-03-19 21:19:42'
name: DAU
url: http://dau.pl/
version: 2.4.3
-
authors: ak5
contact: meister@hq.kroenk.remove-this-because-of-spam.de
description: 'This script sets dcc_own_ip when starting a DCC send or chat.set dcc_ip_interface to your external interface, f.e. ppp0.If you are connecting though a router, set it to "router"'
filename: dcc_ip.pl
license: 'Public Domain'
modified: '2014-10-17 20:34:00'
name: dcc_ip
url: http://hq.kroenk.de/?gnu/irssi
version: '0.5'
-
authors: 'Peder Stray'
contact: peder@ninja.no
description: 'Move completed dcc gets to the subfolder done'
filename: dccmove.pl
license: GPL
modified: '2014-10-17 20:34:00'
name: dccmove
url: http://ninja.no/irssi/dccmove.pl
version: '1.4'
-
authors: Nei
commands: dccrel
contact: 'Nei @ anti@conference.jabber.teamidiot.de'
description: 'Relays DCC messages. Originally written by greeny & mute for NoNameScript.'
filename: dccrelay.pl
license: 'GNU GPLv2 or later'
modified: '2015-11-23 21:36:07'
name: dccrelay
url: http://anti.teamidiot.de/
version: '0.1'
-
authors: 'David Leadbeater'
commands: dccself
contact: dgl@dgl.cx
description: "/dccself ip port, starts a dcc chat with yourself on that \n\t host/port, best used with /set dcc_autochat_masks."
filename: dccself.pl
license: GPL
modified: '2017-03-05 13:58:24'
name: dccself
version: '0.1'
-
authors: "Matti 'qvr' Hiljanen"
commands: dccstat
contact: matti\@hiljanen.com
description: 'Shows verbose or short information of dcc send/gets on statusbar (speed, size, eta etc.)'
filename: dccstat.pl
license: 'GPL, Version 2'
modified: '2014-10-17 20:34:00'
name: dccstat
url: http://matin.maapallo.org/softa/irssi
version: '1.52'
-
authors: 'Jakub Jankowski'
contact: shasta@atn.pl
description: 'Allows your client to automatically set desired chanmode upon a join to an empty channel.'
filename: defaultchanmode.pl
license: 'GNU GPLv2 or later'
modified: '2008-05-17 17:39:11'
name: 'Default Chanmode'
url: http://irssi.atn.pl/
version: '1.1'
-
authors: 'Joost Vunderink (Garion)'
commands: dejunk
contact: joost@vunderink.net
description: 'Prevents all kinds of junk from showing up'
filename: dejunk.pl
license: 'Public Domain'
modified: '2015-02-02 14:02:20'
name: Dejunk
url: http://www.garion.org/irssi/
version: '1.0'
-
authors: 'Benjamin Reed'
contact: ranger@befunk.com
description: 'Logs URLs and posts them to del.icio.us'
filename: deliciousurl.pl
license: GPLv2
modified: '2014-10-17 20:34:00'
modules: 'Log::Dispatch Log::Dispatch::File Net::Delicious URI::Find::Rule'
name: deliciousurl
url: http://ranger.befunk.com/
version: '0.5'
-
authors: 'Felipe F. Tonello'
contact: eu@felipetonello.com
description: 'Sends notification using the Desktop Notifications Specification.'
filename: desktop-notify.pl
license: 'GPL v3+'
modified: '2017-01-23 21:52:29'
modules: 'Glib::Object::Introspection HTML::Entities'
name: desktop-notify
version: 1.0.1
-
authors: 'Jochem Meyers'
commands: dfupdate
contact: jochem.meyers@gmail.com
description: 'Adds an item which displays the current disk usage.'
filename: df.pl
license: 'GPL v2 or later'
modified: '2017-04-07 16:34:31'
name: df
url: http://kaede.kicks-ass.net/irssi.html
version: 0.1.0
-
authors: 'Marcel Kossin'
contact: mkossin@enumerator.org
description: 'A Dice Simulator for Roleplaying in Channels or just for fun.'
filename: dice.pl
license: 'GNU GPL Version 2 or later'
modified: '2008-05-17 17:39:09'
name: dice
url: http://www.enumerator.org/component/option,com_docman/task,view_category/Itemid,34/subcat,7/
version: 0.00.04
-
authors: 'Marcel Kossin, Makaze'
contact: izaya.orihara@gmail
description: 'A concise dice simulator for channels.'
filename: dice_concise.pl
license: 'GNU GPL v2 or later'
modified: '2014-10-30 17:21:08'
name: dice_concise
version: 0.1.5
-
authors: 'Juerd (first version: Timo Sirainen)'
contact: juerd@juerd.nl
description: 'Caching dictionary based tab completion'
filename: dictcomplete.pl
license: 'Public Domain'
modified: '2014-10-17 20:34:00'
name: 'Dictionary complete'
url: http://juerd.nl/irssi/
version: '1.31'
-
authors: Nei
contact: 'Nei @ anti@conference.jabber.teamidiot.de'
description: 'Dims nicks that are not in channel anymore.'
filename: dim_nicks.pl
license: 'GNU GPLv2 or later'
modified: '2016-06-10 17:23:10'
name: dim_nicks
url: http://anti.teamidiot.de/
version: 0.4.8
-
authors: "Sebastian 'yath' Schmidt"
contact: yathen@web.de
description: 'This scripts sends unknown commands to the server'
filename: dispatch.pl
license: 'GNU GPLv2'
modified: '2002-03-05 14:55:29'
name: 'Command dispatcher'
version: 0.0.2
-
authors: "Timo 'cras' Sirainen"
commands: dns
contact: tss@iki.fi
description: '/DNS <nick>|<host>|<ip> ...'
filename: dns.pl
license: 'Public Domain'
modified: '2002-03-04 22:47:00'
name: dns
url: http://irssi.org/
version: 2.1.1
-
authors: 'Pieter-Bas IJdens'
contact: irssi-scripts@nospam.mi4.org.uk
description: 'Checks for DNS Spam on JOIN'
filename: dnsspam.pl
license: 'GPLv2 or later'
modified: '2005-03-10 00:00:00'
modules: spamcalc::SpamCalc
name: dnsspam
url: http://pieter-bas.ijdens.com/irssi/
version: 1.0.0
-
authors: FoxMaSk
contact: 'foxmask@phpfr.org '
description: 'manage tips ; url ; help in a doc file in the keyword=definition form'
filename: doc.pl
license: 'GNU GPL'
modified: '2016-02-05 11:06:11'
name: doc
url: http://team.gcu-squad.org/~odemah/
version: 0.0.4
-
authors: 'Karl Siegemund'
contact: 'q [at] spuk.de'
description: 'Filters msgs which appear the same on different channels.'
filename: doublefilter.pl
license: GPLv2
modified: '2005-04-22 09:50:00'
name: doublefilter
version: '0.3'
-
authors: 'Bitt Faulk'
commands: dr_who_refresh
contact: lxsfx3h02@sneakemail.com
description: 'Put a nick list in a statusbar'
filename: dr_who.pl
license: BSD
modified: '2017-04-07 16:34:31'
name: dr_who
url: http://beaglebros.com
version: '1.0'
-
authors: 'Espen Holm Nilsen'
contact: holm@blackedge.org
description: 'Print the real IP address of efnet.org clients when they join/part channels, and whois.'
filename: efnetorg.pl
license: 'GPLv2 or later'
modified: '2008-05-25 14:59:13'
name: efnetorg
url: http://www.holmnilsen.com/
version: '1.2'
-
authors: 'Ilya Cassina'
commands: elist
contact: icassina@gmail.com
description: 'This script allow advanced parametrization of the /list command. Accepted parameters are -minusers <#users> and -maxusers <#users>. '
filename: elist.pl
license: GPLv2
modified: '2008-05-25 14:42:28'
name: 'Enanched LIST'
version: '1.0'
-
authors: 'Johan "Ion" Kiviniemi'
contact: 'ion at hassers.org'
description: "Answers to /msg's using Chatbot::Eliza when you're away."
filename: eliza.pl
license: 'Public Domain'
modified: '2002-03-14 05:29:00'
modules: Chatbot::Eliza
name: Eliza
url: http://ion.amigafin.org/scripts/
version: '1.0'
-
authors: 'Igor Duarte Cardoso, Adam James'
contact: 'igordcard@gmail.com, atj@pulsewidth.org.uk'
description: "Emails you messages sent/received while you're away or not. Works for both public mentions and private messages.When away, it is very useful in combination with screen_away. Based on email_privmsgs, with advanced features and options. Requires Email::Sender."
filename: email_msgs.pl
license: MIT
modified: '2015-04-29 19:00:45'
modules: 'Email::Sender::Simple Email::Simple Email::Simple::Creator'
name: email_msgs
url: http://www.igordcard.com
version: '1.0'
-
authors: 'Adam James'
contact: atj@pulsewidth.org.uk
description: "Emails you private messages sent while you're away. Useful in combination with screen_away. Requires Email::Sender."
filename: email_privmsgs.pl
license: MIT
modified: '2015-01-18 02:15:41'
modules: 'Email::Sender::Simple Email::Simple Email::Simple::Creator'
name: email_privmsgs
url: http://git.pulsewidth.org.uk/?p=irssi-scripts.git;a=summary
version: '0.5'
-
authors: PrincessLeia2
contact: 'lyz\@princessleia.com '
description: 'a script for accessing an email mysql database through irc'
filename: emaildb1.0.pl
license: 'GNU GPL v2 or later'
modified: '2014-10-17 22:54:13'
modules: DBI
name: emaildb
url: http://www.princessleia.com/
version: '1.0'
-
authors: 'Ilkka Pale'
commands: 'emo emolist'
contact: ilkka.pale@gmail.com
description: 'Outputs various unicode emoticons'
filename: emo.pl
license: 'Public Domain'
modified: '2015-01-18 02:15:41'
name: emo
version: 0.0.1
-
authors: 'Taneli Kaivola'
contact: dist@sci.fi
description: 'Expand "event mode" and emit "event mode {channel,user,server} *"'
filename: events.pl
license: GPLv2
modified: '2002-05-20 04:04:47'
name: 'Extended events'
url: http://scripts.irssi.de
version: '1.0'
-
authors: 'Jean-Yves Lefort'
contact: 'jylefort\@brutele.be, decadix on IRCNet'
description: 'Adds a setting to automatically terminate a process whose parent window has been closed'
filename: exec_clean.pl
license: BSD
modified: '2014-10-17 22:54:13'
name: exec-clean
url: http://void.adminz.be/irssi.shtml
version: '1.01'
-
authors: 'unknown, Nei'
contact: 'Nei @ anti@conference.jabber.teamidiot.de'
description: 'Permit to use /EXEC with arbitrary irssi commands.'
filename: execcmd.pl
modified: '2015-11-23 21:39:34'
name: execcmd
url: http://anti.teamidiot.de/
version: '0.1'
-
authors: CrazyCat
commands: 'aw back xahelp xanick xasave'
contact: crazycat@c-p-f.org
description: 'Extended Away & Back programm'
filename: extaway.pl
license: 'GNU GPLv2 or later'
modified: '2014-10-17 22:54:13'
name: ExtAway
version: '1.0'
-
authors: 'Geert Hauwaerts'
commands: fctcp
contact: geert@irssi.org
description: 'This script sends fake ctcp replies to a client using a fake ctcp list.'
filename: fakectcp.pl
license: 'GNU General Public License'
modified: '2014-10-17 22:54:13'
name: fakectcp.pl
url: http://irssi.hauwaerts.be/default.pl
version: '1.03'
-
authors: 'Stefan Jakobs'
commands: fcountry
contact: stefan.jakobs@rus.uni-stuttgart.de
description: 'Print the country name in /WHOIS replies'
filename: fcountry.pl
license: GPLv2
modified: '2008-05-11 20:20:00'
modules: 'Geography::Countries IP::Country::Fast'
name: fast_country
version: 1.0.0
-
authors: Juerd
commands: figlet
contact: juerd@juerd.nl
description: 'Safe figlet implementation (with color support!)'
filename: figlet.pl
license: 'Public Domain'
modified: '2002-03-10 14:46:00'
name: Figlet
url: http://juerd.nl/irssi/
version: '1.14'
-
authors: 'David Leadbeater'
commands: file
description: 'A command to output content of files in various ways'
filename: file.pl
license: 'GNU GPLv2 or later'
modified: '2014-10-17 22:54:13'
name: file.pl
url: http://irssi.dgl.cx/
version: '1'
-
authors: 'Erkki Seppälä'
commands: find
contact: flux@inside.org
description: "Finds a nick by real name, if he's on a channel with you."
filename: find.pl
license: 'Public Domain'
modified: '2014-10-17 22:54:13'
name: Find
url: http://xulfad.inside.org/~flux/software/irssi/
version: '0.2'
-
authors: 'Thomas Karlsson'
commands: 'findbotactivesends findbotqueue findbotreload findbotremove findbotreset'
contact: findbot@planet.eu.org
description: 'Public command @find script'
filename: findbot.pl
license: GPL
modified: '2014-10-17 22:54:13'
name: Findbot
url: http://hem.passagen.se/thka2315/
version: '1.57'
-
authors: Nei
contact: 'Nei @ anti@conference.jabber.teamidiot.de'
description: 'Some workarounds to improve irssi experience on the Slack IRC gateway'
filename: fix_slackirc.pl
license: ISC
modified: '2016-08-16 22:01:01'
name: fix_slackirc
url: http://anti.teamidiot.de/
version: '0.3'
-
authors: 'Piotr Krukowiecki'
commands: fleech
contact: 'piotr //at// krukowiecki //dot// net'
description: 'fserve leecher - helps you download files from file servers'
filename: fleech.pl
license: 'GNU GPL v2'
modified: '2014-10-17 22:54:13'
name: fleech
url: http://www.krukowiecki.net/code/irssi/
version: 0.0.2i
-
authors: 'Tyler Abair, Thorsten Leemhuis, James Shubin, Serge van Ginderachter'
contact: 'fedora@leemhuis.info, serge@vanginderachter.be'
description: 'Write notifications to a file in a consistent format.'
filename: fnotify.pl
license: 'GNU General Public License'
modified: '2016-01-26 17:14:23'
name: fnotify
url: 'http://www.leemhuis.info/files/fnotify/fnotify https://ttboj.wordpress.com/'
version: 0.0.6
-
authors: Juerd
contact: juerd@juerd.nl
description: 'Automatically switch to active windows'
filename: follow.pl
license: 'Public Domain'
modified: '2002-03-19 11:00:00'
name: Follower
url: http://juerd.nl/irssi/
version: '1.10'
-
authors: 'Juerd, Shiar'
commands: rot
contact: 'juerd@juerd.nl, shiar@shiar.org'
description: 'Rot n+i encryption and decryption'
filename: foo.pl
license: 'Public Domain'
modified: '2003-01-21 01:40:00'
name: 'UeberRot encryption'
url: http://juerd.nl/site.plp/irssi
version: '3.00'
-
authors: 'David Leadbeater'
contact: dgl@dgl.cx
description: "Extends the /foreach command to have /foreach user \n (users in a channel).\n Syntax: /foreach user [hostmask] command."
filename: foreach_user.pl
license: 'GNU GPLv2 or later'
modified: '2008-05-17 17:39:11'
name: 'foreach user'
url: http://irssi.dgl.cx/
version: '1.0'
-
authors: 'ResDev (Ben Reser)'
contact: ben@reser.org
description: 'Formats msgs and notices when the identify-msg and/or identify-ctcp capability is available.'
filename: format_identify.pl
license: GPL2
modified: '2014-04-09 00:18:24'
name: format_identify
url: http://ben.reser.org/irssi/
version: 1.5-dev-coekie
-
authors: 'Ivo Marino'
commands: fortune
contact: eim@cpan.rg
description: 'Send a random fortune cookie to an user in channel.'
filename: fortune.pl
license: 'Public Domain'
modified: '2015-01-26 22:59:40'
name: fortune
version: '1.3'
-
authors: "Stefan 'tommie' Tomanek"
commands: forward
contact: stefan@pico.ruhr.de
description: 'forward incoming messages to another nick'
filename: forward.pl
license: GPLv2
modified: '2008-05-17 17:39:09'
name: Forward
url: http://irssi.org/scripts/
version: '2003071904'
-
authors: 'Geert Hauwaerts'
contact: geert@irssi.org
description: 'This script will filter some Freenode IRCD (Dancer) servernotices.'
filename: freenode_filter.pl
license: 'GNU General Public License'
modified: '2003-09-17 23:00:11'
name: default.pl
url: http://irssi.hauwaerts.be/freenode_filter.pl
version: '0.06'
-
authors: 'Peder Stray'
commands: 'addfriend friends'
contact: peder@ninja.no
description: 'Basicly an autoop script with a nice interface and nick coloring ;)'
filename: friends_peder.pl
license: GPL
modified: '2014-10-17 22:54:13'
name: friends
url: http://ninja.no/irssi/friends.pl
version: '1.34'
-
authors: 'Jakub Jankowski'
commands: 'addfriend addhost chdelay chflags chhandle chpass comment delchanrec delfriend delhost findfriends flushlearnt friendsversion isfriend listfriends loadfriends opfriends oppingtree queue savefriends'
contact: shasta@toxcorp.com
description: 'Maintains list of people you know.'
filename: friends_shasta.pl
license: 'GNU GPLv2 or later'
modified: '2014-10-17 22:54:13'
name: Friends
url: http://toxcorp.com/irc/irssi/friends/
version: 2.4.9
-
authors: 'Pablo Martín Báez Echevarría'
commands: mirccolors
contact: pab_24n@outlook.com
description: 'define a permanent text formatting (bold, underline, etc.) for outgoing messages'
filename: frm_outgmsgs.pl
license: 'Public Domain'
modified: '2016-06-18 12:01:20'
name: frm_outgmsgs
url: http://reirssi.wordpress.com
version: '1.1'
-
authors: 'Piotr Krukowiecki & others'
commands: fs
contact: 'piotr at pingu.ii.uj.edu.pl'
description: 'File server for irssi'
filename: fserve.pl
license: 'GPL v2'
modified: '2014-10-17 22:54:13'
name: FServe
url: http://pingu.ii.uj.edu.pl/~piotr/irssi
version: 2.0.0
-
authors: 'Geert Hauwaerts'
commands: fuckem
contact: geert@irssi.org
description: 'Simulates the BitchX /FUCKEM command. Deop/Dehalfop everyone on the channel including you.'
filename: fuckem.pl
license: 'GNU General Public License'
modified: '2003-09-17 23:00:11'
name: fuckem.pl
url: http://irssi.hauwaerts.be/fuckem.pl
version: '0.05'
-
authors: kjensenxz
commands: 'rfaway rfme rfsay rftopic'
contact: kenneth@jensen.cf
description: 'Prints colorized fullwidth text'
filename: fullrain.pl
license: 'GNU GPLv3'
modified: '2017-03-28 23:10:37'
name: fullrain
url: http://github.com/kjensenxz
version: 1.0.0
-
authors: prussian
commands: fullwidth
contact: genunrest@gmail.com
description: 'talk like some vaporwave cool kid'
filename: fullwidth.pl
license: 'Apache 2.0'
modified: '2017-04-11 22:11:42'
name: fullwidth
url: http://github.com/GeneralUnRest/
version: 1.2.0
-
authors: "Maciek 'fahren' Freudenheim"
commands: 'addgetop delgetop getop listgetop'
contact: fahren@bochnia.pl
description: 'Automatically request op from random opped person with specifed command from list after joining channel'
filename: getop.pl
license: 'GNU GPLv2 or later'
modified: '2014-10-17 22:54:13'
name: GetOP
version: 0.9b
-
authors: PrincessLeia2
contact: 'lyz\@princessleia.com '
description: 'a bot script, using ! followed by anything the script will say (as an action): gets nickname anything'
filename: gimmie.pl
license: 'GNU GPL v2 or later'
modified: '2014-10-17 22:54:13'
name: gimmie
url: http://www.princessleia.com/
version: '1.0'
-
authors: nohar
commands: go
contact: nohar@freenode
description: 'Implements /go command that activates a window given a name/partial name. It features a nice completion.'
filename: go.pl
license: 'GPLv2 or later'
modified: '2017-02-02 02:40:44'
name: 'go to window'
version: '1.1'
-
authors: cxreg
contact: cxreg@pobox.com
description: 'Switch to the window with the given name or item'
filename: go2.pl
license: 'Public Domain'
modified: '2014-05-27 21:08:34'
name: go2
url: http://genericorp.net/~count/irssi/go
version: '1.0'
-
authors: 'Oddbjørn Kvalsund'
commands: google
contact: oddbjorn.kvalsund@hiof.no
description: 'This script queries google.com and returns the results.'
filename: google.pl
license: 'Public Domain'
modified: '2008-05-17 17:39:09'
modules: LWP::UserAgent
name: Google
version: '1.00'
-
authors: 'original idea by valvoline, irssi porting by pallotron'
commands: 'about erasepass greets manual setpass validate verify'
contact: pallotron@freaknet.org
description: 'Have gpg-based trusting features in your irssi client!'
filename: gpgvalidator.pl
license: 'GPL v2'
modified: '2008-05-17 17:39:11'
name: 'gpgvalidator v. 0.1.2'
url: http://www.freaknet.org/~pallotron
version: 0.1.2
-
authors: "David O'Rourke, Nico R. Wohlgemuth"
contact: nico@lifeisabug.com
description: 'Hide the stupid "greet messages" posted by some bots after someone joins a channel.'
filename: greetignore.pl
license: GPLv2
modified: '2015-01-18 02:15:41'
name: greetignore
version: '1.1'
-
authors: "Timo 'cras' Sirainen, Wouter Coekaerts"
commands: grep
contact: 'tss@iki.fi, wouter@coekaerts.be'
description: '/GREP [-i] [-w] [-v] [-F] <perl-regexp> <command to run>'
filename: grep.pl
license: 'Public Domain'
modified: '2014-10-17 22:54:13'
name: grep
url: http://wouter.coekaerts.be/irssi/
version: '2.1'
-
authors: 'Nathan Handler'
commands: grepbans
contact: nathan.handler@gmail.com
description: 'Greps the ban list for the specified pattern'
filename: grepbans.pl
license: GPLv3+
modified: '2015-09-11 05:11:39'
name: grepbans
version: '1.0'
-
authors: mistr
commands: gsi
contact: mistr@sensewave.com
description: '/gsi <phone nr> checks number via http://gulesider.no. Norwegian 8-digit numbers only. Nice if you have caller-ID and are as paranoid as me.'
filename: gsi.pl
license: 'Public Domain'
modified: '2015-01-18 02:15:41'
modules: 'LWP::UserAgent URI::Heuristic'
name: gsi
url: http://irssi.org/scripts
version: 220904-04:30:00
-
authors: 'Sven Ulland'
commands: gtrans
contact: svensven@gmail.com
description: 'Translation via the Google Language API'
filename: gtrans.pl
license: GPLv2
modified: '2008-10-07 18:49:55'
modules: WebService::Google::Language
name: GTrans
url: http://scripts.irssi.org/
version: 0.0.1
-
authors: Juerd
contact: juerd@juerd.nl
description: 'Adds the uppercased version of the tab completes'
filename: guts.pl
license: 'Public Domain'
modified: '2002-05-18 21:40:00'
name: 'German Uppercased Tab Stuff'
url: http://juerd.nl/irssi/
version: '1.00'
-
authors: 'Valentin Batz'
contact: vb@g-23.org
description: 'adds a statusbar item which shows temperatures of harddisks (with multiple hddtemp-hosts support)'
filename: hddtemp.pl
license: GPLv2
modified: '2017-03-17 11:54:11'
name: hddtemp
url: http://hurzelgnom.bei.t-online.de/irssi/scripts/hddtemp.pl
version: '0.15'
-
authors: Cybertinus
commands: hello
contact: cybertinus@cybertinus.nl
description: "This script allows you to greet the channel You're joining with the command /hello. The text it shows depends on the time you're living."
filename: hello.pl
license: GPL2
modified: '2005-05-25 13:42:00'
name: Greeter
version: '1.00'
-
authors: 'Marcus Rueckert'
commands: hide
contact: darix@irssi.de
description: "a little interface to irssi's activity_hide_* settings"
filename: hide.pl
license: 'Public Domain'
modified: '2002-07-21 06:53:21'
name: 'hide tools'
url: http://scripts.irssi.de/
version: 0.0.7
-
authors: JamesOff
contact: james@jamesoff.net
description: 'Stops eggdrop passwords showing up'
filename: hideauth.pl
license: 'Public Domain'
modified: '2002-06-04 20:56:00'
name: hideauth
url: http://www.jamesoff.net
version: '1.01'
-
authors: Nei
contact: 'Nei @ anti@conference.jabber.teamidiot.de'
description: 'Removes and re-adds lines to the Irssi buffer view.'
filename: hideshow.pl
license: 'GNU GPLv2 or later'
modified: '2015-11-16 19:32:11'
name: hideshow
url: http://anti.teamidiot.de/
version: 0.4.4
-
authors: Mantis
contact: mantis@inta-link.com
description: 'shows events happening in all channels you are in that may concern you'
filename: highlite.pl
license: 'GNU GPL v2'
modified: '2003-01-03 00:00:00'
name: highlite
url: http://www.inta-link.com/
version: '1.0'
-
authors: 'Geert Hauwaerts'
commands: hignore
contact: geert@irssi.org
description: 'This script will add the HIGNORE command, if you use this command in a query it will ignore the host.'
filename: hignore.pl
license: 'Public Domain'
modified: '2003-09-17 23:51:38'
name: hignore.pl
url: http://irssi.hauwaerts.be/hignore.pl
version: '0.02'
-
authors: 'Guillaume Gelin'
contact: contact@ramnes.eu
description: 'Call a system command when receiving a hilight'
filename: hilightcmd.pl
license: 'GNU GPLv3'
modified: '2016-04-26 11:41:22'
modules: 'String::ShellQuote Text::Sprintf::Named'
name: hilightcmd
url: https://github.com/ramnes/hilightcmd
version: '0.1'
-
authors: "Timo 'cras' Sirainen, Mark 'znx' Sangster, Kimberly 'rummik' Zick"
contact: 'tss@iki.fi, znxster@gmail.com, git@zick.kim'
description: 'Print hilighted messages to window named "hilight"'
filename: hilightwin.pl
license: 'Public Domain'
modified: '2017-04-06 16:28:24'
name: hilightwin
url: http://irssi.org/
version: '1.00'
-
authors: 'Stefan Heinemann'
contact: stefan.heinemann@codedump.ch
description: 'Simple script that highlights URL'
filename: hilite_url.pl
license: GPL
modified: '2017-01-12 12:37:37'
name: 'hilite url'
url: http://senseless.codedump.ch
version: '0.1'
-
authors: 'John Morrissey'
contact: jwm@horde.net
description: 'Translate nicks to HipChat "mention names"'
filename: hipchat_complete.pl
license: BSD
modified: '2015-01-18 02:15:41'
modules: WebService::HipChat
name: hipchat_complete
version: '2.0'
-
authors: 'Wouter Coekaerts'
commands: history_search
contact: coekie@irssi.org
description: 'Search within your typed history as you type (like ctrl-R in bash)'
filename: history_search.pl
license: 'GPLv2 or later'
modified: '2015-12-09 23:35:34'
name: history_search
url: http://wouter.coekaerts.be/irssi/
version: '2.1'
-
authors: 'Riku "Shrike" Lindblad'
contact: 'shrike\@addiktit.net, Shrike on IRCNet/QNet/EFNet/DALNet'
description: 'Add a apache page hitcounter to statusbar'
filename: hitcount.pl
license: Free
modified: '2017-04-07 16:34:31'
name: hitcount
version: '1.4'
-
authors: 'Riku Voipio'
contact: riku.voipio@iki.fi
description: "responds to \"!hl counterstrike.server \" command on channels/msg's to query counter-strike servers"
filename: hl.pl
license: GPLv2
modified: '2014-10-17 22:54:13'
name: half-life
url: http://nchip.ukkosenjyly.mine.nu/irssiscripts/
version: '1.2'
-
authors: 'Veli Mankinen'
contact: veli@piipiip.net
description: 'Floods the channel about things that are hapening in your hl -server. Also enables you to send rcon commands to the server from channel.'
filename: hlbot.pl
license: GPLv2
modified: '2015-02-02 14:02:20'
name: 'HL-log/rcon -bot'
url: http://piipiip.net/
version: '1.0'
-
authors: 'Juerd, Eevee'
contact: '#####@juerd.nl'
description: 'Scrolls to previous or next highlight'
filename: hlscroll.pl
license: 'Public Domain'
modified: '2015-11-16 19:36:52'
name: 'Scroll to hilights'
url: http://juerd.nl/site.plp/irssi
version: '0.02'
-
authors: 'Jean-Yves Lefort'
commands: hostname
contact: 'jylefort\@brutele.be, decadix on IRCNet'
description: 'Adds a /HOSTNAME command; it will list all IP addresses on all interfaces found on your machine, resolve them, and allow you to choose one easily'
filename: hostname.pl
license: BSD
modified: '2014-10-17 22:54:13'
modules: Socket6
name: hostname
url: http://void.adminz.be/irssi.shtml
version: '1.01'
-
authors: Santabutthead
commands: 'maap maasp madd maddall mas masp mcaap mcaasp mcap mcasp mclear mclearback mdel mhelp mhelpadv mhelpmpdbar minfo mloud mlouder mls mmove mmute mnext mpause mplay mplaylist mplaylistload mplaylistls mplaylistrm mplaylistsave mpls mprev mrandom mrepeat mrm msearch mseek mshuffle mstop mupdate mvolume mwa mwaa mwaas mwas mwipe'
contact: starz@antisocial.com
description: 'This controls Music Player Daemon from the familiar irssi interface'
filename: iMPD.pl
license: 'GPL v2'
modified: '2017-04-07 16:34:31'
name: iMPD
url: http://www.musicpd.org
version: 0.0.0n
-
authors: 'Isaac Good'
contact: 'irssi@isaacgood.com; irc.freenode.net/yitz'
description: 'Automatically IDENTIFY when prompted'
filename: ident.pl
license: MIT
modified: '2016-12-06 18:45:34'
name: ident
version: '1.0'
-
authors: 'Eric Jansen'
commands: identify-md5
contact: chaos@sorcery.net
description: 'MD5 NickServ identification script for SorceryNet'
filename: identify-md5.pl
license: GPL
modified: '2003-03-01 13:32:30'
name: identify-md5
url: http://xyrion.org/irssi/
version: '1.05'
-
authors: "Stefan 'tommie' Tomanek"
commands: idle
contact: stefan@pico.ruhr.de
description: 'Retrieves the idletime of any nick'
filename: idletime.pl
license: GPLv2
modified: '2008-05-17 17:39:11'
name: idletime
url: ''
version: '20030208'
-
authors: 'Tom Feist, Wouter Coekaerts'
commands: ido_switch_start
contact: 'shabble+irssi@metavore.org, shabble@#irssi/freenode'
description: 'Select window[-items] using an ido-mode like search interface'
filename: ido_switcher.pl
license: 'GPLv2 or later'
modified: '2015-12-09 23:35:34'
name: ido_switcher
url: http://github.com/shabble/irssi-scripts/tree/master/ido-mode/
version: '2.4'
-
authors: "Stefan 'tommie' Tomanek"
commands: idonkey
contact: stefan@pico.ruhr.de
description: 'equips Irssi with an interface to mldonkey'
filename: idonkey.pl
license: GPLv2
modified: '2008-05-17 17:39:11'
modules: 'HTML::Entities LWP::UserAgent'
name: iDonkey
version: '2004051601'
-
authors: 'Dmitry "jsn" Kim'
contact: jason@nichego.net
description: 'script to log ignored messages'
filename: ignore_log.pl
license: GPL
modified: '2014-10-17 22:54:13'
name: ignore_log
url: http://
version: '0.1'
-
authors: 'Erkki Seppälä'
commands: ignoreoc
contact: flux@inside.org
description: 'Ignore messages from people not on your channels.Now people you msg are added to bypass-list.'
filename: ignoreoc.pl
license: 'Public Domain'
modified: '2014-10-17 22:54:13'
name: Ignore-OC
url: http://www.inside.org/~flux/software/irssi/
version: '0.6'
-
authors: apic
contact: apic@IRCnet
description: 'script to show ignored message in censored form'
filename: ignorsula.pl
license: 'public domina'
modified: '2009-07-26 16:00:03'
name: ignorsula
url: http://irssi.apic.name/ignorsula.pl
version: 1.999999999543675475473856-FDIV-final
-
authors: 'Marcus Rueckert'
contact: darix@irssi.org
description: 'adds a statusbar item which show length of the inputline'
filename: il.pl
license: 'BSD License or something more liberal'
modified: '2017-04-07 16:34:31'
name: inputlength
url: http://www.irssi.de./
version: 0.0.5
-
authors: 'Eric Jansen'
contact: chaos@sorcery.net
description: 'Automatically lookup IMDB-numbers in nicknames'
filename: imdb.pl
license: GPL
modified: '2003-03-01 12:39:49'
modules: LWP::UserAgent
name: imdb
url: http://xyrion.org/irssi/
version: '1.01'
-
authors: 'Jari Matilainen'
commands: prompt
contact: 'vague!#irssi@freenode on irc'
description: 'Intercept misprinted commands and offer to remove the first character before sending it on'
filename: intercept.pl
license: 'Public Domain'
modified: '2015-11-25 14:54:47'
name: intercept
url: http://gplus.to/vague
version: '0.2'
-
authors: c0ffee
commands: 'join18n msg18n part18n'
contact: c0ffee@penguin-breeder.org
description: 'Joins channels with non-utf8 non-ascii names.'
filename: intjoin.pl
license: 'Public Domain'
modified: '2014-10-17 22:54:13'
modules: Text::Iconv
name: 'i18n /join'
url: http://www.penguin-breeder.org/irssi/
version: '0.2'
-
authors: 'Geert Hauwaerts'
commands: invitejoin
contact: geert@irssi.org
description: 'This script will join a channel if somebody invites you to it.'
filename: invitejoin.pl
license: 'Public Domain'
modified: '2017-01-17 20:26:41'
name: invitejoin.pl
url: https://github.com/irssi/scripts.irssi.org/blob/master/scripts/invitejoin.pl
version: '0.02'
-
authors: xlony
commands: ipupdate
contact: anderfdez@yahoo.es
description: 'Auto "/set dcc_own_ip IP" on connect.'
filename: ipupdate.pl
license: GPL
modified: '2006-01-03 18:33:56'
modules: 'HTTP::Request::Common LWP::UserAgent'
name: IPupdate
version: '1.2'
-
authors: wilk
commands: 'qdelay qhint qinit qoff qon qreload qremind qskip qstats qteams qtime qtype quiz'
contact: http://mail.quizpl.net
description: 'irssi quiz script'
filename: iquiz.pl
license: 'GNU GPL v3 or any later version'
modified: '2017-03-11 21:51:03'
name: iQuiz
url: http://iquiz.quizpl.net
version: '170202'
-
authors: wilk
commands: 'qdelay qhint qinit qoff qon qreload qremind qskip qstats qteams qtime qtype quiz'
contact: http://mail.quizpl.net
description: 'irssi quiz script'
filename: iquiz_en.pl
license: 'GNU GPL v3 or any later version'
modified: '2017-03-11 21:51:03'
name: iQuiz
url: http://iquiz.quizpl.net
version: 170202_en
-
authors: DonRumata
contact: rumata@dragons.ru
description: 'IrcNet.ru Auto Identify - changes nick and send identify command, then sets codepage'
filename: iraident.pl
license: GPLv2
modified: '2008-05-25 15:05:46'
name: iraident
url: http://rumata.dragons.ru
version: 0.6.1
-
authors: 'kodgehopper (kodgehopper@netscape.net)'
contact: kodgehopper@netscape.net
description: 'Chess server for IRC. Allows for multiple 2-player games to be played simultaneously'
filename: irc_chess.pl
license: 'GNU GPL'
modified: '2014-10-17 22:54:13'
name: IRC-Chess
url: 'none as yet'
version: '0.1'
-
authors: 'Erkki Seppälä'
commands: irccomplete_typowords
contact: flux@inside.org
description: 'Adds words from IRC to your tab-completion list, plus fixes typos'
filename: irccomplete.pl
license: 'Public Domain'
modified: '2014-10-17 22:54:13'
name: 'IRC Completion'
url: http://xulfad.inside.org/~flux/software/irssi/
version: '0.1'
-
authors: "Timo 'cras' Sirainen"
contact: tss@iki.fi
description: 'Show IRC gallery (http://irc-galleria.net, finnish only) information on /WHOIS or /GALLERY'
filename: ircgallery.pl
license: 'Public Domain'
modified: '2015-02-02 14:02:20'
name: ircgallery
url: http://irssi.org/
version: '1.13'
-
authors: BCOW
commands: ircgcomments
contact: bcow@iki.fi
description: 'Tarkistelee irc-galleria.net:iä ja sanoo kun sinulle on uusia viestejä.'
filename: ircgmessagenotify.pl
license: GPLv2
modified: '2017-04-07 16:34:31'
modules: 'HTTP::Cookies LWP::UserAgent'
name: ircgmessagenotify
url: http://www.verkonpaino.net/
version: 0.1b
-
authors: BC-bd
commands: ircops
contact: bd@bc-bd.org
description: '/IRCOPS - Display IrcOps in current channel'
filename: ircops.pl
license: 'GPL v2'
modified: '2008-06-16 10:46:07'
name: ircops
url: https://bc-bd.org/svn/repos/irssi/trunk/
version: '0.1'
-
authors: "Stefan 'tommie' Tomanek"
commands: ircsec
contact: stefan@pico.ruhr.de
description: 'secures your conversation'
filename: ircsec.pl
license: GPLv2
modified: '2008-05-25 13:44:01'
modules: Crypt::CBC
name: IRCSec
version: '2008051101'
-
authors: 'Valentin Batz'
contact: vb\@g-23.org
description: 'show the accountname (330) and real host on ircu'
filename: ircuwhois.pl
license: GPLv2
modified: '2015-11-16 19:36:52'
name: ircuwhois
url: http://www.hurzelgnom.homepage.t-online.de/irssi/scripts/quakenet.pl
version: '1.2'
-
authors: 'Julius Michaelis'
commands: feed
contact: iRRSi@cserv.dyndns.org
description: 'Parses and announces XML/Atom feeds'
filename: irssi-feed.pl
license: GPLv3
modified: '2013-07-12 20:44:55'
modules: XML::Feed
name: 'iRSSi feed reader'
url: https://github.com/jcaesar/irssi-feed
version: '20130209'
-
authors: legion
commands: 'anp anpa cleanbar np npa npinfo npsend'
contact: a.lepore@email.it
description: 'Display the song played by mp3blaster in channels and statusbar. See the top of the file for usage.'
filename: irssiBlaster.pl
license: 'GNU GPLv2 or later'
modified: '2017-04-07 16:34:31'
name: irssiBlaster
version: '1.6'
-
authors: 'Aaron Bieber'
contact: deftly@gmail.com
description: 'Logs chats to a PostgreSQL database.'
filename: irssi_logger.pl
license: BSD
modified: '2015-02-04 11:16:03'
modules: DBI
name: irssi_logger
url: https://github.com/qbit/irssi_logger
version: '1.0'
-
authors: "Stefan 'tommie' Tomanek"
contact: stefan@pico.ruhr.de
description: 'integrates ICQ instant-messaging into irssi'
filename: irssiq.pl
license: GPLv2
modified: '2008-05-17 17:39:11'
modules: Net::vICQ
name: IrssiQ
version: '2003231101'
-
authors: mniip
commands: 'isbanned islisted ismuted isreset'
contact: 'mniip @ freenode'
description: 'freenode-specific script that checks whether someone is banned on some channel'
filename: isbanned.pl
license: 'Public domain'
modified: 2015-09-14
name: isbanned
version: 0.7.0
-
authors: 'Uli Baumann'
contact: f-zappa@irc-muenster.de
description: 'Displays incoming ISDN calls'
filename: isdn.pl
license: GPL
modified: '2014-10-17 22:54:13'
name: isdn
version: '0.3'
-
authors: 'Johan "Ion" Kiviniemi'
contact: 'ion at hassers.org'
description: 'Internet Time statusbar item. See http://www.timeanddate.com/time/internettime.html'
filename: itime.pl
license: 'Public Domain'
modified: '2017-04-07 16:34:31'
name: itime
url: http://ion.amigafin.org/scripts/
version: '0.9'
-
authors: 'Kristof Korwisi'
contact: kk@manoli.im-dachgeschoss.de
description: '/xmms announces which _file_ is currently playing. E.g. Currently playing: "Kieran Halpin & Band - Mirror Town.mp3"'
filename: ixmmsa.pl
license: GPL
modified: '2006-10-27 00:00:00'
modules: 'Xmms Xmms::Remote'
name: iXMMSa
url: http://manoli.im-dachgeschoss.de/~kk/
version: 0.2+1
-
authors: 'Pieter-Bas IJdens'
commands: joininfo
contact: irssi-scripts@nospam.mi4.org.uk
description: 'Reports WHOIS information and channel list for those who join a channel'
filename: joininfo.pl
license: 'GPLv2 or later'
modified: '2005-03-10 00:00:00'
name: joininfo
url: http://pieter-bas.ijdens.com/irssi/
version: 1.0.0
-
authors: Linostar
commands: kbanref
contact: linostar@sdf.org
description: 'Script for kickbanning those who post referral links in a channel'
filename: kban-referrals.pl
license: 'New BSD'
modified: '2015-02-07 16:26:24'
name: 'KickBan Referrals Script'
version: '1.03'
-
authors: "Filippo 'godog' Giunchedi"
contact: filippo\@esaurito.net
description: 'Kicks (and bans) people with >= 4 dots in theirs hostname'
filename: kblamehost.pl
license: 'GNU GPLv2 or later'
modified: '2014-10-17 22:54:13'
name: kblamehost
url: http://esaurito.net
version: 0.0.1
-
authors: 'Peder Stray'
commands: 'keepnick listnick unkeepnick'
contact: peder@ninja.no
description: 'Try to get your nick back when it becomes available.'
filename: keepnick.pl
license: GPL
modified: '2014-10-17 22:54:13'
name: keepnick
url: http://ninja.no/irssi/keepnick.pl
version: '1.17'
-
authors: 'Gerfried Fuchs'
commands: 'dekenny kenny'
contact: alfie@channel.debian.de
description: 'autodekennyfies /kenny, adds /kenny, /dekenny. Based on Jan-Pieter Cornets signature version'
filename: kenny.pl
license: BSD
modified: '2002-06-13 00:00:00'
name: 'kenny speech'
url: http://alfie.ist.org/projects/irssi/scripts/kenny.pl
version: 2.3.1
-
authors: 'Johan "Ion" Kiviniemi'
commands: kernel_version
contact: 'ion at hassers.org'
description: 'Fetches the version(s) of the latest Linux kernel(s).'
filename: kernel.pl
license: 'Public Domain'
modified: '2002-03-12 22:20:00'
name: Kernel
url: http://ion.amigafin.org/irssi/
version: '0.9'
-
authors: 'Geert Hauwaerts'
commands: 'azerty qwerty'
contact: geert@irssi.org
description: 'This script will set the proper keybindings on /AZERTY and /QWERTY.'
filename: keybinds.pl
license: 'Public Domain'
modified: '2003-11-04 16:49:20'
name: keybindings.pl
url: http://irssi.hauwaerts.be/keybindings.pl
version: '0.01'
-
authors: c0ffee
contact: c0ffee@penguin-breeder.org
description: 'Enhances /k /kb and /kn with some nice options.'
filename: kicks.pl
license: 'Public Domain'
modified: '2017-04-01 17:30:41'
name: 'Various kick and ban commands'
url: http://www.penguin-breeder.org/irssi/
version: '0.27'
-
authors: "Piotr 'Cvbge' Krukowiecki"
description: 'When new send arrives checks if there are old identical sends (ie from the same nick on the same server and with the same filename) and closes them'
filename: kill_fake_gets.pl
license: 'Public Domain'
modified: '2014-10-17 22:54:13'
name: kill_fake_gets
url: http://pingu.ii.uj.edu.pl/~piotr/irssi/
version: '1.1'
-
authors: 'Timo Sirainen'
description: 'Displays kills with more understandable messages'
filename: kills.pl
license: 'Public Domain'
modified: '2014-10-17 22:54:13'
name: kills
version: '1.00'
-
authors: 'Geert Hauwaerts'
contact: geert@irssi.org
description: 'This script shows a warning in the statuswindow if somebody preforms a /KlINE or /UNKLINE.'
filename: kline_warning.pl
license: 'GNU General Public License'
modified: '2003-09-17 23:00:11'
name: kline_warning.pl
url: http://irssi.hauwaerts.be/kline_warning.pl
version: '1.08'
-
authors: Mikachu
contact: 'Mikachu @ quakenet|freenode|arcnet|oftc'
description: 'A script to show playing xmms song in channel or in a statusbar, and also control xmms. Be sure to read through the script to see all features.'
filename: l33tmusic.pl
license: GPL
modified: '2008-09-04 21:12:26'
modules: 'Xmms Xmms::Remote'
name: 'l33t xmms music showing script'
version: '2.01'
-
authors: "Simon 'simmel' Lundström"
contact: 'simmel@(freenode|quakenet|efnet) http://last.fm/user/darksoy'
description: 'A now-playing-script which uses Last.fm'
filename: lastfm.pl
license: BSD
modified: '2014-10-17 22:54:13'
modules: 'HTML::Entities LWP::UserAgent'
name: lastfm
url: http://soy.se/code/
version: '5.8'
-
authors: 'Sander Smeenk'
contact: irssi@freshdot.net
description: 'Remembers what people said last on what channels'
filename: lastspoke.pl
license: 'GNU GPLv2 or later'
modified: '2014-10-17 22:54:13'
name: lastspoke
url: http://irssi.freshdot.net/
version: '0.2'
-
authors: 'Clemens Heidinger'
commands: len
contact: heidinger@dau.pl
description: 'If you try to get a nick with 11 characters but only 9 are allowed, this script will prevent the nickchange. The same for too long topics, kickmsgs, partmsgs and quitmsgs.'
filename: len.pl
license: BSD
modified: '2006-03-11 19:30:09'
name: len
version: 1.0.0
-
authors: "Stefan 'tommie' Tomanek"
commands: leodict
contact: stefan@pico.ruhr.de
description: 'translates via dict.leo.org'
filename: leodict.pl
license: GPLv2
modified: '2008-05-17 17:39:11'
modules: LWP::Simple
name: leodict
url: http://irssi.org/scripts/
version: '20040515'
-
authors: 'Nico R. Wohlgemuth'
commands: levelclear
contact: nico@lifeisabug.com
description: 'Similar to crapbuster.pl but uses irssis internal scrollback levelclear functionality and is able to clear the previous window automatically after having switched to a new one when levelclear_autoclear is set to true.'
filename: levelclear.pl
license: WTFPL
modified: '2014-06-15 17:10:05'
name: levelclear
url: http://scripts.irssi.org/
version: '1.1'
-
authors: 'Jari Matilainen'
contact: jmn98015@student.mdh.se
description: 'Licq statusbar thingy'
filename: licq.pl
license: 'Public Domain'
modified: '2017-04-07 16:34:31'
name: licq
url: http://jari.cjb.net,http://irssi.org,http://scripts.irssi.de
version: '0.5'
-
authors: Nei
commands: dumplines
contact: 'Nei @ anti@conference.jabber.teamidiot.de'
description: 'dump the linebuffer content'
filename: linebuffer.pl
license: 'GNU GPLv2 or later'
modified: '2015-12-03 21:04:35'
name: linebuffer
url: http://anti.teamidiot.de/
version: '0.3'
-
authors: "Marcin 'Qrczak' Kowalczyk"
commands: link
contact: qrczak@knm.org.pl
description: 'Link several channels on serveral networks'
filename: linkchan.pl
license: 'GNU GPL'
modified: '2014-10-17 22:54:13'
name: LinkChan
url: http://qrnik.knm.org.pl/~qrczak/irssi/linkchan.pl
version: '1.5'
-
authors: 'Csaba Nagy'
commands: listen
contact: lordpyre@negerno.hu
description: 'A simple mp3 display script that will display what mp3 you are playing in which software (mpg123, xmms, mp3blaster, etc) to your active channel or to a query window.'
filename: listen.pl
license: 'GNU GPLv2 or later'
modified: '2014-10-17 22:54:13'
name: listen
version: '0.2'
-
authors: 'Isaac Good'
contact: irssi@isaacgood.com
filename: listsort.pl
license: BSD
modified: '2016-12-07 11:32:54'
name: listsort
url: https://github.com/IsaacG/irssi-scripts
version: '0.1'
-
authors: aki
contact: aki@evilbsd.info
description: 'display a loadavg statusbar item using vm.loadavg mib or /proc/loadavg'
filename: loadavg.pl
license: 'public domain'
modified: '2017-04-07 16:34:31'
name: loadavg
version: '0.4'
-
authors: "Stefan 'tommie' Tomanek"
commands: localize
contact: stefan@pico.ruhr.de
description: 'Localizes users using traceroute, the localizer database or IP-Atlas'
filename: localize.pl
license: GPLv2
modified: '2017-04-01 17:22:26'
modules: 'HTML::Entities LWP::UserAgent'
name: localize
url: ''
version: '2017040101'
-
authors: 'Peder Stray'
contact: peder@ninja.no
description: 'convert mirc color and irssi interal formatting to ansi colors, useful for log filtering'
filename: log2ansi.pl
license: GPL
modified: '2008-05-22 13:14:17'
name: log2ansi
url: http://ninja.no/irssi/log2ansi
version: '1.9'
-
authors: "Timo 'cras' Sirainen"
contact: tss@iki.fi
description: "compress logfiles then they're rotated"
filename: logcompress.pl
license: 'Public Domain'
modified: '2014-10-17 22:54:13'
name: logcompress
url: http://irssi.org/
version: '0.01'
-
authors: vague
contact: vague!#irssi@fgreenode
description: "compress logfiles then they're rotated, modified from original logcompress.pl to use perl modules instead"
filename: logcompress_perl.pl
license: 'Public Domain'
modified: '2017-01-07 11:52:46'
name: logcompress_perl
url: http://irssi.org/
version: '0.02'
-
authors: ferret
commands: 'logtail logview'
contact: 'ferret(tA)explodingferret(moCtoD), ferret on irc.freenode.net'
description: 'print last n lines of logs when opening queries/channels'
filename: logresume.pl
modified: '2016-04-04 08:02:24'
name: logresume
url: http://explodingferret.com/linux/irssi/logresume.pl
version: '0.6'
-
authors: c0ffee
commands: ls
contact: c0ffee@penguin-breeder.org
description: 'Use /ls <regex> to show all nicks (including ident@host) matching regex in the current channel'
filename: ls.pl
license: 'Public Domain'
modified: '2014-10-17 22:54:13'
name: 'List nicks in channel'
url: http://www.penguin-breeder.org/irssi/
version: '0.02'
-
authors: Mika
commands: lwho
contact: '[Mika] @ IRCnet'
description: 'Displays users logged on system in current window, simple one'
filename: lwho.pl
license: '-'
modified: '2014-10-17 22:54:13'
name: 'Local who'
url: '-'
version: 0.01a
-
authors: 'Timo Sirainen, Matti Hiljanen, Joost Vunderink, Bart Matthaei'
commands: mailbox
contact: 'tss@iki.fi, matti@hiljanen.com, joost@carnique.nl, bart@dreamflow.nl'
description: 'Fully customizable mail counter statusbar item with multiple mailbox and multiple Maildir support'
filename: mail.pl
license: 'Public Domain'
modified: '2017-04-07 16:34:31'
name: mail
url: 'http://irssi.org, http://scripts.irssi.de'
version: '2.92'
-
authors: 'David "Legooolas" Gardner'
commands: 'mailcheck_imap mailcheck_imap_help mailcheck_imap_stop'
contact: irssi@icmfp.com
description: 'Staturbar item which indicates how many new emails you have in the specified IMAP[S] mailbox'
filename: mailcheck_imap.pl
license: 'GNU GPLv2'
modified: '2017-04-07 16:34:31'
modules: IO::Socket::SSL
name: mailcheck_imap
url: http://icmfp.com/irssi
version: '0.5'
-
authors: 'Erkki Seppälä'
contact: flux@inside.org
description: 'Polls your unix mailbox for new mail'
filename: mailcheck_mbox_flux.pl
license: 'Public Domain'
modified: '2014-10-19 11:54:16'
name: 'Mail Check'
url: http://xulfad.inside.org/~flux/software/irssi/
version: '0.1'
-
authors: 'Kimmo Lehto'
commands: mail
contact: kimmo@a-men.org
description: 'POP3 new mail notification and listing of mailbox contents. Use "/mail help" for instructions. Requires Net::POP3.'
filename: mailcheck_pop3_kimmo.pl
license: 'Public Domain'
modified: '2014-10-19 11:54:16'
name: Mailcheck-POP3
version: '0.5'
-
authors: 'Marcin Rozycki'
contact: derwan@irssi.pl
description: 'Adds statusbar item mailcount and displays info about new mails'
filename: mailcount.pl
license: 'GNU GPL v2'
modified: '2017-04-07 16:34:31'
modules: Mail::MboxParser
name: mailcount
url: http://derwan.irssi.pl
version: 1.4.5
-
authors: 'Szymon Sokol'
commands: mangle
contact: szymon@hell.pl
description: 'translates your messages into Morse code, rot13 and other sillinesses.'
filename: mangle.pl
license: GPLv2
modified: '2017-04-07 16:34:31'
name: mangle
url: http://irssi.org/scripts/
version: '2017031701'
-
authors: 'Petr Baudis'
contact: pasky@ji.cz
description: 'Generates simple tree of IRC network based on the output of the LINKS command.'
filename: map.pl
license: 'GPLv2, not later'
modified: '2008-05-17 17:39:09'
name: map
url: http://pasky.ji.cz/~pasky/dev/irssi/
version: '1.2'
-
authors: 'Uli Baumann'
contact: f-zappa@irc-muenster.de
description: 'Disables hilighting for messages containing a lot of nicknames'
filename: mass_hilight_blocker.pl
license: GPL
modified: '2016-04-26 17:27:32'
name: mass_hilight_blocker
version: '0.3'
-
authors: 'Wouter Coekaerts'
contact: coekie@irssi.org
description: 'makes all window text start at the bottom of windows'
filename: messages_bottom.pl
license: "send-me-beer-or-i'll-sue-you-if-you-use-it license"
modified: '2015-11-16 19:36:52'
name: messages_bottom
url: http://bugs.irssi.org/index.php?do=details&id=290
version: '1.0'
-
authors: 'Kaveh Moini'
commands: 'mg mg_cancel mg_reset'
contact: campanastra@gmail.com
description: 'DCC MultiGet, for fetching from XDCC bots'
filename: mg.pl
license: 'ccBSD, http://creativecommons.org/licenses/BSD/'
modified: '2009-08-13 21:43:12'
name: mg
version: '20090813'
-
authors: 'Michael Hansen'
contact: 'mh on IRCnet #help'
description: 'Emulation of ircII per-window hold_mode'
filename: mh_hold_mode.pl
license: BSD
modified: '2016-05-10 19:11:10'
name: mh_hold_mode
url: 'http://scripts.irssi.org / https://github.com/mh-source/irssi-scripts'
version: '1.07'
-
authors: 'Michael Hansen'
contact: 'mh on IRCnet #help'
description: 'print invites in server, channel, query and active window'
filename: mh_invite.pl
license: BSD
modified: '2016-03-05 15:31:20'
name: mh_invite
url: 'http://scripts.irssi.org / https://github.com/mh-source/irssi-scripts'
version: '1.02'
-
authors: 'Michael Hansen'
contact: 'mh on IRCnet #help'
description: 'provides a statusbar item showing if your server is in splitmode and /splitmode to show details'
filename: mh_sbsplitmode.pl
license: BSD
modified: '2016-02-13 14:25:22'
name: mh_sbsplitmode
url: 'http://scripts.irssi.org / https://github.com/mh-source/irssi-scripts'
version: '1.07'
-
authors: 'Michael Hansen'
contact: 'mh on IRCnet #help'
description: 'statusbar item that shows users and limit info in channels'
filename: mh_sbuserinfo.pl
license: BSD
modified: '2016-11-07 14:57:43'
name: mh_sbuserinfo
url: 'http://scripts.irssi.org / https://github.com/mh-source/irssi-scripts'
version: '1.05'
-
authors: 'Michael Hansen'
contact: 'mh on IRCnet #help'
description: 'show in channels when users go away/back or oper/deoper'
filename: mh_userstatus.pl
license: BSD
modified: '2016-03-03 13:39:04'
name: mh_userstatus
url: 'http://scripts.irssi.org / https://github.com/mh-source/irssi-scripts'
version: '1.05'
-
authors: 'Michael Hansen'
contact: 'mh on IRCnet #help'
description: 'fill windows so scrolling starts bottom-up instead of top-down (screenshots linked in source)'
filename: mh_windowfill.pl
license: BSD
modified: '2016-02-07 18:30:57'
name: mh_windowfill
url: 'http://scripts.irssi.org / https://github.com/mh-source/irssi-scripts'
version: '1.07'
-
authors: 'Leszek Matok, Andrzej Jagodziñski'
contact: lam@lac.pl
description: 'Simple wordkick system, with extended polish dictionary for channels enforcing correct polish.'
filename: miodek.pl
license: GPLv2
modified: '2002-10-03 20:10:00'
name: miodek
version: 1.0.2
-
authors: 'Michael Kowalchuk, Nei'
contact: michael.kowalchuk@gmail.com
description: 'Shows a mIRC-style colour popup when you hit ^C.'
filename: mirc_colour_popup.pl
license: 'Public Domain'
modified: '2017-04-07 16:34:31'
name: mirc_colour_popup
version: '1.1'
-
authors: 'Marcin Rozycki'
commands: mkick
contact: derwan@irssi.pl
description: 'Masskick, usage: /mkick [-aovdln6 (hostmask)] <[:]reason>'
filename: mkick.pl
license: 'GNU GPL v2'
modified: '2004-10-06 20:58:38'
name: mkick
url: http://derwan.irssi.pl
version: '0.9'
-
authors: 'Gergely Nagy'
commands: 'mkshorter mkunshort mkunshortlist mkununshort'
contact: algernon\@bonehunter.rulez.org
description: 'Automatically filters all http:// links through makeashorterlink.com'
filename: mkshorterlink.pl
license: GPL
modified: '2014-10-19 11:54:16'
modules: LWP::UserAgent
name: 'makeashorterlink.com interface'
url: ftp://bonehunter.rulez.org/pub/irssi/mkshorterlink.pl
version: '0.3'
-
authors: 'Carsten Otto'
commands: mlbw
contact: c-otto@gmx.de
description: "Shows your mldonkey's current down- and upload rate"
filename: mldonkey_bandwidth.pl
license: GPLv2
modified: '2008-05-17 17:39:11'
modules: 'HTTP::Request::Common LWP::UserAgent'
name: 'mldonkey bandwidth script'
url: http://www.c-otto.de
version: '20030712'
-
authors: 'Timo Sirainen'
commands: mlock
description: 'Channel mode locking'
filename: mlock.pl
license: 'Public Domain'
modified: '2002-03-10 23:18:00'
name: mlock
version: '1.00'
-
authors: 'Marcin Rozycki'
commands: 'se si sr unexcept uninvite unreop'
contact: derwan@irssi.pl
description: 'Cache of invites, ban exceptions and reops in channel. Script commands: /si, /se, /sr, /unexcept, /uninvite, /unreop (version only for ircd >= 2.11.0).'
filename: modelist-r.pl
license: 'GNU GPL v2'
modified: '2017-04-07 16:34:31'
name: modelist-r
url: http://derwan.irssi.pl
version: 0.8.0-rc4
-
authors: 'Marcin Rozycki'
commands: 'se si unexcept uninvite'
contact: derwan@irssi.pl
description: 'Cache of invites and ban exceptions in channel. Usage: /si, /se, /unexcept [indexes], /uninvite [indexes]'
filename: modelist.pl
license: 'GNU GPL v2'
modified: '2004-06-05 22:38:59'
name: modelist
url: http://derwan.irssi.pl
version: 0.7.2
-
authors: 'Jilles Tjoelker'
commands: monitor
contact: jilles@stack.nl
description: 'Interface to ratbox 2.1+ /monitor command'
filename: monitor.pl
license: 'BSD (revised)'
modified: '2014-10-19 11:54:16'
name: monitor
version: '1.0'
-
authors: "Stefan 'tommie' Tomanek"
contact: stefan@pico.ruhr.de
description: 'Keeps track of the channel mood'
filename: mood.pl
license: GPLv2
modified: '2008-05-17 17:39:11'
name: Mood
version: '20031207'
-
authors: "Stefan 'tommie' Tomanek"
commands: 'demorse despell morse spell'
contact: stefan@pico.ruhr.de
description: 'turns your messages into morse or spelling code'
filename: morse.pl
license: GPLv2
modified: '2008-05-17 17:39:11'
name: morse
version: '2004021901'
-
authors: 'Wouter Coekaerts'
commands: mouse
contact: wouter@coekaerts.be
description: 'control irssi using mouse clicks and gestures'
filename: mouse-awl.pl
license: 'GPLv2 or later'
modified: '2015-11-16 19:36:52'
name: mouse
url: http://wouter.coekaerts.be/irssi/
version: 1.0.0-awl
-
authors: 'Wouter Coekaerts'
commands: 'mouse mouse_xterm'
contact: wouter@coekaerts.be
description: 'control irssi using mouse clicks and gestures'
filename: mouse.pl
license: 'GPLv2 or later'
modified: '2009-05-16 00:00:00'
name: mouse
url: http://wouter.coekaerts.be/irssi/
version: 1.0.0
-
authors: 'Wouter Coekaerts'
commands: mouse_xterm
contact: wouter@coekaerts.be
description: 'experimental perl version of the irssi mouse patch'
filename: mouse_soliton.pl
license: GPLv2
modified: '2015-11-16 19:36:52'
name: trigger
url: http://wouter.coekaerts.be/irssi/
version: 0.0.0
-
authors: 'Erik Scharwaechter, Tobias Böhm, Mikkel Kroman'
commands: np
contact: 'diozaka@gmx.de, code@aibor.de, mk@maero.dk'
description: 'print the song you are listening to'
filename: mpd.pl
license: GPLv2
modified: '2014-08-20 21:54:33'
name: mpd
version: '0.7'
-
authors: 'Ricardo Mesquita'
commands: mpg123
contact: ricardomesquita@netcabo.pt
description: 'Display current mpg123 track'
filename: mpg123.pl
license: GPLv2
modified: '2014-10-19 11:54:16'
name: mpg123
url: http://pwp.netcabo.pt/ricardomesquita/irssi
version: 0.01+1
-
authors: 'Thomas B. Ruecker'
commands: 'mqtt-notify mqtt-test'
contact: 'thomas@ruecker.fi, tbr on irc.freenode.net'
description: 'Sends out notifications via MQTT'
filename: mqtt-notify.pl
license: BSD-3-Clause
modified: '2015-06-30 12:01:33'
name: MQTT-notify
url: http://github.com/dm8tbr/irssi-mqtt-notify/
version: '1.0'
-
authors: 'Morten Lied Johansen'
commands: msg2notice
contact: mortenjo@ifi.uio.no
description: 'For a configured list of nicks, convert all their messages to a notice'
filename: msg2notice.pl
license: GPL
modified: '2015-04-29 16:06:27'
name: msg2notice
version: '1.0'
-
authors: 'Fernando Vezzosi & Ævar Arnfjörð Bjarmason'
contact: 'irssi@repnz.net & avarab@gmail.com'
description: 'For a configured list of nicks or nicks matching a regex, convert all their messages to a notices'
filename: msg2notice_regex.pl
license: 'Public Domain'
modified: '2016-03-15 17:52:13'
name: msg2notice_regex.pl
url: 'http://scripts.irssi.org & https://github.com/avar/dotfiles/blob/master/.irssi/scripts/msg2notice_regex.pl & https://github.com/bucciarati/irssi-script-msg_to_notice'
version: '1.0'
-
authors: "Stefan 'tommie' Tomanek"
commands: multipaste
contact: stefan@pico.ruhr.de
description: 'Helps pasting multiple lines to a channel'
filename: multipaste.pl
license: GPLv2
modified: '2008-05-17 17:39:11'
name: multipaste
url: ''
version: '2003120617'
-
authors: 'Ævar Arnfjörð Bjarmason'
contact: avarab@gmail.com
description: 'Changes messages from myself to appear to come from my username, not my nickname'
filename: munge_own_nickname_to_username.pl
license: 'Public Domain'
modified: '2016-03-17 15:07:15'
name: munge_own_nickname_to_username.pl
url: 'http://scripts.irssi.org & https://github.com/avar/dotfiles/blob/master/.irssi/scripts/munge_own_nickname_to_username.pl'
version: '1.1'
-
authors: 'Remco den Breeje'
contact: 'stacium or stek (most of the time) @ quakenet.org'
description: 'runs arbitrary command instead of system beep, includes flood protection'
filename: my_beep.pl
license: 'Public Domain'
modified: '2016-04-13 20:15:32'
name: my_beep
url: http://www.xs4all.nl/~stacium/irssi/my_beep.html
version: '0.9'
-
authors: 'Tim Van Wassenhove'
contact: timvw@users.sourceforge.net
description: 'Query Google'
filename: mygoogle.pl
license: BSD
modified: '2004-03-13 01:35:00'
modules: LWP::UserAgent
name: mygoogle
url: http://home.mysth.be/~timvw
version: '1.01'
-
authors: 'Tim Van Wassenhove'
contact: timvw@users.sourceforge.net
description: 'Query imdb'
filename: myimdb.pl
license: BSD
modified: '2004-03-13 01:43:00'
modules: LWP::UserAgent
name: myimdb
url: http://home.mysth.be/~timvw
version: '1.01'
-
authors: 'Riku Voipio, lite'
contact: riku.voipio@iki.fi
description: "logs url's to mysql database"
filename: mysqlurllogger.pl
license: GPLv2
modified: '2014-10-19 11:54:16'
modules: DBI
name: myssqlurllogger
url: http://nchip.ukkosenjyly.mine.nu/irssiscripts/
version: '1.0'
-
authors: BC-bd
commands: bw
contact: bd@bc-bd.org
description: 'Adds an item which displays the current network activity. Needs /proc/net/dev.'
filename: nact.pl
license: 'GPL v2 or later'
modified: '2017-04-07 16:34:31'
name: nact
url: https://bc-bd.org/svn/repos/irssi/trunk/
version: 0.2.6
-
authors: 'Roeland Nieuwenhuis'
commands: netswitch
contact: irc@trancer.nl
description: 'Set all windows not bound to a network to a specified network.'
filename: netswitch.pl
license: BSD
modified: '2013-02-19 22:46:58'
name: netswitch
url: http://trancer.nl
version: 1.0.0
-
authors: 'Marcin Rozycki, Mathieu Doidy'
commands: article
contact: derwan@irssi.pl
description: 'News reader, usage: /article [-s <server>] [-p <port>] [-P <password> -U <login>] [-l <group> <count>] [-a] [-L <index>] <message-id>'
filename: news.pl
license: 'GNU GPL v2'
modified: '2015-02-02 14:02:20'
modules: News::NNTPClient
name: news
url: http://derwan.irssi.pl
version: 0.5.9
-
authors: "Stefan 'tommie' Tomanek"
commands: newsline
contact: stefan@pico.ruhr.de
description: 'brings various newstickers to Irssi (Slashdot, Freshmeat, Heise etc.)'
filename: newsline.pl
license: GPLv2
modified: '2017-04-04 23:08:20'
modules: 'LWP::UserAgent Unicode::String XML::RSS'
name: Newsline
version: '2017040101'
-
authors: "Roeland 'Trancer' Nieuwenhuis"
contact: irssi@trancer.nl
description: 'A simple nick banner. If it encounters a nick it bans its host'
filename: nickban.pl
license: 'Public Domain'
modified: '2014-10-19 11:54:16'
name: nickban
version: '1.1'
-
authors: 'Timo Sirainen, Ian Peters, David Leadbeater'
commands: color
contact: tss@iki.fi
description: 'assign a different color for each nick'
filename: nickcolor.pl
license: 'Public Domain'
modified: '2014-10-19 11:54:16'
name: 'Nick Color'
url: http://irssi.org/
version: '2'
-
authors: Nei
commands: neatcolor
description: 'colourise nicks'
filename: nickcolor_expando.pl
license: 'GPL v2'
modified: '2015-11-16 19:32:11'
name: nickcolor_expando
version: 0.3.7
-
description: 'colourise nicks'
filename: nickcolor_gay.pl
license: ISC
modified: '2015-11-16 19:36:52'
name: nickcolor_gay
version: '0.1'
-
authors: "Kalle 'rpr' Marjola"
contact: marjola@iki.fi
description: "Ignores any nick changes when only the case or special characters are modified, like 'rpr -> Rpr' or 'rpr_ -> rpr', with optional pattern for more complicated ignores"
filename: nickignore.pl
license: 'Public Domain'
modified: '2003-08-26 00:00:00'
name: 'ignore (minimal) nick changes'
url: http://iki.fi/rpr/irssi/nickignore.pl
version: '0.03'
-
authors: 'Wouter Coekaerts'
commands: nicklist
contact: coekie@irssi.org
description: 'draws a nicklist to another terminal, or at the right of your irssi in the same terminal'
filename: nicklist.pl
license: GPLv2
modified: '2017-03-20 19:38:25'
name: nicklist
url: http://wouter.coekaerts.be/irssi
version: 0.4.7
-
authors: c0ffee
commands: 'nickmix stopmix'
contact: c0ffee@penguin-breeder.org
description: 'Perturbates your nick, use /nickmix nick/len where len is the number of chars you want to keep from your orig nick. use /stopmix to stop. Always issue the commands in a window of the server you want to mix in.'
filename: nickmix-c0ffee.pl
license: 'GPLv2, not later'
modified: '2008-06-18 00:09:21'
name: nickmix-c0ffee
url: http://www.penguin-breeder.org/irssi/
version: v0.1
-
authors: 'Petr Baudis'
commands: nickmix
contact: pasky@ji.cz
description: 'Perturbates given nick (or just a word) in certain way.'
filename: nickmix_pasky.pl
license: 'GPLv2, not later'
modified: '2008-05-17 17:39:09'
name: nickmix
url: http://pasky.ji.cz/~pasky/dev/irssi/
version: '1.2'
-
authors: 'Geert Hauwaerts'
commands: 'nickserv ns'
contact: geert@irssi.org
description: 'This script will authorize you into NickServ.'
filename: nickserv.pl
license: 'GNU General Public License'
modified: '2017-01-17 00:18:42'
name: nickserv.pl
url: https://github.com/irssi/scripts.irssi.org/blob/master/scripts/nickserv.pl
version: '1.11'
-
authors: BC-bd
contact: bd@bc-bd.org
description: 'BitchX like Nickcompletion at line start plus statusbar'
filename: niq.pl
license: 'GPL v2'
modified: '2017-04-07 16:34:31'
name: niq
url: https://bc-bd.org/cgi-bin/gitweb.cgi?p=irssi.git;a=summary
version: 0.5.7
-
authors: BC-bd
commands: neatcolor
contact: bd@bc-bd.org
description: 'right aligned nicks depending on longest nick'
filename: nm.pl
license: 'GPL v2'
modified: '2014-10-19 11:54:16'
name: nm
url: http://bc-bd.org/blog/irssi/
version: 0.3.10
-
authors: Nei
contact: 'Nei @ anti@conference.jabber.teamidiot.de'
description: 'right aligned nicks depending on longest nick'
filename: nm2.pl
license: 'GPL v2'
modified: '2016-04-26 23:30:46'
name: nm2
url: http://anti.teamidiot.de/
version: '2.1'
-
authors: 'JamesOff, Ion'
contact: james@jamesoff.net
description: 'Replaces lines in ALL CAPS with something easier on the eyes'
filename: nocaps.pl
license: 'Public Domain'
modified: '2002-03-22 12:34:38'
name: nocaps
url: http://www.jamesoff.net
version: '1.01'
-
authors: 'Marcin Rozycki'
contact: derwan@irssi.pl
description: 'Automatically changes nick (to randnick or uid on ircd 2.11) when certain amount of nick colissionstakes place on channel'
filename: nocollide.pl
license: 'GNU GPL v2'
modified: '2004-02-16 10:08:59'
name: nocollide
url: http://derwan.irssi.pl
version: 0.2.3
-
authors: unknown
contact: bd@bc-bd.org
description: 'Prints an info about a newly started Query in your current window and runs a /whois on the nick.'
filename: noisyquery.pl
license: 'GPL v2'
modified: '2014-10-19 11:54:16'
name: noisyquery
url: http://bc-bd.org/software.php3#irssi
version: 0.1.1
-
authors: 'Adam Wysocki'
contact: 'gophi <at> efnet.pl'
description: 'Replaces polish national characters with their corresponding letters'
filename: nopl.pl
license: 'Public Domain'
modified: '2005-05-10 16:12:32'
name: nopl
url: http://www.gophi.rotfl.pl/
version: '1.00'
-
authors: 'Marcin Rozycki'
contact: derwan@irssi.pl
description: 'stops public repeating'
filename: norepeat.pl
license: 'GNU GPL v2'
modified: '2003-09-09 16:34:44'
name: norepeat
url: http://derwan.irssi.pl
version: '0.5'
-
authors: vague
commands: notes
contact: vague!#irssi@freenode
description: 'Keeps notes on users and displayes the note in /whois output if the host/nick matches'
filename: notes.pl
license: GPL2
modified: '2015-11-25 11:42:09'
modules: 'DBI DBM::Deep'
name: notes
version: '0.31'
-
authors: "Stefan 'tommie' Tomanek"
contact: stefan@pico.ruhr.de
description: 'Utilizes NoteServ to implement a buddylist'
filename: noteserve.pl
license: GPLv2
modified: '2008-05-17 17:39:11'
name: NoteServ
version: '2002123101'
-
authors: 'Ben Klein, based on noticemove by Timo Sirainen'
contact: shacklein@gmail.com
description: "Print private notices in query/channel where you're talking to them. Prefers active window if they're there with you."
filename: noticelogic.pl
license: 'Public Domain'
modified: '2014-07-10 09:21:39'
name: 'notice logic'
url: http://irssi.org/
version: '2.0'
-
authors: 'Timo Sirainen'
contact: tss@iki.fi
description: 'Prints private notices from people in the channel where they are joined with you. Useful when you get lots of private notices from some bots.'
filename: noticemove.pl
license: 'Public Domain'
modified: '2014-10-19 11:54:16'
name: 'notice move'
url: http://irssi.org/
version: '1.01'
-
authors: 'Jari Matilainen'
commands: 'notifyquit_show_exceptions notifyquit_show_watchlist prompt'
contact: 'vague!#irssi@freenode on irc'
description: 'Notify if user has left the channel'
filename: notifyquit.pl
license: 'Public Domain'
modified: '2015-11-25 11:42:09'
name: notifyquit
url: http://gplus.to/vague
version: '0.3'
-
authors: 'Johan "Ion" Kiviniemi'
contact: 'ion at hassers.org'
description: "Answers \"$nick: No.\" if you're away and someone asks are you online on a channel"
filename: notonline.pl
license: 'Public Domain'
modified: '2002-03-12 22:20:00'
name: NotOnline
url: http://ion.amigafin.org/irssi/
version: '0.9'
-
authors: Juerd
contact: juerd@juerd.nl
description: 'This script really does nothing. Sorry.'
filename: null.pl
license: 'Public Domain'
modified: '2002-03-10 02:14:00'
name: 'Nothing at all'
url: http://juerd.nl/irssi/
version: '1.00'
-
authors: 'Ricardo Mesquita'
commands: ogg123
contact: ricardomesquita@netcabo.pt
description: 'Display current ogg123 track'
filename: ogg123.pl
license: GPLv2
modified: '2017-03-20 14:19:18'
name: ogg123
url: http://pwp.netcabo.pt/ricardomesquita/irssi
version: 0.01+1
-
authors: darix
contact: darix@irssi.org
description: 'oidentd support for irssi'
filename: oidenty.pl
license: 'BSD License'
modified: '2008-05-17 17:39:09'
name: oidenty
url: http://www.irssi.de
version: 0.0.2
-
authors: 'David Leadbeater'
commands: on
contact: dgl@dgl.cx
description: "/on command - this is very simple and not really designed to be the same as ircII - it tries to fit into Irssi's usage style more than emulating ircII."
filename: on.pl
license: 'GNU GPLv2 or later'
modified: '2014-06-15 18:53:08'
name: on.pl
url: http://irssi.dgl.cx/
version: '1.12'
-
authors: "Stefan 'tommie' Tomanek"
commands: ontv
contact: stefan@pico.ruhr.de
description: 'turns irssi into a tv program guide'
filename: ontv.pl
license: GPLv2
modified: '2008-05-17 17:39:11'
modules: 'HTML::Entities LWP::Simple'
name: OnTV
version: '20050226'
-
authors: ''
contact: ''
description: "turns 'ls' in the beginning of a sent line into the names or whois commands"
filename: oops.pl
license: 'Public Domain'
modified: '2008-05-25 14:29:31'
name: oops
version: '20071209'
-
authors: 'David Leadbeater'
contact: dgl@dgl.cx
description: 'Stops those silly mistakes being sent (spaces at start of line, /1/1 for window changes, etc).'
filename: oopsie.pl
license: 'WTFPL <http://dgl.cx/licence>'
modified: '2014-08-13 20:54:58'
name: oopsie
url: http://dgl.cx/irssi
version: '1.0'
-
authors: "Stefan 'tommie' Tomanek"
commands: openurl
contact: stefan@pico.ruhr.de
description: 'Stores URLs in a list and launches mail, web or ftp software'
filename: openurl.pl
license: GPLv2
modified: '2008-05-17 17:39:11'
name: OpenURL
url: http://scripts.irssi.org
version: '20030208'
-
authors: 'Petr Baudis'
commands: operit
contact: pasky@ucw.cz
description: 'Perform certain action (invite/op/...) on request authenticated by the IRC operator status.'
filename: operit.pl
license: BSD
modified: '2008-05-17 17:39:09'
name: operit
url: http://pasky.ji.cz/~pasky/dev/irssi/
version: '1.14'
-
authors: 'Petr Baudis'
contact: pasky@ji.cz
description: 'Reformats some server notices, which may come i.e. from &clients or &servers at IRCnet. You can turn the script on/off bytoggling variable mangle_server_notices.'
filename: operview.pl
license: 'GPLv2, not later'
modified: '2017-04-07 16:34:31'
name: operview
url: http://pasky.ji.cz/~pasky/dev/irssi/
version: '1.11'
-
authors: 'Terje "xerath" Tjeldnes'
commands: o
contact: terje@darkrealm.no
filename: opnotice.pl
license: 'GNU GPL v2'
modified: '2014-10-19 11:54:16'
name: Opnotice
url: http://palantir.darkrealm.no/opnotice.pl
version: '0.1'
-
authors: "Maciek 'fahren' Freudenheim"
contact: fahren@bochnia.pl
description: 'Hilights window refnumber in statusbar if someone ops/deops you on channel'
filename: opnotify.pl
license: 'GNU GPLv2 or later'
modified: '2002-03-15 15:09:42'
name: opnotify
version: '1.0'
-
authors: Wohmatak
commands: 'np npinfo'
contact: wohmatak@iglu.cz
description: 'Displays the song played by orpheus'
filename: orphamp.pl
license: GPL
modified: '2014-10-19 11:54:16'
name: orphamp
url: http://irssi.org/
version: '0.9'
-
authors: 'Jeroen Coekaerts, Koenraad Heijlen'
contact: 'vipie@ulyssis.org, jeroen@coekaerts.be'
description: "An OnScreenDisplay (osd) it show's who is talking to you, on what IRC Network."
filename: osd.pl
license: BSD
modified: '2014-10-19 11:54:16'
name: osd
url: http://vipie.studentenweb.org/dev/irssi/
version: 0.3.3
-
authors: ''
commands: ownage
contact: ''
description: ''
filename: ownage.pl
license: ''
modified: '2008-05-25 14:29:31'
name: ''
version: '20071209'
-
authors: c0ffee
commands: page
contact: c0ffee@penguin-breeder.org
description: 'Adds the /PAGE command to page a nick (use /page nick <text>)... to ignore pages /set pager_mode off'
filename: page-c0ffee.pl
license: 'Public Domain'
modified: '2017-03-12 21:57:08'
name: 'mIRC pager'
url: http://www.penguin-breeder.org/?page=irssi
version: '0.03'
-
authors: 'Thomas Graf'
commands: page
contact: irssi@reeler.org
description: 'display and send CTCP PAGE'
filename: page_reeler.pl
license: 'GNU GPLv2 or later'
modified: '2014-10-19 11:54:16'
name: page
url: http://irssi.reeler.org/
version: '0.2'
-
authors: 'Jean-Yves Lefort'
contact: jylefort\@brutele.be
description: 'Notifies people if they send you a private message or a DCC chat offer while you are away; runs a shell command configurable via /set if they page you'
filename: pager.pl
license: BSD
modified: '2017-03-06 20:58:29'
name: pager
version: '1.2'
-
authors: fprintf
commands: pango
contact: fprintf@github.com
description: 'Render text with various color modifications using HTML tag syntax.'
filename: pangotext.pl
license: 'GNU GPLv2 or later'
modified: '2015-09-19 03:19:49'
name: pangotext
version: '1.1'
-
authors: 'Marcin Rozycki, Stanislaw Halik'
commands: paste
contact: derwan@irssi.pl
description: 'Usage: /paste [-all|-msgs|-public] [-c|-b] [-s|-l| where] [lines]'
filename: paste-derwan.pl
license: 'GNU GPL v2'
modified: '2014-10-19 11:54:16'
name: paste
url: http://derwan.irssi.pl
version: '0.9'
-
authors: 'Marcin Rozycki'
commands: paste
contact: derwan@irssi.pl
description: 'Pasting lines to specified targets, type "/paste -help" for help'
filename: paste_derwan.pl
license: 'GNU GPL v2'
modified: '2004-11-13 14:32:13'
name: paste
url: http://derwan.irssi.pl
version: 1.0-rc5
-
authors: 'Simon Huggins'
commands: 'clear_buffer paste'
contact: huggie-irssi@earth.li
description: 'Paste reformats long pieces of text typically pasted into your client from webpages so that they fit nicely into your channel. Width of client may be specified'
filename: paste_huggie.pl
license: GPLv2
modified: '2002-03-09 10:59:49'
name: Paste
url: http://the.earth.li/~huggie/irssi/
version: '0.5'
-
authors: 'Kimmo Lehto'
commands: 'play see start stop'
contact: kimmo@a-men.org
description: 'Provides /start, /stop, /play <-nopack> <-nospace> paste mechanism - start and stop recording and then replay without linebreaks. Also /see to view what was recorded.'
filename: paste_kimmoke.pl
license: 'Public Domain'
modified: '2014-10-19 11:54:16'
name: Paste-KimmoKe
version: '0.1'
-
authors: Mankeli
commands: pelix
contact: mankeli@einari.org
description: 'This script allows you flood shit.'
filename: pelix.pl
license: GNU/GPL
modified: '2008-05-17 17:39:11'
name: '#pelix Helpers'
version: '0.3'
-
authors: "Marcin 'Qrczak' Kowalczyk, Johan 'ion' Kiviniemi"
commands: 'find flag mask trust user'
contact: qrczak@knm.org.pl
description: 'Userlist with autoopping, autokicking etc.'
filename: people.pl
license: 'GNU GPL'
modified: '2015-02-01 18:29:23'
modules: Crypt::PasswdMD5
name: People
url: http://qrnik.knm.org.pl/~qrczak/irc/people.pl
version: '1.8'
-
authors: 'Wouter Coekaerts'
contact: coekie@irssi.org
description: 'Keeps a prompt per window'
filename: per_window_prompt.pl
license: 'GPLv2 or later'
modified: '2015-12-09 23:35:34'
name: per_window_prompt
url: http://wouter.coekaerts.be/irssi/
version: '1.1'
-
authors: aquanight
commands: 'perlalias perlunalias'
contact: aquanight@gmail.com
description: 'Quickly create commands from short perl blocks'
filename: perlalias.pl
license: 'public domain'
modified: '2017-02-19 12:53:47'
name: perlalias
version: '1.2'
-
authors: 'Adam Duck'
commands: sound
contact: duck@cs.uni-frankfurt.de
description: 'does CTCP SOUNDs and other similar things.'
filename: pggb_sound.pl
license: GPLv2
modified: '2014-10-19 11:54:16'
modules: File::Listing
name: PGGB_sound
url: ''
version: 0.2.3.23b
-
authors: "Stefan 'tommie' Tomanek"
commands: poison
contact: stefan@pico.ruhr.de
description: 'equips Irssi with an interface to giFT'
filename: poison.pl
license: GPLv2
modified: '2008-05-17 17:39:09'
name: Poison
version: '2003020801'
-
authors: "Stefan 'tommie' Tomanek"
commands: postpone
contact: stefan@pico.ruhr.de
description: 'Postpones messages sent to a splitted user and resends them when the nick rejoins'
filename: postpone.pl
license: GPLv2
modified: '2017-02-04 02:11:54'
name: postpone
version: '20170204'
-
authors: "Maciek Freudenheim, Marco d'Itri"
commands: ppl
contact: 'fahren@bochnia.pl, md@linux.it'
description: "port of asmodean's /ppl command from skuld3"
filename: ppl.pl
license: 'GPL v2'
modified: '2008-05-17 17:39:09'
name: ppl
url: http://www.linux.it/~md/irssi/
version: '20020128'
-
authors: 'martin f. krafft'
contact: madduck@madduck.net
description: 'hooks into every signal and writes the information provided to a file'
filename: print_signals.pl
license: MIT
modified: '2017-02-03 11:47:17'
name: 'print signals debugger'
version: '1.0'
-
authors: 'Cyprien Debu'
commands: procmaillog
contact: frey@notk.org
description: 'Gets new mails from procmail.log file'
filename: procmaillog.pl
license: 'Public Domain'
modified: '2014-06-21 08:47:21'
modules: 'Log::Procmail MIME::Words'
name: procmaillog
url: ''
version: '2.02'
-
authors: 'Kevin Siml'
commands: 'pushignore pushtest'
contact: kevinsiml@googlemail.com
description: 'Push hilights and private messages when away by the pushsafer.com API'
filename: pushsafer.pl
license: BSD
modified: '2017-03-31 15:30:51'
modules: LWP::UserAgent
name: pushsafer
url: https://www.pushsafer.com
version: 0.0.1
-
authors: 'Doug Freed'
contact: dwfreed!#irssi@freenode
description: "Authenticates you to QuakeNet's Q immediately on connect using CHALLENGEAUTH"
filename: qchallengeauth.pl
license: GPLv3+
modified: '2014-08-23 12:23:44'
name: qchallengeauth.pl
version: '1.0'
-
authors: 'Peder Stray'
contact: peder@ninja.no
description: 'Give you more control over when to jump to query windows and when to just tell you one has been created. Enhanced autoclose.'
filename: query.pl
license: GPL
modified: '2017-03-20 20:22:57'
name: query
url: http://ninja.no/irssi/query.pl
version: '1.25'
-
authors: "Stefan 'tommie' Tomanek"
contact: stefan@pico.ruhr.de
description: 'restores the last lines of a query on re-creation'
filename: queryresume.pl
license: GPLv2
modified: '2014-10-19 11:54:16'
modules: Date::Format
name: QueryResume
version: '2003021201'
-
authors: 'Timo Sirainen'
description: 'Random quit messages'
filename: quitmsg.pl
license: 'Public Domain'
modified: '2014-10-19 11:54:16'
name: quitmsg
version: '1.00'
-
authors: 'Fernando J. Pereda'
contact: ferdy@ferdyx.org
description: 'Random quit messages - based on quitmsg (Timo Sirainen)'
filename: quitrand.pl
license: GPLv2
modified: '2014-10-19 11:54:16'
name: quitrand
version: '1.00'
-
authors: 'Simon Huggins'
contact: huggie-irssi@earth.li
description: 'Turns irssi into a quiz bot'
filename: quiz.pl
license: GPLv2
modified: '2017-04-03 14:51:40'
name: Quiz
url: http://the.earth.li/~huggie/irssi/
version: '0.8'
-
authors: 'Athanasius Emilius Arvanitis based on Simon Huggins quiz 0.7'
contact: arvan
description: 'Turns irssi into a quiz bot. Has greek language and many answers support'
filename: quizgr.pl
license: GPLv2
modified: '2017-03-16 17:31:18'
name: Quizgr
url: http://kronos.eng.auth.gr/~arvan/irssi/
version: 0.7GR03
-
authors: "Stefan 'tommie' Tomanek"
commands: quizmaster
contact: stefan@pico.ruhr.de
description: 'Un script de quiz pour irssi'
filename: quizmaster-fr.pl
license: GPLv2
modified: '2017-04-03 18:52:16'
name: quizmaster
url: 'http://irssi.org/scripts/ http://pierre.carlot.free.fr/tux/'
version: 20170403+fr
-
authors: "Stefan 'tommie' Tomanek"
commands: quizmaster
contact: stefan@pico.ruhr.de
description: 'a trivia script for Irssi'
filename: quizmaster.pl
license: GPLv2
modified: '2017-04-03 18:05:34'
name: quizmaster
url: http://irssi.org/scripts/
version: '20170403'
-
authors: 'Jakub Jankowski'
commands: 'rkick rknockout rme rsay rtopic'
contact: shasta@atn.pl
description: 'Prints colored text. Rather simple than sophisticated.'
filename: rainbow.pl
license: 'GNU GPLv2 or later'
modified: '2015-11-25 15:47:52'
name: rainbow
url: http://irssi.atn.pl/
version: '1.6'
-
authors: 'Lasse Karstensen'
commands: 'awayadd awayreasons awayreread raway'
contact: lkarsten@stud.ntnu.no
description: 'Random away-messages'
filename: randaway.pl
license: 'Public Domain'
modified: '2017-03-15 20:28:47'
name: randaway.pl
url: http://www.stud.ntnu.no/~lkarsten/irssi/
version: '1.14'
-
authors: legion
commands: randname
contact: a.lepore(at)email.it
description: 'Random "/set real_name" taken from a file.'
filename: randname.pl
license: 'Public Domain'
modified: '2014-10-19 11:54:16'
name: RandName
version: '1.0'
-
authors: 'Matthew Sytsma'
contact: spiderpigy@yahoo.com
description: "Filters quit/part/join/nick notices based on time since last message. (Similar to weechat's smartfilter)."
filename: recentdepart.pl
license: 'GNU GPLv2 or later'
modified: '2016-04-26 18:00:41'
name: 'Recently Departed'
url: ''
version: '0.7'
-
authors: 'Thomas Graf'
contact: irssi@reeler.org
description: 'handle 005 and 010 server messages and reconnect to that server'
filename: redirect.pl
license: 'GNU GPLv2 or later'
modified: '2014-10-19 11:54:16'
name: redirect
url: http://irssi.reeler.org/
version: '0.1'
-
authors: "Maciek 'fahren' Freudenheim"
commands: relm
contact: fahren@bochnia.pl
description: 'Keeps last 15 messages in cache'
filename: relm.pl
license: 'GNU GPLv2 or later'
modified: '2014-10-19 11:54:16'
name: 'REdirect Last Message'
version: '1.0'
-
authors: 'David Leadbeater'
commands: remote
contact: dgl@dgl.cx
description: 'Lets you run commands remotely via /msg and a password'
filename: remote.pl
license: 'GNU GPLv2 or later'
modified: '2014-10-19 11:54:16'
name: remote
url: http://irssi.dgl.cx/
version: '1'
-
authors: 'Isaac Good'
commands: 'layout_load layout_save'
contact: irssi@isaacgood.com
description: 'Reordering windows based on a textfile.'
filename: reorder.pl
license: GPL
modified: '2016-12-06 18:47:28'
name: reorder
version: '1.0'
-
authors: BC-bd
contact: bd@bc-bd.org
description: 'Hide duplicate lines'
filename: repeat.pl
license: 'GPL v2'
modified: '2012-08-30 11:52:40'
name: repeat
url: http://bc-bd.org/blog/irssi/
version: 0.2.0
-
authors: 'Jere Toivonen'
commands: replace
contact: jere@flamero.fi
description: 'Replaces regexps with predefined strings'
filename: replace.pl
license: MIT
modified: '2016-03-22 03:23:12'
name: replace
url: http://flamero.fi
version: '1.0'
-
authors: 'David Leadbeater'
contact: dgl@dgl.cx
description: 'Resizes a split window when it is made active (see comments in script for details)'
filename: resize_split.pl
license: 'GNU GPLv2 or later'
modified: '2008-05-17 17:39:11'
name: resize_split
url: http://irssi.dgl.cx/
version: '1'
-
authors: Fogel
commands: 'mute next np pause play prev rhythmbox_help unmute vdown vol vup'
contact: fogel@fogel.netmark.pl
description: 'Rhythmbox now playing script'
filename: rhythmbox.pl
license: BSD
modified: '2009-06-16 23:11:03'
name: rhythmbox
url: www.fogel.com.pl
version: '1.30'
-
authors: "Maciek 'fahren' Freudenheim"
commands: rk
contact: fahren@bochnia.pl
description: '/RK [-o | -l | -a] - kicks random nick from ops | lusers | all on channel'
filename: rk.pl
license: 'GNU GPLv2 or later'
modified: '2002-03-15 15:09:42'
name: 'Random kicker'
version: '0.9'
-
authors: 'Victor Ivanov'
commands: romaji
contact: v0rbiz@yahoo.com
description: 'translates romaji to hiragana or katakana in text enclosed in ^R'
filename: romaji.pl
license: 'BSD 2-clause'
modified: '2008-05-17 17:39:11'
name: romaji
url: http://irssi.org/scripts/
version: 1.0b3
-
authors: 'Victor Ivanov'
commands: 'rohira rokata rorest'
contact: v0rbiz@yahoo.com
description: 'Dynamic romaji binds'
filename: romajibind.pl
license: 'BSD 2-clause'
modified: '2017-04-07 16:34:31'
name: romajibind
url: http://irssi.org/scripts/
version: 1.0b
-
authors: "Mariusz 'Craig' Ciesla"
commands: 'rot13 unrot13'
contact: craig@fish.mac.edu.pl
description: 'ROT13 encoding and reverse :)'
filename: rot13.pl
license: GPLv2
modified: '2008-05-17 17:39:09'
name: rot13
version: '2003121202'
-
authors: BC-bd
contact: bd@bc-bd.org
description: 'Displaye a small, changeing statusbar item to show irssi is still running'
filename: rotator.pl
license: 'GPL v2'
modified: '2017-04-07 16:34:31'
name: rotator
url: https://bc-bd.org/svn/repos/irssi/trunk/
version: 0.2.1
-
authors: "Dawid 'rud0lf' Lekawski"
commands: emotes
contact: 'rud0lf/IRCnet; rud0lf/freenode; xxrud0lf@gmail.com'
description: 'Replaces :emote_name: text in your sent messages into pre-defined emotes (unicode mostly).'
filename: rud_emotes.pl
license: GPLv3
modified: '2016-11-07 15:43:52'
name: 'emotes script'
version: '1.10'
-
authors: "Johan \"Ion\" Kiviniemi, idea taken from Riku Voipio's sana.pl"
commands: sana
contact: 'ion at hassers.org'
description: '/sana command, translates english-finnish-english.'
filename: sana_cmd.pl
license: 'Public Domain'
modified: '2002-03-16 06:20:00'
modules: 'HTML::Entities LWP::Simple'
name: sana-cmd
url: http://ion.amigafin.org/irssi/
version: '0.1'
-
authors: 'Simon Ruderich, Tom Feist'
contact: 'simon@ruderich.org, shabble+irssi@metavore.org'
description: 'Displays current position in scrollback.'
filename: sb_position.pl
license: 'GPLv3 or later'
modified: '2017-04-07 16:34:31'
name: sb_position
version: '0.1'
-
authors: 'Wouter Coekaerts, Emanuele Giaquinta'
contact: 'wouter@coekaerts.be, exg@irssi.org'
description: 'search in your scrollback, scroll to a match'
filename: sb_search.pl
license: 'GPLv2 or later'
modified: '2015-10-01 18:41:05'
name: sb_search
url: http://wouter.coekaerts.be/irssi/
version: '1.1'
-
authors: Nei
contact: 'Nei @ anti@conference.jabber.teamidiot.de'
description: 'clear matching lines in scrollback'
filename: sbclearmatch.pl
license: 'GPLv2 or later'
modified: '2015-11-16 19:32:11'
name: sbclearmatch
url: http://anti.teamidiot.de/
version: '0.2'
-
authors: 'Robert Scheck'
commands: schwäbisch
contact: irssi@robert-scheck.de
description: '/schwäbisch - translates your messages from german to swabian'
filename: schwaebisch.pl
license: 'GNU GPL v2'
modified: '2008-05-17 17:39:09'
name: Schwaebisch
url: http://ftp.robert-scheck.de/linux/irssi/scripts/
version: 1.0.0
-
authors: "Andreas 'ads' Scherbaum <ads@wars-nicht.de>"
description: 'set (un)away, if screen is attached/detached'
filename: screen_away.pl
license: 'GPL v2'
modified: '2015-08-20 10:46:58'
name: screen_away
url: none
version: 0.9.8.1
-
authors: "Stefan 'tommie' Tomanek"
commands: scriptassist
contact: stefan@pico.ruhr.de
description: 'keeps your scripts on the cutting edge'
filename: scriptassist.pl
license: GPLv2
modified: '2016-02-04 00:38:58'
modules: LWP::UserAgent
name: scriptassist
url: http://irssi.org/scripts/
version: '2003020804'
-
authors: "Maciek 'fahren' Freudenheim"
contact: fahren@bochnia.pl
description: "Provides access to script's help"
filename: scripthelp.pl
license: 'GNU GPLv2 or later'
modified: '2014-10-24 23:01:30'
name: 'Scripts help'
version: '0.9'
-
authors: Juerd
contact: juerd@juerd.nl
description: 'Access script information'
filename: scriptinfo.pl
license: 'Public Domain'
modified: '2002-03-19 11:00:00'
name: 'Script Information'
url: http://juerd.nl/irssi/
version: '1.20'
-
authors: lasers
contact: 'lasers on freenode'
description: 'Loads scripts from file instead of autorun directory'
filename: scriptsave.pl
license: WTFPL
modified: '2015-01-16 19:38:47'
name: scriptsave
version: '0.2'
-
authors: 'jwz, irssified by Mikachu'
commands: scrmable
contact: 'Mikachu @ freenode'
description: 'wtires lkie tihs'
filename: scrmable.pl
license: 'as is'
modified: '2008-05-17 17:39:11'
name: scrmable
version: '1.01'
-
authors: Demonen
contact: demmydemon@gmail.com
description: 'Scrolls specified text on the status bar'
filename: scroller.pl
license: 'Public Domain'
modified: '2017-04-07 16:34:31'
name: scroller
version: '0.02'
-
authors: "Jari Matilainen, a lot of code borrowed from whitelist.pl by David O'Rourke and Karl Siegemund"
commands: sm
contact: 'vague`!#irssi@freenode on irc '
description: 'An irssi adaptation of securequery.mrc found in the Acidmax mIRC script. :), now with multiserver support'
filename: securemsg.pl
license: GPLv2
modified: '2017-04-07 16:34:31'
name: securemsg
version: '2.1'
-
authors: "Marcin 'Qrczak' Kowalczyk"
commands: 'forget listen say_seen seen'
contact: qrczak@knm.org.pl
description: 'Tell people when other people were online'
filename: seen.pl
license: GPL
modified: '2008-05-17 17:39:11'
name: Seen
url: http://qrnik.knm.org.pl/~qrczak/irssi/seen.pl
version: '1.8'
-
contact: 'Nei @ anti@conference.jabber.teamidiot.de'
description: 'Scroll down on enter'
filename: send_scroll.pl
license: 'GNU GPLv2 or later'
modified: '2015-01-26 23:46:22'
name: send_scroll
url: http://anti.teamidiot.de/
version: '0.1'
-
authors: 'David Leadbeater'
contact: dgl@dgl.cx
description: 'Tab complete servers and userhosts (irc. -> irc server, user@ -> user@host). Useful for lazy ircops for /squit and so on :)'
filename: servercomplete.pl
license: 'GNU GPLv2 or later'
modified: '2014-10-24 23:01:30'
name: servercomplete
url: http://irssi.dgl.cx/
version: '2'
-
authors: optical
commands: seti
contact: optical@linux.nu
description: "Tell ppl how far you've gotten with you SETI\\@home workunit."
filename: seti.pl
license: GPL
modified: '2014-10-24 23:01:30'
name: 'SETI@home info'
note: 'Make sure you set the seti_state_sah with /set'
url: http://optical.kapitalet.org/seti/
version: '0.1'
-
authors: 'Rocco Caputo (dngor), Nei'
contact: 'rcaputo@cpan.org, Nei @ anti@conference.jabber.teamidiot.de'
description: 'Irssi 0.8.10 settings notes and documentation'
filename: settingshelp.pl
license: 'CC BY-SA 2.5, http://creativecommons.org/licenses/by-sa/2.5/'
modified: '2016-04-27 00:09:59'
name: settingshelp
version: 0.8.10
-
authors: 'Marcin Rozycki'
commands: '42.pl shortenurl'
contact: derwan@irssi.pl
description: shortenurl
filename: shortenurl.pl
license: 'GNU GPL v2'
modified: '2004-06-26 19:17:02'
modules: LWP::UserAgent
name: shortenurl
url: http://derwan.irssi.pl
version: 0.7.1
-
authors: 'eo, tsaavik'
commands: shorturl
contact: 'irssi@eosin.org, dave001@hellspark.com'
description: 'Private/Public url reduction script.'
filename: shorturl.pl
license: GPLv2
modified: '2014-10-24 23:01:30'
modules: 'LWP::Simple LWP::UserAgent'
name: shorturl.pl
version: '20090904'
-
authors: "Pawe³ 'Styx' Chuchma³a"
contact: styx@irc.pl
description: 'Show hilight messages in active window'
filename: showhilight.pl
license: 'GNU GPLv2'
modified: '2014-10-24 23:01:30'
name: showhilight
version: '0.1'
-
authors: 'Michiel v Vaardegem'
contact: michielv@zeelandnet.nl
description: 'show host kicks'
filename: showhost.pl
license: GPL
modified: '2003-12-08 19:23:51'
name: showhost
version: '0.2'
-
authors: 'Wouter Coekaerts'
contact: wouter@coekaerts.be
description: 'show modes in parts, quits, kicks, topic changes or actions, like show_nickmode does for public messages'
filename: showmode.pl
license: 'GPLv2 or later'
modified: '2007-07-28 00:00:00'
name: showmode
version: '0.3'
-
contact: jwm@horde.net
description: 'Send highlighted messages via Signal'
filename: signal_hilight.pl
modified: '2017-03-20 16:27:59'
name: signal_hilight
version: '1.0'
-
authors: 'Morten Lied Johansen, Jonas Berlin'
contact: mortenjo@ifi.uio.no
description: 'Prefix nicks with @ when completing nicks to match conventions on networks like Slack, Flowdock, Gitter etc'
filename: slack_complete.pl
license: GPL
modified: '2015-11-09 13:04:58'
name: slack_complete
version: '1.1'
-
authors: 'Lars Djerf'
contact: lars.djerf@gmail.com
description: 'This script converts Slack emoji to smileys.'
filename: slack_emoji.pl
license: GPLv3
modified: '2015-01-03 19:42:44'
name: slack_emoji
version: '0.03'
-
authors: 'Ævar Arnfjörð Bjarmason'
contact: avarab@gmail.com
description: 'Strips the annoying mentions of your nickname on Slack via [cc: <you>]'
filename: slack_strip_auto_cc.pl
license: 'Public Domain'
modified: '2016-03-15 17:52:13'
name: slack_strip_auto_cc.pl
url: 'http://scripts.irssi.org & https://github.com/avar/dotfiles/blob/master/.irssi/scripts/slack_strip_auto_cc.pl'
version: '1.0'
-
authors: 'Christian Brassat'
contact: crshd@mail.com
description: 'This script hides join/part messages.'
filename: smartfilter.pl
license: BSD
modified: '2014-06-26 18:46:20'
name: smartfilter.pl
url: http://crshd.github.io
version: '0.1'
-
authors: 'Jonne Piittinen'
commands: smiley
contact: jip@loota.org
description: 'Very useful smiley-flooder'
filename: smiley.pl
license: 'Public Domain'
modified: '2008-05-17 17:39:11'
name: Smiley
version: '0.69'
-
authors: "Maciek 'fahren' Freudenheim"
commands: 'addsms delsms listsms sms smsadd smsdel smslist smsstat'
contact: fahren@bochnia.pl
description: '/ADDSMS, /DELSMS, /LISTSMS and /SMS - phone address-book with smssender, for now supports only Polish operators'
filename: sms.pl
license: 'GNU GPLv2 or later'
modified: '2014-10-24 23:01:30'
name: SMS
version: 1.5b
-
authors: 'Rick (strlen) Jansen'
commands: snmpup
contact: strlen@shellz.nl
description: "This script queries remote hosts (/snmpup <host1> <host2> <hostN>) running snmpd for it's uptime and cpu usage"
filename: snmpup.pl
license: GPL/2
modified: '2002-04-06 17:57:28'
modules: Net::SNMP
name: snmpup
version: '2.00'
-
authors: 'Daemon @ ircd.foxchat.net'
description: 'Oper script to kill Spam Bots.'
filename: spambot.pl
license: 'Public Domain'
modified: '2008-05-17 17:39:09'
name: 'Spam Bot Killer'
version: '1.2'
-
authors: 'Wouter Coekaerts'
contact: 'wouter@coekaerts.be, coekie@#irssi'
description: '(tab)complete irssi special variables (words that start with $) by evaluating them'
filename: special_complete.pl
license: GPLv2
modified: '2003-07-28 00:00:00'
name: special_complete
url: http://wouter.coekaerts.be/irssi/
version: '1.1'
-
authors: 'Michael Kowalchuk'
commands: '_spellcheck spell'
contact: michael_kowalchuk@umanitoba.ca
description: 'A spell checker for irssi. Hit alt+s and your line will echoed to the active window with mistakes underlined and suggestions noted. /spell is also provided. Requires Lingua::Ispell and Ispell.'
filename: spell.pl
license: MIT
modified: '2006-01-02 17:02:12'
modules: Lingua::Ispell
name: spell
url: http://home.cc.umanitoba.ca/~umkowa17/
version: '1.0'
-
authors: 'Jakub Jankowski'
contact: shasta@toxcorp.com
description: 'Checks for spelling errors using Aspell.'
filename: spellcheck.pl
license: GPLv2
modified: '2015-02-01 12:23:25'
modules: Text::Aspell
name: Spellcheck
url: http://toxcorp.com/irc/irssi/spellcheck/
version: '0.4'
-
authors: "Maciek 'fahren' Freudenheim, David Leadbeater"
commands: sping
contact: fahren@bochnia.pl
description: '/SPING [server] - checks latency between current server and [server]'
filename: sping.pl
license: 'GNU GPLv2 or later'
modified: '2014-06-15 19:18:39'
name: 'Server Ping'
version: '1.0'
-
authors: "Bjoern 'fuchs' Krombholz"
contact: bjkro@gmx.de
description: 'Split overlong PRIVMSGs to msgs with length allowed by ircd'
filename: splitlong.pl
license: 'Public Domain'
modified: '2014-08-07 02:00:52'
name: splitlong
version: '0.20'
-
authors: 'Örjan Persson'
commands: spotify
contact: o@42mm.org
description: 'Lookup spotify uris'
filename: spotify.pl
license: GPLv2
modified: '2014-10-13 15:24:27'
modules: 'HTTP::Request HTTP::Request::Common JSON LWP::UserAgent URI'
name: spotify
url: https://github.com/op/irssi-spotify
version: '1.1'
-
authors: "Marcus 'darix' Rückert, tira, Stefan 'tommie' Tomanek"
contact: 'darix@irssi.de, tira@isx.de, stefan@pico.ruhr.de'
description: 'prints the stats for german stocks'
filename: stocks.pl
license: 'Public Domain'
modified: '2008-05-17 17:39:11'
modules: 'HTML::Entities LWP::Simple'
name: stocks
url: http://irssi.org/scripts/
version: '0.9'
-
authors: 'Marcin Rozycki'
commands: sync-check
contact: derwan@irssi.pl
description: 'Script checking channel synchronization. Usage: /sync-check [channel (servers)|-stop]'
filename: synccheck.pl
license: 'GNU GPL v2'
modified: '2002-08-09 23:00:00'
name: sync-check
url: http://derwan.irssi.pl
version: 0.4.9.1
-
authors: 'David Rudie'
commands: sysinfo
contact: david@inexistent.com
description: 'Cross-platform/architecture system information script.'
filename: sysinfo270-irssi.pl
license: BSD
modified: '2014-10-24 23:01:30'
name: SysInfo
url: http://www.inexistent.com/
version: '2.70'
-
authors: 'David Rudie'
commands: sysinfo
contact: david@inexistent.com
description: 'Cross-platform/architecture system information script.'
filename: sysinfo277-irssi.pl
license: BSD
modified: '2014-10-24 23:01:30'
name: SysInfo
url: http://www.inexistent.com/
version: '2.77'
-
authors: 'David Leadbeater'
commands: sysinfo
contact: dgl@dgl.cx
description: 'Adds a /sysinfo command which prints system information (linux only).'
filename: sysinfo_dg.pl
license: 'GNU GPLv2 or later'
modified: '2015-01-10 18:02:02'
name: sysinfo-dg
url: http://irssi.dgl.cx/
version: '1.3'
-
authors: 'Juerd, Tronic'
commands: sysinfo
contact: trn@iki.fi
description: 'Linux system information (with vPenis and other stuff)'
filename: sysinfoplus.pl
license: 'Public Domain'
modified: '2017-04-02 20:30:12'
name: SysinfoPlus
url: http://juerd.nl/irssi/
version: '2.21'
-
authors: "Stefan 'tommie' Tomanek"
contact: stefan@pico.ruhr.de
description: "This script replaces the evil inverted 'I' with a configurable number of whitespaces "
filename: tab_stop.pl
license: GPLv2
modified: '2008-05-17 17:39:11'
name: tab_stop
version: '2002123102'
-
authors: vague
contact: 'vague!#irssi@freenode on irc'
description: 'tabcomplete, on an empty input buffer, over /set completion_keep_publics nicks in channel, parts for any reason(kick, part, quit) are removed from the tabcomplete list'
filename: tabcompletenick.pl
license: GPL2
modified: '2015-11-25 11:47:05'
name: tabcompletenick
url: http://gplus.to/vague
version: '1.1'
-
authors: 'Alexander Mieland'
contact: dma147\@mieland-programming.de
description: 'This script talks to you *g*. It reads the chat-msgs for you.'
filename: talk.pl
license: GPL2
modified: '2014-10-24 23:01:30'
name: Talk
version: '1.01'
-
authors: "Stefan 'tommie' Tomanek"
commands: target
contact: stefan@pico.ruhr.de
description: 'advances IRC warfare to the next level ;)'
filename: target.pl
license: GPLv2
modified: '2008-05-17 17:39:09'
name: Target
url: http://scripts.irssi.org
version: '2003020801'
-
authors: BC-bd
commands: thankop
contact: bd@bc-bd.org
description: 'Remembers the last person oping you on a channel'
filename: thankop.pl
license: 'GPL v2'
modified: '2008-05-22 09:10:50'
name: thankop
url: https://bc-bd.org/svn/repos/irssi/trunk/
version: 0.1.7
-
authors: 'Teemu Hjelt'
commands: 'thistory tinfo topichistory topicinfo'
contact: temex@iki.fi
description: 'Keeps information about the most recent topics of the channels you are on.'
filename: thistory.pl
license: 'GNU GPLv2 or later'
modified: '2014-10-24 23:01:30'
name: 'topic history'
url: http://www.iki.fi/temex/
version: '1.05'
-
authors: 'Kimmo Lehto, Marcus Rueckert'
commands: timer
contact: 'kimmo@a-men.org, darix@irssi.org'
description: 'Provides /timer command for mIRC/BitchX type timer functionality.'
filename: timer.pl
license: 'Public Domain'
modified: '2015-02-07 16:12:59'
name: Timer
version: '0.6'
-
authors: 'Jari Matilainen'
contact: 'vague!#irssi@freenode on irc'
description: 'timezones displayer'
filename: timezones.pl
license: 'Public Domain'
modified: '2017-04-07 16:34:31'
modules: DateTime
name: timezones
url: http://gplus.to/vague
version: '0.2'
-
authors: Atoms
commands: tinyurl
contact: atoms@tups.lv
description: 'create a tinyurl from a long one'
filename: tinyurl.pl
license: GPL
modified: '2016-06-16 10:07:39'
modules: 'WWW::Shorten WWW::Shorten::TinyURL'
name: tinyurl
version: '1.1'
-
authors: 'Timo Sirainen, David Leadbeater'
contact: 'tss@iki.fi, dgl@dgl.cx'
description: 'Display configurable title as XTerm title'
filename: title.pl
license: 'GNU GPL'
modified: '2014-10-24 23:01:30'
name: title
url: http://irssi.dgl.cx/
version: 3.2b
-
authors: "Maciek 'fahren' Freudenheim"
commands: tlock
contact: fahren@bochnia.pl
description: '/TLOCK [-d] [channel] [topic] - locks current or specified topic on [channel]'
filename: tlock.pl
license: 'GNU GPLv2 or later'
modified: '2002-03-15 15:09:42'
name: 'Topic Lock'
version: '1.1'
-
authors: 'Thiago de Arruda'
contact: tpadilha84@gmail.com
description: 'displays a list of nicks in a separate tmux pane'
filename: tmux-nicklist-portable.pl
license: WTFPL
modified: '2016-08-16 21:54:15'
name: tmux-nicklist
version: 0.1.5
-
authors: cdidier
description: 'set (un)away if tmux session is attached/detached'
filename: tmux_away.pl
license: 'GPL v2'
modified: '2015-11-23 21:28:44'
name: tmux_away
url: http://cybione.org
version: '2.1'
-
authors: "Stefan 'tommie' Tomanek"
commands: topics
contact: stefan@pico.ruhr.de
description: 'records a topic history and locks the channel topic'
filename: topics.pl
license: GPLv2
modified: '2008-05-17 17:39:11'
name: topics
url: http://irssi.org/scripts/
version: '2003020801'
-
authors: 'Gabor Nyeki'
commands: topicsed
contact: bigmac@vim.hu
description: 'editing channel topics by regexps'
filename: topicsed.pl
license: 'public domain'
modified: '2017-03-18 23:06:54'
name: topicsed
version: '0.1'
-
authors: "Sebastian 'yath' Schmidt"
contact: yath+irssiscripts@yath.de
description: 'This script will automatically detect people using the Tor anonymity network and append ".TOR" to their hostname, to make things like /ignore -time 3600 *!*@*.TOR possible (e.g. when your favourite channel gets flooded).'
filename: tordetect.pl
license: 'Public domain'
modified: '2008-06-16 10:12:13'
modules: Net::DNS
name: 'Tor autodetection for Irssi'
version: 0.0.1
-
authors: Ziddy
commands: 'gather import track'
contact: DALnet
description: 'Keeps track of users by building a databaseof online, joining and nickchanges. Regex-cabablefor the most part, AKA import available. Search byident, nick or host'
filename: track.pl
license: 'Public Domain'
modified: '2015-09-19 02:21:41'
name: track.pl
url: none
version: '2.1'
-
authors: "Peter 'kinlo' Leurs, Uwe Dudenhoeffer, Michiel Holtkamp, Nico R. Wohlgemuth"
commands: 'mark tb trackbar'
contact: irssi-trackbar@supermind.nl
description: "Shows a bar where you've last read a window"
filename: trackbar.pl
license: GPLv2
modified: '2015-06-29 20:02:06'
name: trackbar
url: http://github.com/mjholtkamp/irssi-trackbar/
version: '1.9'
-
authors: 'Peter Leurs and Geert Hauwaerts'
commands: 'mark trackbar'
contact: peter@pfoe.be
description: 'Shows a bar where you have last read a window.'
filename: trackbar22.pl
license: 'GNU General Public License'
modified: '2017-01-09 14:35:07'
modules: Text::CharWidth
name: trackbar
url: http://www.pfoe.be/~peter/trackbar/
version: '2.3'
-
authors: 'Timo Sirainen'
commands: findnick
contact: tss@iki.fi
description: "Are you ever tired of those people who keep changing their nicks? Or maybe you just don't like someone's nick? This script lets you see them with the real nick all the time no matter what nick they're currently using."
filename: tracknick.pl
license: 'Public Domain'
modified: '2014-10-24 23:01:30'
name: 'track nick'
url: http://irssi.org/
version: '0.01'
-
authors: dreg
contact: dreg@fine.lv
description: translitiratar
filename: translit.pl
license: GPL
modified: '2017-03-05 14:29:01'
name: translit
version: '0.1'
-
authors: 'Wouter Coekaerts'
commands: trigger
contact: wouter@coekaerts.be
description: 'execute a command or replace text, triggered by an event in irssi'
filename: trigger.pl
license: 'GPLv2 or later'
modified: '2015-11-07 13:45:20'
name: trigger
url: http://wouter.coekaerts.be/irssi/
version: 1.0+
-
authors: "Stefan 'tommie' Tomanek"
commands: trustweb
contact: stefan@pico.ruhr.de
description: 'Illustrates the trust between ops'
filename: trustweb.pl
license: GPLv2
modified: '2008-05-17 17:39:11'
name: TrustWeb
version: '2003020801'
-
authors: 'Gabor Nyeki'
commands: tvmusor
contact: bigmac@home.sirklabs.hu
description: 'asks for the current tv-lineup from http://www.port.hu/'
filename: tvmusor.pl
license: BSDL
modified: '2014-10-24 23:01:30'
name: tvmusor
-
authors: 'Sam Stoller'
contact: snstoller@gmail.com
description: 'Assign colors to tweet message components'
filename: twitter_theme.pl
license: 'Public Domain'
modified: '2014-11-10 12:02:36'
name: 'Twitter Theme'
url: http://github.com/samstoller/irssi-twitter-theme
version: '0.4'
-
authors: 'John Engelbrecht'
contact: jengelbr@yahoo.com
description: "BitchX's CrackRock3 animated prompt bar."
filename: twprompt.pl
license: 'Public Domain'
modified: '2017-04-07 16:34:31'
name: twprompt.pl
url: "http://irssi.darktalker.net\n"
version: '1.00'
-
authors: 'John Engelbrecht'
contact: jengelbr@yahoo.com
description: 'IRC version of Social Commands'
filename: twsocials.pl
license: 'Public Domain'
modified: '2014-10-24 23:01:30'
modules: DBI
name: twsocials.pl
url: http://irssi.darktalker.net/
version: '1.02'
-
authors: 'John Engelbrecht'
contact: jengelbr@yahoo.com
description: 'Animated Topic bar.'
filename: twtopic.pl
license: 'Public Domain'
modified: '2017-04-07 16:34:31'
name: twtopic.pl
url: "http://irssi.darktalker.net\n"
version: '1.01'
-
authors: 'Juerd (first version: Timo Sirainen, additions by: Qrczak)'
contact: 'tss@iki.fi, juerd@juerd.nl, qrczak@knm.org.pl'
description: 'When someone uses s/foo/bar/, this really modifies the text'
filename: typofix.pl
license: 'Same as Irssi'
modified: '2015-11-16 19:36:52'
modules: Algorithm::Diff
name: Typofix
url: http://juerd.nl/irssi/
version: '1.12'
-
authors: Michiel
commands: u
contact: michiel@dotgeek.org
description: 'BitchX /u clone. Use /u <regex> to show all nicks (including ident@host) matching regex in the current channel.'
filename: u.pl
license: 'GNU GPL'
modified: '2014-10-24 23:01:30'
name: 'List nicks in channel'
url: http://otoria.freecode.nl/~michiel/u.pl
version: '1.3'
-
authors: shabble
commands: prompt
contact: 'shabble+irssi@metavore.org, shabble@#irssi/Freenode'
description: 'Helper script for dynamically adding text into the input-bar prompt.'
filename: uberprompt.pl
license: MIT
modified: '2016-06-25 15:46:46'
name: uberprompt
version: '0.3'
-
authors: 'David Leadbeater'
commands: 'charblocks unicode'
contact: dgl@dgl.cx
description: 'Get infomation about unicode characters'
filename: unicode.pl
license: 'WTFPL <http://dgl.cx/licence>'
modified: '2014-10-13 14:00:00'
name: unicode
url: http://dgl.cx/irssi
version: '2'
-
authors: 'Peder Stray'
commands: upgradeinfo
contact: peder@ninja.no
description: 'Statusbaritem notifying you about updated binary'
filename: upgradeinfo.pl
license: GPL
modified: '2008-05-17 17:39:09'
name: upgradeinfo
url: http://ninja.no/irssi/upgradeinfo.pl
version: '1.7'
-
authors: 'Ivo Schooneman'
commands: 'ume usay'
contact: ivo@schooneman.net
description: 'Plugin to place text upsidedown'
filename: upsidedown.pl
license: 'GNU GPLv2'
modified: '2012-11-08 23:16:14'
modules: Text::UpsideDown
name: upsidedown
url: https://github.com/Ivo-tje/Irssi-plugin-upsidedown
version: '0.2'
-
authors: 'Peder Stray'
contact: peder@ninja.no
description: 'Try a little harder to figure out client uptime'
filename: uptime.pl
license: GPL
modified: '2014-10-24 23:01:30'
name: uptime
url: http://ninja.no/irssi/uptime.pl
version: '1.6'
-
authors: 'Thomas Graf'
commands: 'head url'
contact: irssi@reeler.org
description: 'logs urls to textfile or/and database, able to list, quote, open or `http head` saved urls.'
filename: url_log.pl
license: 'GNU GPLv2 or later'
modified: '2014-10-24 23:01:30'
modules: 'DBI HTTP::Status LWP LWP::UserAgent'
name: url_log
url: http://irssi.reeler.org/url/
version: '0.2'
-
authors: 'Jakub Jankowski'
contact: shasta@toxcorp.com
description: 'Provides RSS feeds with URLs pasted on your channels.'
filename: urlfeed.pl
license: 'GNU GPLv2 or later'
modified: '2014-10-24 23:01:30'
modules: XML::RSS
name: URLfeed
url: http://toxcorp.com/irc/irssi/urlfeed/
version: '1.28'
-
authors: 'David Leadbeater'
commands: url
contact: dgl@dgl.cx
description: 'Captures urls said in channel and private messages and saves them to a file, also adds a /url command which loads the last said url into a browser.'
filename: urlgrab.pl
license: 'GNU GPLv2 or later'
modified: '2016-06-29 00:54:08'
name: urlgrab
url: http://irssi.dgl.cx/
version: '0.3'
-
authors: 'David Leadbeater'
contact: dgl@dgl.cx
description: 'Print short summaries about URLs from known services that are mentioned on IRC. (Including YouTube, etc.)'
filename: urlinfo.pl
license: 'WTFPL <http://dgl.cx/licence>'
modified: '2016-05-21 20:22:57'
modules: 'HTML::TreeBuilder URI'
name: urlinfo
url: http://dgl.cx/irssi
version: '1.4'
-
authors: bwolf
commands: url
contact: bwolf@geekmind.org
description: 'URL grabber with HTML generation and cmd execution'
filename: urlplot.pl
license: BSD
modified: '2014-10-24 23:01:30'
name: urlplot
url: http://www.geekmind.net
version: '1.2'
-
authors: 'David Leadbeater, Timo Sirainen, Georg Lukas'
contact: 'dgl@dgl.cx, tss@iki.fi, georg@boerde.de'
description: 'Adds a usercount for a channel as a statusbar item'
filename: usercount.pl
license: 'GNU GPLv2 or later'
modified: '2017-04-07 16:34:31'
name: usercount
url: http://irssi.dgl.cx/
version: '1.19'
-
authors: 'Jean-Yves Lefort'
contact: 'jylefort\@brutele.be, decadix on IRCNet'
description: 'Adds a -cmd option to the /USERHOST builtin command'
filename: userhost.pl
license: BSD
modified: '2014-10-24 23:01:30'
name: userhost
url: http://void.adminz.be/irssi.shtml
version: '0.23'
-
authors: 'Jean-Yves Lefort'
commands: users
contact: 'jylefort\@brutele.be, decadix on IRCnet'
description: 'Implements /USERS'
filename: users.pl
license: BSD
modified: '2014-10-24 23:01:30'
name: users
version: '2.3'
-
authors: c0ffee
commands: vstat
contact: c0ffee@penguin-breeder.org
description: 'shows top[0-9]+ irc client versions in a channel'
filename: version-stat.pl
license: 'Public Domain'
modified: '2014-10-24 23:01:30'
name: version-stats
url: http://www.penguin-breeder.org/?page=irssi
version: '0.1'
-
authors: "Stefan 'tommie' Tomanek"
commands: verstats
contact: stefan@pico.ruhr.de
description: 'Draws a diagram of the used clients in a channel'
filename: verstats.pl
license: GPLv2
modified: '2008-05-17 17:39:11'
name: VerStats
url: http://scripts.irssi.org
version: '20030208'
-
authors: 'Olof "zibri" Johansson, Cyprien Debu'
commands: vidinfo
contact: 'olof@ethup.se, frey@notk.org'
description: 'Prints some info of a linked video automatically'
filename: vidinfo.pl
license: GPL
modified: '2014-07-05 17:57:51'
modules: 'HTML::Entities JSON::Parse LWP::UserAgent Regexp::Common URI URI::QueryParam XML::Simple'
name: vidinfo
version: '1.00'
-
authors: 'Jakub Jankowski'
commands: 'vme vsay vtopic'
contact: shasta@atn.pl
description: 'Silly script, removes vowels, idea taken from #linuxnews ;-)'
filename: vowels.pl
license: 'GNU GPLv2 or later'
modified: '2008-05-17 17:39:11'
name: vowels
url: http://irssi.atn.pl/
version: '1.0'
-
authors: "Matti 'qvr' Hiljanen, Piotr 'Pieta' Szymanski"
commands: 'vol wa'
contact: 'matti@hiljanen.com, pieta@osiedle.net.pl'
description: 'shows what WinAmp is playing with /wa command'
filename: wa.pl
license: 'Public Domain'
modified: '2014-10-24 23:01:30'
name: wa
url: http://matin.maapallo.org/softa/irssi
version: 2.3.1
-
authors: 'Svante Kvarnström'
contact: sjk@ankeborg.nu
description: 'warns you if someone kicks you out of a channel'
filename: warnkick.pl
license: GPL
modified: '2004-09-28 03:51:00'
name: warnkick
url: http://ankeborg.nu
version: 0.0.3
-
authors: ulbkold
contact: solaris@sundevil.de
description: 'Removes annoying characters from nicks'
filename: washnicks.pl
license: GPL
modified: '2002-04-12 14:44:11'
name: washnicks
url: n/a
version: '1.01'
-
authors: ThEbUtChE
commands: watch
contact: thebutche@interec.org
description: 'Uso del comando watch para irssi.'
filename: watch.pl
license: BSD
modified: '2014-10-24 23:01:30'
name: 'Watch script'
url: http://www.nebulosa.org
version: '1.0'
-
authors: "David O'Rourke, Karl Siegemund"
commands: whitelist
contact: 'phyber [at] #irssi, q [at] spuk.de'
description: 'Whitelist specific nicks or hosts and ignore messages from anyone else.'
filename: whitelist.pl
license: GPLv2
modified: '2014-08-07 02:00:52'
name: whitelist
version: '1.0'
-
authors: 'Svante Kvarnström'
contact: sjk@ankeborg.nu
description: 'Counts the number of matches in /who lists'
filename: whocount.pl
license: GPL
modified: '2015-03-24 12:50:11'
name: whocount.pl
url: http://sjk.ankeborg.nu
version: 0.0.2
-
authors: "Maciek 'fahren' Freudenheim"
contact: fahren@bochnia.pl
description: "Hilights '@' in whois channel reply"
filename: whois.pl
license: 'GNU GPLv2 or later'
modified: '2002-03-15 15:09:42'
name: cwhois
version: '1.0'
-
authors: 'Michael Kowalchuk'
contact: michael_kowalchuk@umanitoba.ca
description: 'Every time a WHOIS or WHOWAS is run, this script checks the ident and realname for a hex encoded IP address, then decodes it, reverses it, and adds it to the printed WHOIS/WHOWAS result. Useful for looking at CGI::IRC clients.'
filename: whois_hexip.pl
license: MIT
modified: '2005-12-24 00:00:00'
name: whois_hexip
url: http://home.cc.umanitoba.ca/~umkowa17/junk/whois_hexip.pl
version: '1.4'
-
authors: 'Erik Fears'
commands: whos
contact: strtok@softhome.net
description: 'This script allows you to view all users on a specific server.'
filename: whos.pl
license: GPL
modified: '2008-05-17 17:39:09'
name: whos
version: '1.00'
-
authors: 'Leszek Matok'
commands: 'wiilm wilm'
contact: lam@lac.pl
description: 'Provides /wilm and /wiilm commands, which do a whois on a person who sent you last private message'
filename: wilm.pl
license: 'Public Domain'
modified: '2002-10-03 14:00:00'
name: wilm
version: 1.0.1
-
authors: 'Wouter Coekaerts'
commands: ws
contact: coekie@irssi.org
description: 'makes switching windows easy'
filename: window_switcher.pl
license: 'GPLv2 or later'
modified: '2017-04-07 16:34:31'
name: window_switcher
url: http://wouter.coekaerts.be/irssi/
version: '1.0'
-
authors: 'Trevor "tee" Slocum'
contact: tslocum@gmail.com
description: 'Goto a window by its reference number with /##'
filename: winnum.pl
license: GPLv3
modified: '2014-08-01 15:27:47'
name: WinNum
url: https://github.com/tslocum/irssi-scripts
version: 1.0.0
-
authors: 'Antti Ruokomäki'
contact: antti.ruokomaki@mbnet.fi
description: 'If timestamp_timeout is used, the text will be indented when the stamp is hidden'
filename: wisestamp.pl
license: 'Public Domain'
modified: '2006-04-12 22:46:00'
name: wisestamp
version: '1.1'
-
authors: "Matti 'qvr' Hiljanen"
contact: matti@hiljanen.com
description: 'A simple word kickbanner'
filename: wkb.pl
license: 'Public Domain'
modified: '2014-10-24 23:01:30'
name: wkb
url: http://matin.maapallo.org/softa/irssi
version: '1.1'
-
authors: 'Jesper Lindh'
commands: 'delword sql_connect sql_disconnect'
contact: rakblad@midgard.liu.se
description: 'Adds words from IRC to your tab-completion list'
filename: wordcompletition.pl
license: 'Public Domain'
modified: '2017-03-25 22:50:36'
modules: 'DBD::SQLite DBI'
name: 'IRC Completion with mysql-database'
url: http://midgard.liu.se/~n02jesli/perl/
version: '0.2'
-
authors: 'Koenraad Heijlen'
contact: vipie@ulyssis.org
description: 'A script that scrambles all the letters in a word except the first and last.'
filename: wordscramble.pl
license: 'GNU GPL version 2'
modified: '2003-09-15 00:00:00'
name: word_scramble
url: http://vipie.studentenweb.org/dev/irssi/wordscramble
version: 0.0.2
-
authors: 'Toshio R. Spoor'
commands: 'auth xhelp xrehash'
contact: t.spoor@gmail.com
description: 'Undernet X Service Authentication Program'
filename: xauth.pl
license: 'GNU GPLv2 or later'
modified: '2015-02-02 14:02:20'
name: xauth
version: '1.02'
-
authors: 'Clément "nodens" Hermann'
commands: xcmd
contact: clement.hermann@free.fr
description: "makes Undernet's X commands easier and faster to use"
filename: xcmd.pl
license: GPLv2
modified: '2008-05-17 17:39:11'
name: Xcmd
version: '0.2'
-
authors: 'Julie LaLa'
commands: xdcc
contact: ryz@asdf.us
description: 'Run an XDCC file server from irssi.'
filename: xdcc.pl
license: 'Jollo LNT license'
modified: '2015-06-12 22:16:41'
name: xdcc.pl
url: http://asdf.us/xdcc/
version: '1.0'
-
authors: MarshalMeatball
commands: 'ag_add ag_botadd ag_botrem ag_clearcache ag_help ag_list ag_rem ag_reset ag_run ag_server ag_stop'
contact: mobilegundamseed@hotmail.com
description: 'XDCC Autoget, for automated searching and downloading of xdcc packs'
filename: xdcc_autoget.pl
license: 'BeerWare Version 42'
modified: '2017-04-07 16:34:31'
modules: 'File::HomeDir Try::Tiny'
name: autoget
version: '2.1'
-
authors: "Stefan 'tommie' Tomanek, Obfuscoder"
commands: xdccget
contact: obfuscoder@obfusco.de
description: 'enhanced downloading, queing, searching from XDCC bots'
filename: xdccget.pl
license: GPLv2
modified: '2014-10-16 14:47:21'
name: xdccget
version: '20141016'
-
authors: "Stefan 'tommie' Tomanek"
contact: stefan@pico.ruhr.de
description: 'brings the stock exchanges of the world to your irssi'
filename: xetra.pl
license: GPLv2
modified: '2017-04-07 16:34:31'
modules: LWP::Simple
name: Xetra
version: '20030208'
-
authors: "Matthäus 'JonnyBG' Wander"
contact: jbg@swznet.de
description: 'Better readable listing of channel names'
filename: xlist.pl
license: GPLv2
modified: '2008-05-17 17:39:09'
name: xlist
url: http://jbg.swznet.de/xlist/
version: '1.00'
-
authors: 'Simon Shine'
commands: 'np xmms'
contact: simon@blueshell.dk
description: 'XMMS-InfoPipe front-end - allow /np [-help] [dest]'
filename: xmms.pl
license: 'Public Domain'
modified: '2015-01-18 02:15:41'
name: xmms
version: '2.0'
-
authors: simon
commands: np
contact: simon\@blueshell.dk
description: 'Returns XMMS-InfoPipe data'
filename: xmms2.pl
license: 'Public Domain'
modified: '2014-10-24 23:01:30'
name: 'XMMS-InfoPipe Script'
note: 'Make sure InfoPipe is configured!'
url: http://irssi.dk/
version: 1.1.3+1
-
authors: 'Tuomas Jormola'
contact: tjormola@cc.hut.fi
description: "/xmmsinfo to tell what you're currently playing"
filename: xmmsinfo.pl
license: GPLv2
modified: '2006-10-27 18:00:00'
modules: Irssi::XMMSInfo
name: XMMSInfo
url: http://shakti.tky.hut.fi/stuff.xml#irssi
version: '1.01'
-
authors: 'Thomas B. Ruecker'
contact: 'thomas@ruecker.fi, tbr on irc.freenode.net'
description: 'Sends out notifications via XMPP. Based on a script by Peter Krenesky.'
filename: xmpp-notify.pl
license: BSD-3-Clause
modified: '2015-06-30 12:00:46'
modules: Net::Jabber
name: XMPP-notify
url: http://github.com/dm8tbr/irssi-xmpp-notify/
version: '1.0'
-
authors: mizerou
commands: xqf
contact: mizerou@telus.net
description: 'automatically sends xqf data to irssi and optionally licq'
filename: xqf.pl
license: GPLv2
modified: '2014-10-24 23:01:30'
name: XQF
url: none
version: '0.14'
|