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
|
script 0x0st.pl
url https://github.com/irssi/scripts/raw/master/scripts/0x0st.pl
description upload file to https://0x0.st/
script 8-ball.pl
url https://github.com/irssi/scripts/raw/master/scripts/8-ball.pl
description Dont like to take decisions? Have the 8-ball do it for you instead.
script Cirssi.pl
url https://github.com/irssi/scripts/raw/master/scripts/Cirssi.pl
description Controls Audacious2 and MOCP from Irssi
script UNIBG-autoident.pl
url https://github.com/irssi/scripts/raw/master/scripts/UNIBG-autoident.pl
description Automaticaly /msg ident NS yourpassword when you connect or services come back from death
script accent.pl
url https://github.com/irssi/scripts/raw/master/scripts/accent.pl
description This script strips the hungarian accents.
script act.pl
url https://github.com/irssi/scripts/raw/master/scripts/act.pl
description Reset window activity status. defines command /act
script active_notice.pl
url https://github.com/irssi/scripts/raw/master/scripts/active_notice.pl
description This script shows incoming notices into the active channel.
script active_notify.pl
url https://github.com/irssi/scripts/raw/master/scripts/active_notify.pl
description This script will display notify messages into the active window or broadcast it so all the windows.
script adv_windowlist.pl
url https://github.com/irssi/scripts/raw/master/scripts/adv_windowlist.pl
description Adds a permanent advanced window list on the right or in a status bar.
script ai.pl
url https://github.com/irssi/scripts/raw/master/scripts/ai.pl
description Puts people on ignore if they do a public away. See source for options.
script aidle.pl
url https://github.com/irssi/scripts/raw/master/scripts/aidle.pl
description Antyidler with random time
script akftp.pl
url https://github.com/irssi/scripts/raw/master/scripts/akftp.pl
description Full configurable FTP advertiser for Irssi
script alame.pl
url https://github.com/irssi/scripts/raw/master/scripts/alame.pl
description Converts towards lame speech
script anotherway.pl
url https://github.com/irssi/scripts/raw/master/scripts/anotherway.pl
description Another auto away script
script antiplenk.pl
url https://github.com/irssi/scripts/raw/master/scripts/antiplenk.pl
description notices users who "plenk"
script apm.pl
url https://github.com/irssi/scripts/raw/master/scripts/apm.pl
description Shows your battery status in your Statusbar
script armeija.pl
url https://github.com/irssi/scripts/raw/master/scripts/armeija.pl
description Ignores people bringin up boring/repeated subjects, plus replies.
script ascii.pl
url https://github.com/irssi/scripts/raw/master/scripts/ascii.pl
description Ascii-art bassed on figlet. Available commands: /ASCII, /COLSAY, /COLME, /COLTOPIC, /COLKICK, /COLQUIT.
script auto_whois.pl
url https://github.com/irssi/scripts/raw/master/scripts/auto_whois.pl
description /WHOIS all the users who send you a private message.
script autoaway.pl
url https://github.com/irssi/scripts/raw/master/scripts/autoaway.pl
description Automatically goes away after defined inactivity
script autochannel.pl
url https://github.com/irssi/scripts/raw/master/scripts/autochannel.pl
description Auto add channels to channel list on join
script autocycle.pl
url https://github.com/irssi/scripts/raw/master/scripts/autocycle.pl
description Auto regain ops in empty opless channels
script autolimit.pl
url https://github.com/irssi/scripts/raw/master/scripts/autolimit.pl
description does an autolimit for a channel
script autoopper.pl
url https://github.com/irssi/scripts/raw/master/scripts/autoopper.pl
description Auto-op script with dynamic address support and random delay
script autorealname.pl
url https://github.com/irssi/scripts/raw/master/scripts/autorealname.pl
description Print realname of everyone who join to channels
script autorejoinpunish.pl
url https://github.com/irssi/scripts/raw/master/scripts/autorejoinpunish.pl
description Kickbans or knockouts people who use autorejoin on kick.
script autoreminder.pl
url https://github.com/irssi/scripts/raw/master/scripts/autoreminder.pl
description This script Reminds people to do stuff! :)
script autoversion.pl
url https://github.com/irssi/scripts/raw/master/scripts/autoversion.pl
description Auto-CTCP Verison on every joining nick
script autovoice.pl
url https://github.com/irssi/scripts/raw/master/scripts/autovoice.pl
description autovoice
script autowhois.pl
url https://github.com/irssi/scripts/raw/master/scripts/autowhois.pl
description /WHOIS all the users who send you a private message.
script autowrap.pl
url https://github.com/irssi/scripts/raw/master/scripts/autowrap.pl
description Automatically wraps long sent messages into multiple shorter sent messages
script away.pl
url https://github.com/irssi/scripts/raw/master/scripts/away.pl
description Away with reason, unaway, and autoaway
script away2web.pl
url https://github.com/irssi/scripts/raw/master/scripts/away2web.pl
description Write /away information to a file to be used on web pages
script away_hilight_notice.pl
url https://github.com/irssi/scripts/raw/master/scripts/away_hilight_notice.pl
description This script will notice your away message in response to a hilight.
script away_verbose.pl
url https://github.com/irssi/scripts/raw/master/scripts/away_verbose.pl
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!)
script awaybar.pl
url https://github.com/irssi/scripts/raw/master/scripts/awaybar.pl
description Provides a menubar item with away message
script awaylogcnt.pl
url https://github.com/irssi/scripts/raw/master/scripts/awaylogcnt.pl
description Displays in statusbar number of messages in awaylog
script awayproxy.pl
url https://github.com/irssi/scripts/raw/master/scripts/awayproxy.pl
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.
script badword.pl
url https://github.com/irssi/scripts/raw/master/scripts/badword.pl
description Configurable badword kickbanning script
script ban.pl
url https://github.com/irssi/scripts/raw/master/scripts/ban.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
script bandwidth.pl
url https://github.com/irssi/scripts/raw/master/scripts/bandwidth.pl
description shows bandwidth usage in statusbar
script bansearch.pl
url https://github.com/irssi/scripts/raw/master/scripts/bansearch.pl
description Searches for bans, quiets, and channel modes affecting a user
script bantime.pl
url https://github.com/irssi/scripts/raw/master/scripts/bantime.pl
description Print time when ban was set in a nicer way. eg. 23m, 40s ago.
script beep.pl
url https://github.com/irssi/scripts/raw/master/scripts/beep.pl
description Replaces your terminal bell by a command specified via /set; adds a beep_when_not_away setting
script beep_beep.pl
url https://github.com/irssi/scripts/raw/master/scripts/beep_beep.pl
description runs arbitrary command instead of system beep, includes flood protection
script beepaway.pl
url https://github.com/irssi/scripts/raw/master/scripts/beepaway.pl
description Only beep when you are away
script bestoiber.pl
url https://github.com/irssi/scripts/raw/master/scripts/bestoiber.pl
description stoibers your messages
script binary.pl
url https://github.com/irssi/scripts/raw/master/scripts/binary.pl
description adds /binary command that converts what you type into 2-base string representation, also decodes other peoples binary automatically
script bitlbee_blist.pl
url https://github.com/irssi/scripts/raw/master/scripts/bitlbee_blist.pl
description /blist <all|online|offline|away|word> <word>, greps <word> from blist for bitlbee
script bitlbee_join_notice.pl
url https://github.com/irssi/scripts/raw/master/scripts/bitlbee_join_notice.pl
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+)
script bitlbee_nick_change.pl
url https://github.com/irssi/scripts/raw/master/scripts/bitlbee_nick_change.pl
description Shows an IM nickchange in an Irssi way. (in a query and in the bitlbee channel). (For bitlbee 3.0+)
script bitlbee_tab_completion.pl
url https://github.com/irssi/scripts/raw/master/scripts/bitlbee_tab_completion.pl
description Intelligent Tab-completion for BitlBee commands.
script bitlbee_typing_notice.pl
url https://github.com/irssi/scripts/raw/master/scripts/bitlbee_typing_notice.pl
description 1. Adds an item to the status bar wich shows [typing] when someone is typing a message on the supported IM-networks 2. Sends typing notices to the supported IM networks (the other way arround). (For bitlbee 3.0+)
script blowjob.pl
url https://github.com/irssi/scripts/raw/master/scripts/blowjob.pl
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.
script bmi.pl
url https://github.com/irssi/scripts/raw/master/scripts/bmi.pl
description a simple body mass index calculator for depression ;)
script calc.pl
url https://github.com/irssi/scripts/raw/master/scripts/calc.pl
description Simple /calc mechanism
script callerid.pl
url https://github.com/irssi/scripts/raw/master/scripts/callerid.pl
description Reformats CallerID (+g) Messages (Also known as Server-Side Ignore) on Hybrid & Ratbox IRCDs (EFnet) to be Easier on the Eyes
script cap_sasl.pl
url https://github.com/irssi/scripts/raw/master/scripts/cap_sasl.pl
description Implements SASL authentication and enables CAP "multi-prefix"
script centericq.pl
url https://github.com/irssi/scripts/raw/master/scripts/centericq.pl
description Staturbar item which indicates how many new messages you have in your centericq
script cgrep.pl
url https://github.com/irssi/scripts/raw/master/scripts/cgrep.pl
description Lists users on the channel matching the specified regexp
script chanact.pl
url https://github.com/irssi/scripts/raw/master/scripts/chanact.pl
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>
script chanfull.pl
url https://github.com/irssi/scripts/raw/master/scripts/chanfull.pl
description Notifies the user when some channel limit is reached
script chanfull_duden.pl
url https://github.com/irssi/scripts/raw/master/scripts/chanfull_duden.pl
description Notify if Channellimit is reached
script chankeys.pl
url https://github.com/irssi/scripts/raw/master/scripts/chankeys.pl
description manage channel keyboard shortcuts
script chanpeak.pl
url https://github.com/irssi/scripts/raw/master/scripts/chanpeak.pl
description Log maximum number of people ever been in a channel
script chansearch.pl
url https://github.com/irssi/scripts/raw/master/scripts/chansearch.pl
description searches for specific channels
script chanshare.pl
url https://github.com/irssi/scripts/raw/master/scripts/chanshare.pl
description /CHANSHARE - display people who are in more than one channel with you
script chansort.pl
url https://github.com/irssi/scripts/raw/master/scripts/chansort.pl
description Sort all channel and query windows
script chansync.pl
url https://github.com/irssi/scripts/raw/master/scripts/chansync.pl
description /who a channel and optionaly executes a command
script chops.pl
url https://github.com/irssi/scripts/raw/master/scripts/chops.pl
description Simulates BitchX's /CHOPS and /NOPS commands.
script cleanpublic.pl
url https://github.com/irssi/scripts/raw/master/scripts/cleanpublic.pl
description Simple script that removes colors and other formatting (bold, etc) from public channels
script clipboard.pl
url https://github.com/irssi/scripts/raw/master/scripts/clipboard.pl
description Better quoting of content from clipboard (without leading spaces) -- requires Perl/Tk
script clones.pl
url https://github.com/irssi/scripts/raw/master/scripts/clones.pl
description /CLONES - Display clones in the active channel (with added options)
script colorize_nicks.pl
url https://github.com/irssi/scripts/raw/master/scripts/colorize_nicks.pl
description Colourise mention of nicks in the message body.
script colored_nicks.pl
url https://raw.githubusercontent.com/trilkk/irssi-colored-nicks/master/colored_nicks.pl
description Exposes colored nickname variables for themes.
script colorkick.pl
url https://github.com/irssi/scripts/raw/master/scripts/colorkick.pl
description kicking users for using colors or blinks
script connectcmd.pl
url https://github.com/irssi/scripts/raw/master/scripts/connectcmd.pl
description run arbitrary shell commands while [dis]connecting to a server
script copy.pl
url https://github.com/irssi/scripts/raw/master/scripts/copy.pl
description copy a line in a paste buffer
script countdown.pl
url https://github.com/irssi/scripts/raw/master/scripts/countdown.pl
description adds public channel command for counting down something
script country.pl
url https://github.com/irssi/scripts/raw/master/scripts/country.pl
description Print the country name in /WHOIS replies
script cp1250_kick.pl
url https://github.com/irssi/scripts/raw/master/scripts/cp1250_kick.pl
description Kicks people using cp1250 charset
script crapbuster.pl
url https://github.com/irssi/scripts/raw/master/scripts/crapbuster.pl
description Removes CRAP or CLIENTCRAP messages from your buffer
script cron.pl
url https://github.com/irssi/scripts/raw/master/scripts/cron.pl
description cron implementation, allows to execute commands at given interval/time
script ctrlact.pl
url https://github.com/irssi/scripts/raw/master/scripts/ctrlact.pl
description allows per-channel control over activity indication
script cwho.pl
url https://github.com/irssi/scripts/raw/master/scripts/cwho.pl
description Usage: /CWHO [-a | -l | -o | -v ] [ mask ]
script cubes.pl
url https://raw.githubusercontent.com/irssi/scripts.irssi.org/master/scripts/cubes.pl
description 256 colour test script for Irssi.
script dancer_forwardfix.pl
url https://github.com/irssi/scripts/raw/master/scripts/dancer_forwardfix.pl
description This script will fix the Irssi problem with channel forwarding on the Dancer ircd.
script dau.pl
url https://github.com/irssi/scripts/raw/master/scripts/dau.pl
description write like an idiot
script dcc_ip.pl
url https://github.com/irssi/scripts/raw/master/scripts/dcc_ip.pl
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"
script dccmove.pl
url https://github.com/irssi/scripts/raw/master/scripts/dccmove.pl
description Move completed dcc gets to the subfolder done
script dccself.pl
url https://github.com/irssi/scripts/raw/master/scripts/dccself.pl
description /dccself ip port, starts a dcc chat with yourself on that host/port, best used with /set dcc_autochat_masks.
script dccstat.pl
url https://github.com/irssi/scripts/raw/master/scripts/dccstat.pl
description Shows verbose or short information of dcc send/gets on statusbar (speed, size, eta etc.)
script defaultchanmode.pl
url https://github.com/irssi/scripts/raw/master/scripts/defaultchanmode.pl
description Allows your client to automatically set desired chanmode upon a join to an empty channel.
script desktop-notify.pl
url https://github.com/irssi/scripts/raw/master/scripts/desktop-notify.pl
description Sends notification using the Desktop Notifications Specification.
script df.pl
url https://github.com/irssi/scripts/raw/master/scripts/df.pl
description Adds an item which displays the current disk usage.
script dice.pl
url https://github.com/irssi/scripts/raw/master/scripts/dice.pl
description A Dice Simulator for Roleplaying in Channels or just for fun.
script dictcomplete.pl
url https://github.com/irssi/scripts/raw/master/scripts/dictcomplete.pl
description Caching dictionary based tab completion
script dim_nicks.pl
url https://github.com/irssi/scripts/raw/master/scripts/dim_nicks.pl
description Dims nicks that are not in channel anymore.
script discord_unbridge.pl
url https://github.com/irssi/scripts/raw/master/scripts/discord_unbridge.pl
description In channels with a discord bridge, turns "<bridge> <Sender> Message" into "<Sender> Message", and hides spoilers.
script dispatch.pl
url https://github.com/irssi/scripts/raw/master/scripts/dispatch.pl
description This scripts sends unknown commands to the server
script doc.pl
url https://github.com/irssi/scripts/raw/master/scripts/doc.pl
description manage tips ; url ; help in a doc file in the keyword=definition form
script doublefilter.pl
url https://github.com/irssi/scripts/raw/master/scripts/doublefilter.pl
description Filters msgs which appear the same on different channels.
script dtach_away.pl
url https://github.com/irssi/scripts/raw/master/scripts/dtach_away.pl
description set (un)away, if dtach is attached/detached
script duckduckgo.pl
url https://github.com/irssi/scripts/raw/master/scripts/duckduckgo.pl
description search by https://duckduckgo.com/html/
script elist.pl
url https://github.com/irssi/scripts/raw/master/scripts/elist.pl
description This script allow advanced parametrization of the /list command. Accepted parameters are -minusers <#users> and -maxusers <#users>.
script eliza.pl
url https://github.com/irssi/scripts/raw/master/scripts/eliza.pl
description Answers to /msg's using Chatbot::Eliza when you're away.
script email_msgs.pl
url https://github.com/irssi/scripts/raw/master/scripts/email_msgs.pl
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.
script emaildb.pl
url https://github.com/irssi/scripts/raw/master/scripts/emaildb.pl
description a script for accessing an email mysql database through irc
script events.pl
url https://github.com/irssi/scripts/raw/master/scripts/events.pl
description Expand "event mode" and emit "event mode {channel,user,server} *"
script exec_clean.pl
url https://github.com/irssi/scripts/raw/master/scripts/exec_clean.pl
description Adds a setting to automatically terminate a process whose parent window has been closed
script fakectcp.pl
url https://github.com/irssi/scripts/raw/master/scripts/fakectcp.pl
description This script sends fake ctcp replies to a client using a fake ctcp list.
script figlet.pl
url https://github.com/irssi/scripts/raw/master/scripts/figlet.pl
description Safe figlet implementation (with color support!)
script file.pl
url https://github.com/irssi/scripts/raw/master/scripts/file.pl
description A command to output content of files in various ways
script find.pl
url https://github.com/irssi/scripts/raw/master/scripts/find.pl
description Finds a nick by real name, if he's on a channel with you.
script findbot.pl
url https://github.com/irssi/scripts/raw/master/scripts/findbot.pl
description Public command @find script
script fleech.pl
url https://github.com/irssi/scripts/raw/master/scripts/fleech.pl
description fserve leecher - helps you download files from file servers
script fnotify.pl
url https://github.com/irssi/scripts/raw/master/scripts/fnotify.pl
description Write notifications to a file in a consistent format.
script follow.pl
url https://github.com/irssi/scripts/raw/master/scripts/follow.pl
description Automatically switch to active windows
script foo.pl
url https://github.com/irssi/scripts/raw/master/scripts/foo.pl
description Rot n+i encryption and decryption
script foreach_user.pl
url https://github.com/irssi/scripts/raw/master/scripts/foreach_user.pl
description Extends the /foreach command to have /foreach user (users in a channel). Syntax: /foreach user [hostmask] command.
script fortune.pl
url https://github.com/irssi/scripts/raw/master/scripts/fortune.pl
description Send a random fortune cookie to an user in channel.
script forward.pl
url https://github.com/irssi/scripts/raw/master/scripts/forward.pl
description forward incoming messages to another nick
script fpaste.pl
url https://github.com/irssi/scripts/raw/master/scripts/fpaste.pl
description copy infos to fpaste
script friends_shasta.pl
url https://github.com/irssi/scripts/raw/master/scripts/friends_shasta.pl
description Maintains list of people you know.
script fserve.pl
url https://github.com/irssi/scripts/raw/master/scripts/fserve.pl
description File server for irssi
script fuckem.pl
url https://github.com/irssi/scripts/raw/master/scripts/fuckem.pl
description Simulates the BitchX /FUCKEM command. Deop/Dehalfop everyone on the channel including you.
script getop.pl
url https://github.com/irssi/scripts/raw/master/scripts/getop.pl
description Automatically request op from random opped person with specifed command from list after joining channel
script gimmie.pl
url https://github.com/irssi/scripts/raw/master/scripts/gimmie.pl
description a bot script, using ! followed by anything the script will say (as an action): gets nickname anything
script gitscriptassist.pl
url https://github.com/irssi/scripts/raw/master/scripts/gitscriptassist.pl
description script management with git
script go.pl
url https://github.com/irssi/scripts/raw/master/scripts/go.pl
description Implements /go command that activates a window given a name/partial name. It features a nice completion.
script go2.pl
url https://github.com/irssi/scripts/raw/master/scripts/go2.pl
description Switch to the window with the given name or item
script google.pl
url https://github.com/irssi/scripts/raw/master/scripts/google.pl
description This script queries google.com with googler and returns the results.
script gpgvalidator.pl
url https://github.com/irssi/scripts/raw/master/scripts/gpgvalidator.pl
description Have gpg-based trusting features in your irssi client!
script grep.pl
url https://github.com/irssi/scripts/raw/master/scripts/grep.pl
description /GREP [-i] [-w] [-v] [-F] <perl-regexp> <command to run>
script guts.pl
url https://github.com/irssi/scripts/raw/master/scripts/guts.pl
description Adds the uppercased version of the tab completes
script hddtemp.pl
url https://github.com/irssi/scripts/raw/master/scripts/hddtemp.pl
description adds a statusbar item which shows temperatures of harddisks (with multiple hddtemp-hosts support)
script hello.pl
url https://github.com/irssi/scripts/raw/master/scripts/hello.pl
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.
script hide.pl
url https://github.com/irssi/scripts/raw/master/scripts/hide.pl
description a little interface to irssi's activity_hide_* settings
script hideauth.pl
url https://github.com/irssi/scripts/raw/master/scripts/hideauth.pl
description Stops eggdrop passwords showing up
script hideshow.pl
url https://github.com/irssi/scripts/raw/master/scripts/hideshow.pl
description Removes and re-adds lines to the Irssi buffer view.
script highlite.pl
url https://github.com/irssi/scripts/raw/master/scripts/highlite.pl
description shows events happening in all channels you are in that may concern you
script hignore.pl
url https://github.com/irssi/scripts/raw/master/scripts/hignore.pl
description This script will add the HIGNORE command, if you use this command in a query it will ignore the host.
script hilightwin.pl
url https://github.com/irssi/scripts/raw/master/scripts/hilightwin.pl
description Print hilighted messages to window named "hilight"
script history_search.pl
url https://github.com/irssi/scripts/raw/master/scripts/history_search.pl
description Search within your typed history as you type (like ctrl-R in bash)
script hl.pl
url https://github.com/irssi/scripts/raw/master/scripts/hl.pl
description responds to "!hl counterstrike.server " command on channels/msg's to query counter-strike servers
script hlbot.pl
url https://github.com/irssi/scripts/raw/master/scripts/hlbot.pl
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.
script hostname.pl
url https://github.com/irssi/scripts/raw/master/scripts/hostname.pl
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
script iMPD.pl
url https://github.com/irssi/scripts/raw/master/scripts/iMPD.pl
description This controls Music Player Daemon from the familiar irssi interface
script idletime.pl
url https://github.com/irssi/scripts/raw/master/scripts/idletime.pl
description Retrieves the idletime of any nick
script idonkey.pl
url https://github.com/irssi/scripts/raw/master/scripts/idonkey.pl
description equips Irssi with an interface to mldonkey
script ignore_log.pl
url https://github.com/irssi/scripts/raw/master/scripts/ignore_log.pl
description script to log ignored messages
script ignoreoc.pl
url https://github.com/irssi/scripts/raw/master/scripts/ignoreoc.pl
description Ignore messages from people not on your channels.Now people you msg are added to bypass-list.
script il.pl
url https://github.com/irssi/scripts/raw/master/scripts/il.pl
description adds a statusbar item which show length of the inputline
script imdb.pl
url https://github.com/irssi/scripts/raw/master/scripts/imdb.pl
description Automatically lookup IMDB-numbers in nicknames
script intercept.pl
url https://github.com/irssi/scripts/raw/master/scripts/intercept.pl
description Intercept misprinted commands and offer to remove the first character before sending it on
script invitejoin.pl
url https://github.com/irssi/scripts/raw/master/scripts/invitejoin.pl
description This script will join a channel if somebody invites you to it.
script ipupdate.pl
url https://github.com/irssi/scripts/raw/master/scripts/ipupdate.pl
description Auto "/set dcc_own_ip IP" on connect.
script irccomplete.pl
url https://github.com/irssi/scripts/raw/master/scripts/irccomplete.pl
description Adds words from IRC to your tab-completion list, plus fixes typos
script ircgallery.pl
url https://github.com/irssi/scripts/raw/master/scripts/ircgallery.pl
description Show IRC gallery (http://irc-galleria.net, finnish only) information on /WHOIS or /GALLERY
script ircgmessagenotify.pl
url https://github.com/irssi/scripts/raw/master/scripts/ircgmessagenotify.pl
description Tarkistelee irc-galleria.net:iä ja sanoo kun sinulle on uusia viestejä.
script ircops.pl
url https://github.com/irssi/scripts/raw/master/scripts/ircops.pl
description /IRCOPS - Display IrcOps in current channel
script ircsec.pl
url https://github.com/irssi/scripts/raw/master/scripts/ircsec.pl
description secures your conversation
script irssiBlaster.pl
url https://github.com/irssi/scripts/raw/master/scripts/irssiBlaster.pl
description Display the song played by mp3blaster in channels and statusbar. See the top of the file for usage.
script isdn.pl
url https://github.com/irssi/scripts/raw/master/scripts/isdn.pl
description Displays incoming ISDN calls
script itime.pl
url https://github.com/irssi/scripts/raw/master/scripts/itime.pl
description Internet Time statusbar item. See http://www.timeanddate.com/time/internettime.html
script ixmmsa.pl
url https://github.com/irssi/scripts/raw/master/scripts/ixmmsa.pl
description /xmms announces which _file_ is currently playing. E.g. Currently playing: "Kieran Halpin & Band - Mirror Town.mp3"
script joininfo.pl
url https://github.com/irssi/scripts/raw/master/scripts/joininfo.pl
description Reports WHOIS information and channel list for those who join a channel
script kban-referrals.pl
url https://github.com/irssi/scripts/raw/master/scripts/kban-referrals.pl
description Script for kickbanning those who post referral links in a channel
script kblamehost.pl
url https://github.com/irssi/scripts/raw/master/scripts/kblamehost.pl
description Kicks (and bans) people with >= 4 dots in theirs hostname
script keepnick.pl
url https://github.com/irssi/scripts/raw/master/scripts/keepnick.pl
description Try to get your nick back when it becomes available.
script kenny.pl
url https://github.com/irssi/scripts/raw/master/scripts/kenny.pl
description autodekennyfies /kenny, adds /kenny, /dekenny. Based on Jan-Pieter Cornets signature version
script kernel.pl
url https://github.com/irssi/scripts/raw/master/scripts/kernel.pl
description Fetches the version(s) of the latest Linux kernel(s).
script kicks.pl
url https://github.com/irssi/scripts/raw/master/scripts/kicks.pl
description Enhances /k /kb and /kn with some nice options.
script kill_fake_gets.pl
url https://github.com/irssi/scripts/raw/master/scripts/kill_fake_gets.pl
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
script kline_warning.pl
url https://github.com/irssi/scripts/raw/master/scripts/kline_warning.pl
description This script shows a warning in the statuswindow if somebody preforms a /KlINE or /UNKLINE.
script l33tmusic.pl
url https://github.com/irssi/scripts/raw/master/scripts/l33tmusic.pl
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.
script lastspoke.pl
url https://github.com/irssi/scripts/raw/master/scripts/lastspoke.pl
description Remembers what people said last on what channels
script len.pl
url https://github.com/irssi/scripts/raw/master/scripts/len.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.
script leodict.pl
url https://github.com/irssi/scripts/raw/master/scripts/leodict.pl
description translates via dict.leo.org
script licq.pl
url https://github.com/irssi/scripts/raw/master/scripts/licq.pl
description Licq statusbar thingy
script linkchan.pl
url https://github.com/irssi/scripts/raw/master/scripts/linkchan.pl
description Link several channels on serveral networks
script listen.pl
url https://github.com/irssi/scripts/raw/master/scripts/listen.pl
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.
script loadavg.pl
url https://github.com/irssi/scripts/raw/master/scripts/loadavg.pl
description display a loadavg statusbar item using vm.loadavg mib or /proc/loadavg
script localize.pl
url https://github.com/irssi/scripts/raw/master/scripts/localize.pl
description Localizes users using traceroute, the localizer database or IP-Atlas
script log2ansi.pl
url https://github.com/irssi/scripts/raw/master/scripts/log2ansi.pl
description Convert various color codes to ANSI colors, useful for log filtering and viewing.
script logcompress.pl
url https://github.com/irssi/scripts/raw/master/scripts/logcompress.pl
description compress logfiles then they're rotated
script logresume.pl
url https://github.com/irssi/scripts/raw/master/scripts/logresume.pl
description print last n lines of logs when opening queries/channels
script mailcheck_imap.pl
url https://github.com/irssi/scripts/raw/master/scripts/mailcheck_imap.pl
description Staturbar item which indicates how many new emails you have in the specified IMAP[S] mailbox
script mailcheck_mbox_flux.pl
url https://github.com/irssi/scripts/raw/master/scripts/mailcheck_mbox_flux.pl
description Polls your unix mailbox for new mail
script mailcheck_pop3_kimmo.pl
url https://github.com/irssi/scripts/raw/master/scripts/mailcheck_pop3_kimmo.pl
description POP3 new mail notification and listing of mailbox contents. Use "/mail help" for instructions. Requires Net::POP3.
script mangle.pl
url https://github.com/irssi/scripts/raw/master/scripts/mangle.pl
description translates your messages into Morse code, rot13 and other sillinesses.
script map.pl
url https://github.com/irssi/scripts/raw/master/scripts/map.pl
description Generates simple tree of IRC network based on the output of the LINKS command.
script mass_hilight_blocker.pl
url https://github.com/irssi/scripts/raw/master/scripts/mass_hilight_blocker.pl
description Disables hilighting for messages containing a lot of nicknames
script miodek.pl
url https://github.com/irssi/scripts/raw/master/scripts/miodek.pl
description Simple wordkick system, with extended polish dictionary for channels enforcing correct polish.
script mkick.pl
url https://github.com/irssi/scripts/raw/master/scripts/mkick.pl
description Masskick, usage: /mkick [-aovdln6 (hostmask)] <[:]reason>
script mldonkey_bandwidth.pl
url https://github.com/irssi/scripts/raw/master/scripts/mldonkey_bandwidth.pl
description Shows your mldonkey's current down- and upload rate
script modelist-r.pl
url https://github.com/irssi/scripts/raw/master/scripts/modelist-r.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).
script modelist.pl
url https://github.com/irssi/scripts/raw/master/scripts/modelist.pl
description Cache of invites and ban exceptions in channel. Usage: /si, /se, /unexcept [indexes], /uninvite [indexes]
script mood.pl
url https://github.com/irssi/scripts/raw/master/scripts/mood.pl
description Keeps track of the channel mood
script morse.pl
url https://github.com/irssi/scripts/raw/master/scripts/morse.pl
description turns your messages into morse or spelling code
script mouse.pl
url https://github.com/irssi/scripts/raw/master/scripts/mouse.pl
description control irssi using mouse clicks and gestures
script mpg123.pl
url https://github.com/irssi/scripts/raw/master/scripts/mpg123.pl
description Display current mpg123 track
script multipaste.pl
url https://github.com/irssi/scripts/raw/master/scripts/multipaste.pl
description Helps pasting multiple lines to a channel
script my_beep.pl
url https://github.com/irssi/scripts/raw/master/scripts/my_beep.pl
description runs arbitrary command instead of system beep, includes flood protection
script mysqlurllogger.pl
url https://github.com/irssi/scripts/raw/master/scripts/mysqlurllogger.pl
description logs url's to mysql database
script nact.pl
url https://github.com/irssi/scripts/raw/master/scripts/nact.pl
description Adds an item which displays the current network activity. Needs /proc/net/dev.
script news.pl
url https://github.com/irssi/scripts/raw/master/scripts/news.pl
description News reader, usage: /article [-s <server>] [-p <port>] [-P <password> -U <login>] [-l <group> <count>] [-a] [-L <index>] <message-id>
script newsline.pl
url https://github.com/irssi/scripts/raw/master/scripts/newsline.pl
description brings various newstickers to Irssi (Slashdot, Freshmeat, Heise etc.)
script nickban.pl
url https://github.com/irssi/scripts/raw/master/scripts/nickban.pl
description A simple nick banner. If it encounters a nick it bans its host
script nickcolor_expando.pl
url https://github.com/irssi/scripts/raw/master/scripts/nickcolor_expando.pl
description colourise nicks
script nickignore.pl
url https://github.com/irssi/scripts/raw/master/scripts/nickignore.pl
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
script nicklist.pl
url https://github.com/irssi/scripts/raw/master/scripts/nicklist.pl
description draws a nicklist to another terminal, or at the right of your irssi in the same terminal
script nickmix-c0ffee.pl
url https://github.com/irssi/scripts/raw/master/scripts/nickmix-c0ffee.pl
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.
script nickmix_pasky.pl
url https://github.com/irssi/scripts/raw/master/scripts/nickmix_pasky.pl
description Perturbates given nick (or just a word) in certain way.
script nickserv.pl
url https://github.com/irssi/scripts/raw/master/scripts/nickserv.pl
description This script will authorize you into NickServ.
script niq.pl
url https://github.com/irssi/scripts/raw/master/scripts/niq.pl
description BitchX like Nickcompletion at line start plus statusbar
script nocaps.pl
url https://github.com/irssi/scripts/raw/master/scripts/nocaps.pl
description Replaces lines in ALL CAPS with something easier on the eyes
script nocollide.pl
url https://github.com/irssi/scripts/raw/master/scripts/nocollide.pl
description Automatically changes nick (to randnick or uid on ircd 2.11) when certain amount of nick colissionstakes place on channel
script noisyquery.pl
url https://github.com/irssi/scripts/raw/master/scripts/noisyquery.pl
description Prints an info about a newly started Query in your current window and runs a /whois on the nick.
script nopl.pl
url https://github.com/irssi/scripts/raw/master/scripts/nopl.pl
description Replaces polish national characters with their corresponding letters
script norepeat.pl
url https://github.com/irssi/scripts/raw/master/scripts/norepeat.pl
description stops public repeating
script noticemove.pl
url https://github.com/irssi/scripts/raw/master/scripts/noticemove.pl
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.
script notonline.pl
url https://github.com/irssi/scripts/raw/master/scripts/notonline.pl
description Answers "$nick: No." if you're away and someone asks are you online on a channel
script ogg123.pl
url https://github.com/irssi/scripts/raw/master/scripts/ogg123.pl
description Display current ogg123 track
script oidenty.pl
url https://github.com/irssi/scripts/raw/master/scripts/oidenty.pl
description oidentd support for irssi
script on.pl
url https://github.com/irssi/scripts/raw/master/scripts/on.pl
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.
script oops.pl
url https://github.com/irssi/scripts/raw/master/scripts/oops.pl
description turns 'll' and 'ls' in the beginning of a sent line into the names or whois commands
script oopsie.pl
url https://github.com/irssi/scripts/raw/master/scripts/oopsie.pl
description Stops those silly mistakes being sent (spaces at start of line, /1/1 for window changes, etc).
script openurl.pl
url https://github.com/irssi/scripts/raw/master/scripts/openurl.pl
description Stores URLs in a list and launches mail, web or ftp software
script operit.pl
url https://github.com/irssi/scripts/raw/master/scripts/operit.pl
description Perform certain action (invite/op/...) on request authenticated by the IRC operator status.
script operview.pl
url https://github.com/irssi/scripts/raw/master/scripts/operview.pl
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.
script opnotice.pl
url https://github.com/irssi/scripts/raw/master/scripts/opnotice.pl
description No description.
script opnotify.pl
url https://github.com/irssi/scripts/raw/master/scripts/opnotify.pl
description Hilights window refnumber in statusbar if someone ops/deops you on channel
script osd.pl
url https://github.com/irssi/scripts/raw/master/scripts/osd.pl
description An OnScreenDisplay (osd) it show's who is talking to you, on what IRC Network.
script page-c0ffee.pl
url https://github.com/irssi/scripts/raw/master/scripts/page-c0ffee.pl
description Adds the /PAGE command to page a nick (use /page nick <text>)... to ignore pages /set pager_mode off
script page_reeler.pl
url https://github.com/irssi/scripts/raw/master/scripts/page_reeler.pl
description display and send CTCP PAGE
script pager.pl
url https://github.com/irssi/scripts/raw/master/scripts/pager.pl
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
script pangotext.pl
url https://github.com/irssi/scripts/raw/master/scripts/pangotext.pl
description Render text with various color modifications using HTML tag syntax.
script paste-derwan.pl
url https://github.com/irssi/scripts/raw/master/scripts/paste-derwan.pl
description Usage: /paste [-all|-msgs|-public] [-c|-b] [-s|-l| where] [lines]
script paste_derwan.pl
url https://github.com/irssi/scripts/raw/master/scripts/paste_derwan.pl
description Pasting lines to specified targets, type "/paste -help" for help
script paste_huggie.pl
url https://github.com/irssi/scripts/raw/master/scripts/paste_huggie.pl
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
script paste_kimmoke.pl
url https://github.com/irssi/scripts/raw/master/scripts/paste_kimmoke.pl
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.
script pelix.pl
url https://github.com/irssi/scripts/raw/master/scripts/pelix.pl
description This script allows you flood shit.
script perlalias.pl
url https://github.com/irssi/scripts/raw/master/scripts/perlalias.pl
description Quickly create commands from short perl blocks
script pggb_sound.pl
url https://github.com/irssi/scripts/raw/master/scripts/pggb_sound.pl
description does CTCP SOUNDs and other similar things.
script poison.pl
url https://github.com/irssi/scripts/raw/master/scripts/poison.pl
description equips Irssi with an interface to giFT
script postpone.pl
url https://github.com/irssi/scripts/raw/master/scripts/postpone.pl
description Postpones messages sent to a splitted user and resends them when the nick rejoins
script ppl.pl
url https://github.com/irssi/scripts/raw/master/scripts/ppl.pl
description port of asmodean's /ppl command from skuld3
script print_signals.pl
url https://github.com/irssi/scripts/raw/master/scripts/print_signals.pl
description hooks into almost every signal and writes the information provided to a file
script query.pl
url https://github.com/irssi/scripts/raw/master/scripts/query.pl
description Give you more control over when to jump to query windows and when to just tell you one has been created. Enhanced autoclose.
script queryresume.pl
url https://github.com/irssi/scripts/raw/master/scripts/queryresume.pl
description restores the last lines of a query on re-creation
script quitrand.pl
url https://github.com/irssi/scripts/raw/master/scripts/quitrand.pl
description Random quit messages - based on quitmsg (Timo Sirainen)
script quiz.pl
url https://github.com/irssi/scripts/raw/master/scripts/quiz.pl
description Turns irssi into a quiz bot
script quizgr.pl
url https://github.com/irssi/scripts/raw/master/scripts/quizgr.pl
description Turns irssi into a quiz bot. Has greek language and many answers support
script quizmaster.pl
url https://github.com/irssi/scripts/raw/master/scripts/quizmaster.pl
description a trivia script for Irssi
script rainbow.pl
url https://github.com/irssi/scripts/raw/master/scripts/rainbow.pl
description Prints colored text. Rather simple than sophisticated.
script randaway.pl
url https://github.com/irssi/scripts/raw/master/scripts/randaway.pl
description Random away-messages
script randname.pl
url https://github.com/irssi/scripts/raw/master/scripts/randname.pl
description Random "/set real_name" taken from a file.
script relm.pl
url https://github.com/irssi/scripts/raw/master/scripts/relm.pl
description Keeps last 15 messages in cache
script remote.pl
url https://github.com/irssi/scripts/raw/master/scripts/remote.pl
description Lets you run commands remotely via /msg and a password
script repeat.pl
url https://github.com/irssi/scripts/raw/master/scripts/repeat.pl
description Hide duplicate lines
script resize_split.pl
url https://github.com/irssi/scripts/raw/master/scripts/resize_split.pl
description Resizes a split window when it is made active (see comments in script for details)
script revolve.pl
url https://github.com/irssi/scripts/raw/master/scripts/revolve.pl
description Summarizes multiple sequential joins/parts/quits.
script rk.pl
url https://github.com/irssi/scripts/raw/master/scripts/rk.pl
description /RK [-o | -l | -a] - kicks random nick from ops | lusers | all on channel
script romaji.pl
url https://github.com/irssi/scripts/raw/master/scripts/romaji.pl
description translates romaji to hiragana or katakana in text enclosed in ^R
script romajibind.pl
url https://github.com/irssi/scripts/raw/master/scripts/romajibind.pl
description Dynamic romaji binds
script rot13.pl
url https://github.com/irssi/scripts/raw/master/scripts/rot13.pl
description ROT13 encoding and reverse :)
script rotator.pl
url https://github.com/irssi/scripts/raw/master/scripts/rotator.pl
description Displaye a small, changeing statusbar item to show irssi is still running
script schwaebisch.pl
url https://github.com/irssi/scripts/raw/master/scripts/schwaebisch.pl
description /schwäbisch - translates your messages from german to swabian
script screen_away.pl
url https://github.com/irssi/scripts/raw/master/scripts/screen_away.pl
description set (un)away, if screen is attached/detached
script scripthelp.pl
url https://github.com/irssi/scripts/raw/master/scripts/scripthelp.pl
description Provides access to script's help
script scriptinfo.pl
url https://github.com/irssi/scripts/raw/master/scripts/scriptinfo.pl
description Access script information
script scroller.pl
url https://github.com/irssi/scripts/raw/master/scripts/scroller.pl
description Scrolls specified text on the status bar
script seen.pl
url https://github.com/irssi/scripts/raw/master/scripts/seen.pl
description Tell people when other people were online
script shortenurl.pl
url https://github.com/irssi/scripts/raw/master/scripts/shortenurl.pl
description shortenurl
script showhilight.pl
url https://github.com/irssi/scripts/raw/master/scripts/showhilight.pl
description Show hilight messages in active window
script showhost.pl
url https://github.com/irssi/scripts/raw/master/scripts/showhost.pl
description show host kicks
script showmode.pl
url https://github.com/irssi/scripts/raw/master/scripts/showmode.pl
description show modes in parts, quits, kicks, topic changes or actions, like show_nickmode does for public messages
script smiley.pl
url https://github.com/irssi/scripts/raw/master/scripts/smiley.pl
description Very useful smiley-flooder
script sms.pl
url https://github.com/irssi/scripts/raw/master/scripts/sms.pl
description /ADDSMS, /DELSMS, /LISTSMS and /SMS - phone address-book with smssender, for now supports only Polish operators
script snmpup.pl
url https://github.com/irssi/scripts/raw/master/scripts/snmpup.pl
description This script queries remote hosts (/snmpup <host1> <host2> <hostN>) running snmpd for it's uptime and cpu usage
script spambot.pl
url https://github.com/irssi/scripts/raw/master/scripts/spambot.pl
description Oper script to kill Spam Bots.
script special_complete.pl
url https://github.com/irssi/scripts/raw/master/scripts/special_complete.pl
description (tab)complete irssi special variables (words that start with $) by evaluating them
script spellcheck.pl
url https://github.com/irssi/scripts/raw/master/scripts/spellcheck.pl
description checks for spelling errors using Aspell
script sping.pl
url https://github.com/irssi/scripts/raw/master/scripts/sping.pl
description /SPING [server] - checks latency between current server and [server]
script synccheck.pl
url https://github.com/irssi/scripts/raw/master/scripts/synccheck.pl
description Script checking channel synchronization. Usage: /sync-check [channel (servers)|-stop]
script sysinfo277-irssi.pl
url https://github.com/irssi/scripts/raw/master/scripts/sysinfo277-irssi.pl
description Cross-platform/architecture system information script.
script sysinfo_dg.pl
url https://github.com/irssi/scripts/raw/master/scripts/sysinfo_dg.pl
description Adds a /sysinfo command which prints system information (linux only).
script sysinfoplus.pl
url https://github.com/irssi/scripts/raw/master/scripts/sysinfoplus.pl
description Linux system information (with vPenis and other stuff)
script tab_stop.pl
url https://github.com/irssi/scripts/raw/master/scripts/tab_stop.pl
description Replaces \t TAB characters to line up with tab stops (default 8) or to contents of /set tabstop_replacement if tabstop_interval is set to 0
script talk.pl
url https://github.com/irssi/scripts/raw/master/scripts/talk.pl
description This script talks to you *g*. It reads the chat-msgs for you.
script target.pl
url https://github.com/irssi/scripts/raw/master/scripts/target.pl
description advances IRC warfare to the next level ;)
script thankop.pl
url https://github.com/irssi/scripts/raw/master/scripts/thankop.pl
description Remembers the last person oping you on a channel
script theme.pl
url https://github.com/irssi/scripts/raw/master/scripts/theme.pl
description activate, show or get theme
script thistory.pl
url https://github.com/irssi/scripts/raw/master/scripts/thistory.pl
description Keeps information about the most recent topics of the channels you are on.
script tictactoe.pl
url https://github.com/irssi/scripts/raw/master/scripts/tictactoe.pl
description tic-tac-toe game
script timer.pl
url https://github.com/irssi/scripts/raw/master/scripts/timer.pl
description Provides /timer command for mIRC/BitchX type timer functionality.
script tinyurl.pl
url https://github.com/irssi/scripts/raw/master/scripts/tinyurl.pl
description create a tinyurl from a long one
script title.pl
url https://github.com/irssi/scripts/raw/master/scripts/title.pl
description Display configurable title as XTerm title
script tlock.pl
url https://github.com/irssi/scripts/raw/master/scripts/tlock.pl
description /TLOCK [-d] [channel] [topic] - locks current or specified topic on [channel]
script tmux-nicklist-portable.pl
url https://github.com/irssi/scripts/raw/master/scripts/tmux-nicklist-portable.pl
description displays a list of nicks in a separate tmux pane
script topics.pl
url https://github.com/irssi/scripts/raw/master/scripts/topics.pl
description records a topic history and locks the channel topic
script topicsed.pl
url https://github.com/irssi/scripts/raw/master/scripts/topicsed.pl
description editing channel topics by regexps
script track.pl
url https://github.com/irssi/scripts/raw/master/scripts/track.pl
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
script trackbar.pl
url https://github.com/irssi/scripts/raw/master/scripts/trackbar.pl
description Shows a bar where you have last read a window.
script tracknick.pl
url https://github.com/irssi/scripts/raw/master/scripts/tracknick.pl
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.
script trigger.pl
url https://github.com/irssi/scripts/raw/master/scripts/trigger.pl
description execute a command or replace text, triggered by an event in irssi
script trustweb.pl
url https://github.com/irssi/scripts/raw/master/scripts/trustweb.pl
description Illustrates the trust between ops
script twprompt.pl
url https://github.com/irssi/scripts/raw/master/scripts/twprompt.pl
description BitchX's CrackRock3 animated prompt bar.
script twsocials.pl
url https://github.com/irssi/scripts/raw/master/scripts/twsocials.pl
description IRC version of Social Commands
script twtopic.pl
url https://github.com/irssi/scripts/raw/master/scripts/twtopic.pl
description Animated Topic bar.
script upgradeinfo.pl
url https://github.com/irssi/scripts/raw/master/scripts/upgradeinfo.pl
description Statusbar item notifying you about updated binary
script uptime.pl
url https://github.com/irssi/scripts/raw/master/scripts/uptime.pl
description Try a little harder to figure out client uptime
script url_log.pl
url https://github.com/irssi/scripts/raw/master/scripts/url_log.pl
description logs urls to textfile or/and database, able to list, quote, open or `http head` saved urls.
script urlfeed.pl
url https://github.com/irssi/scripts/raw/master/scripts/urlfeed.pl
description Provides RSS feeds with URLs pasted on your channels.
script urlgrab.pl
url https://github.com/irssi/scripts/raw/master/scripts/urlgrab.pl
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.
script urlplot.pl
url https://github.com/irssi/scripts/raw/master/scripts/urlplot.pl
description URL grabber with HTML generation and cmd execution
script urlwindow.pl
url https://github.com/irssi/scripts/raw/master/scripts/urlwindow.pl
description Log all urls from #channels and /msgs in a separate window
script userhost.pl
url https://github.com/irssi/scripts/raw/master/scripts/userhost.pl
description Adds a -cmd option to the /USERHOST builtin command
script users.pl
url https://github.com/irssi/scripts/raw/master/scripts/users.pl
description Implements /USERS
script version-stat.pl
url https://github.com/irssi/scripts/raw/master/scripts/version-stat.pl
description shows top[0-9]+ irc client versions in a channel
script verstats.pl
url https://github.com/irssi/scripts/raw/master/scripts/verstats.pl
description Draws a diagram of the used clients in a channel
script vowels.pl
url https://github.com/irssi/scripts/raw/master/scripts/vowels.pl
description Silly script, removes vowels, idea taken from #linuxnews ;-)
script warnkick.pl
url https://github.com/irssi/scripts/raw/master/scripts/warnkick.pl
description warns you if someone kicks you out of a channel
script washnicks.pl
url https://github.com/irssi/scripts/raw/master/scripts/washnicks.pl
description Removes annoying characters from nicks
script watch.pl
url https://github.com/irssi/scripts/raw/master/scripts/watch.pl
description Uso del comando watch para irssi.
script whitelist.pl
url https://github.com/irssi/scripts/raw/master/scripts/whitelist.pl
description Whitelist specific nicks or hosts and ignore messages from anyone else.
script whois.pl
url https://github.com/irssi/scripts/raw/master/scripts/whois.pl
description Hilights '@' in whois channel reply
script whos.pl
url https://github.com/irssi/scripts/raw/master/scripts/whos.pl
description This script allows you to view all users on a specific server.
script wilm.pl
url https://github.com/irssi/scripts/raw/master/scripts/wilm.pl
description Provides /wilm and /wiilm commands, which do a whois on a person who sent you last private message
script wkb.pl
url https://github.com/irssi/scripts/raw/master/scripts/wkb.pl
description A simple word kickbanner
script wordcompletition.pl
url https://github.com/irssi/scripts/raw/master/scripts/wordcompletition.pl
description Adds words from IRC to your tab-completion list
script wordscramble.pl
url https://github.com/irssi/scripts/raw/master/scripts/wordscramble.pl
description A script that scrambles all the letters in a word except the first and last.
script xauth.pl
url https://github.com/irssi/scripts/raw/master/scripts/xauth.pl
description Undernet X Service Authentication Program
script xcmd.pl
url https://github.com/irssi/scripts/raw/master/scripts/xcmd.pl
description makes Undernet's X commands easier and faster to use
script xdccget.pl
url https://github.com/irssi/scripts/raw/master/scripts/xdccget.pl
description enhanced downloading, queing, searching from XDCC bots
script xlist.pl
url https://github.com/irssi/scripts/raw/master/scripts/xlist.pl
description Better readable listing of channel names
script xmms.pl
url https://github.com/irssi/scripts/raw/master/scripts/xmms.pl
description XMMS-InfoPipe front-end - allow /np [-help] [dest]
script xmms2.pl
url https://github.com/irssi/scripts/raw/master/scripts/xmms2.pl
description Returns XMMS-InfoPipe data
script xmmsinfo.pl
url https://github.com/irssi/scripts/raw/master/scripts/xmmsinfo.pl
description /xmmsinfo to tell what you're currently playing
script xqf.pl
url https://github.com/irssi/scripts/raw/master/scripts/xqf.pl
description automatically sends xqf data to irssi and optionally licq
script ontv.pl
url https://github.com/irssi/scripts/raw/master/scripts/ontv.pl
description turns irssi into a tv program guide
script tvmusor.pl
url https://github.com/irssi/scripts/raw/master/scripts/tvmusor.pl
description asks for the current tv-lineup from http://www.port.hu/
script emaildb1.0.pl
url https://github.com/irssi/scripts/raw/master/scripts/emaildb1.0.pl
description a script for accessing an email mysql database through irc
script freenode_filter.pl
url https://github.com/irssi/scripts/raw/master/scripts/freenode_filter.pl
description This script will filter some Freenode IRCD (Dancer) servernotices.
script noteserve.pl
url https://github.com/irssi/scripts/raw/master/scripts/noteserve.pl
description Utilizes NoteServ to implement a buddylist
script sana_cmd.pl
url https://github.com/irssi/scripts/raw/master/scripts/sana_cmd.pl
description /sana command, translates english-finnish-english.
script seti.pl
url No upstream source.
description Tell ppl how far you've gotten with you SETI\@home workunit.
script bgta.pl
url https://github.com/irssi/scripts/raw/master/scripts/bgta.pl
description Byte's Gallery of the TAilor Script
script cloneprot.pl
url https://github.com/irssi/scripts/raw/master/scripts/cloneprot.pl
description Parses OperServ notices to make autokill aliases from clonewarnings
script dancer_hide_477.pl
url https://github.com/irssi/scripts/raw/master/scripts/dancer_hide_477.pl
description This script hides the 477 numerics from the dancer IRCd.
script identify-md5.pl
url https://github.com/irssi/scripts/raw/master/scripts/identify-md5.pl
description MD5 NickServ identification script for SorceryNet
script mygoogle.pl
url https://github.com/irssi/scripts/raw/master/scripts/mygoogle.pl
description Query Google
script myimdb.pl
url https://github.com/irssi/scripts/raw/master/scripts/myimdb.pl
description Query imdb
script stocks.pl
url https://github.com/irssi/scripts/raw/master/scripts/stocks.pl
description prints the stats for german stocks
script xetra.pl
url https://github.com/irssi/scripts/raw/master/scripts/xetra.pl
description brings the stock exchanges of the world to your irssi
script mkshorterlink.pl
url https://github.com/irssi/scripts/raw/gh-pages/scripts/mkshorterlink.pl
description Automatically filters all http:// links through makeashorterlink.com
script twirssi.pl
url http://raw.github.com/zigdon/twirssi/master/twirssi.pl
description Send twitter updates using /tweet.
script akilluser.pl
url http://raw.github.com/oftc/oftc-tools/master/oper/akilluser.pl
description AKILL a specified nick
script challenge.pl
url http://raw.github.com/oftc/oftc-tools/master/oper/challenge.pl
description Run a challenge response oper thingie
script nickident.pl
url http://raw.github.com/oftc/oftc-tools/master/user/irssi/nickident.pl
description identify to nickserv
script quiet.pl
url http://raw.github.com/oftc/oftc-tools/master/user/irssi/quiet.pl
description This script adds support for +q (quiet user) channel modes to irssi.
script auto_away.pl
url http://raw.github.com/timing/irssi-scripts/master/auto_away.pl
description sets an away message automatically when you're idle
script idlesince.pl
url http://tris.net/irssi/scripts/idlesince.pl
description Adds 'idle since' line to whois replies.
script topic-diff.pl
url http://svn.df7cb.de/dotfiles/cb/.irssi/scripts/topic-diff.pl
description This script shows you changes in the topic.
script phpdoc.pl
url No upstream source.
description Display all functions of the famous language PHP which is used in the funcsummary.txt file in the CVS of http://php.net
script sana.pl
url No upstream source.
description responds to "!sana test" command on channels/publics with a finnish/english translation given as parameter
script url.pl
url No upstream source.
description url.pl grabs URLs in messages and allows you to open them on the fly, or to write them in a HTML file and open that file.
|