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
|
# Diatheke/Tcl 3.0 by Chris Little <chrislit@gotjesus.org>
# Based on code schema of <cking@acy.digex.net>
# Copyright 1999, 2000, 2001 by Chris Little
# Licensed under GNU General Public License (GPL)
# see accompanying LICENSE file for license details
# This script is intended for use with libraries and modules from
# the SWORD Project, available at http://www.crosswire.org/
#
# To install Diatheke/Tcl, install an eggdrop IRC bot, copy the
# Diatheke/Tcl .tcl file to your eggdrop scripts directory, and
# add a line to the end of your bot startup script to load the
# Diatheke/Tcl script. This script has been tested with eggdrop 1.3.23
# but should function fine in later versions.
#
# This is script assumes you have every single SWORD module installed
# that was available at the time of release. Since you probably do not,
# remove all modules listed in the pub_books function that you do not
# have installed to hide them from end-users.
#
# The !history command only works if you have LOGGING turned on in
# diatheke (the command line C program). This command is commented out
# of the help function and must be uncommented to make it show up for
# end-users.
#
# When you get the script loaded, type !biblehelp in a channel where
# the bot is present and it will give you a full list of commands.
# More commands will appear to you depending upon which mode the bot is
# in and whether you are an op on the bot or voiced in the channel.
set diaver 3.0
#modify this to reflect actual location of diatheke and dict binaries
set diatheke "/usr/bin/diatheke"
set dict "/usr/bin/dict"
proc publookupverse {vlookup} {
global botnick chan bibver diatheke
set arg "-b"
set n [string first "@" $vlookup]
if {$n > -1 && $n < 2} {
append arg n
}
set n [string first "#" $vlookup]
if {$n > -1 && $n < 2} {
append arg f
}
set vlookup [string trimleft $vlookup "#"]
set vlookup [string trimleft $vlookup "@"]
set vlookup [string trimleft $vlookup "#"]
catch {exec $diatheke $arg $bibver "$vlookup" 5 >& /tmp/fooout.$botnick}
catch {set foofile [open /tmp/fooout.$botnick]}
while {[gets $foofile fooverse] >= 0} {
set len [string length $fooverse]
set i 0
set j 255
while {$j < $len} {
if {[regexp ">" $fooverse]} {
while {[string index $fooverse $j] != ">" && [string index $fooverse $j] != "\n"} {set j [expr $j - 1]}
} else {
while {[string index $fooverse $j] != " " && [string index $fooverse $j] != "\n"} {set j [expr $j - 1]}
}
set foo2 [string range $fooverse $i $j]
set foo2 [string trim $foo2]
regsub -all -nocase {(<FI>|<CM>|<FB>)} $foo2 {} foo2
regsub -all {<RF>} $foo2 {(footnote: } foo2
regsub -all {<Rf>} $foo2 {)} foo2
putmsg $chan "$foo2"
set i [expr $j + 1]
set j [expr $j + 256]
if {$j > $len} {set j $len}
}
set foo2 [string range $fooverse $i end]
set foo2 [string trim $foo2]
regsub -all -nocase {(<FI>|<CM>|<FB>)} $foo2 {} foo2
regsub -all {<RF>} $foo2 {(footnote: } foo2
regsub -all {<Rf>} $foo2 {)} foo2
putmsg $chan "$foo2"
}
catch {close $foofile}
exec rm /tmp/fooout.$botnick
return 1
}
proc pub_lookup {nick uhost hand channel arg} {
global von chan bibver
set chan $channel
if {$von==0} {
putmsg $nick "Verse display is currently off."
return 0
}
if {($von==2) && (![matchattr $hand 3]) && (![matchattr $hand o])} {
putmsg $nick "Only ops can display verses at this time."
return 0
}
publookupverse $arg
}
bind pub - !kjv setver_kjv
bind pub - !english setver_kjv
proc setver_kjv {nick uhost hand channel arg} {
global botnick chan bibver
set bibver KJV
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !niv setver_niv
proc setver_niv {nick uhost hand channel arg} {
global botnick chan bibver
set bibver NIV
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !dr setver_dr
bind pub - !douayrheims setver_dr
bind pub - !dre setver_dr
proc setver_dr {nick uhost hand channel arg} {
global botnick chan bibver
set bibver DR
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !nas setver_nasb
bind pub - !nasb setver_nasb
proc setver_nasb {nick uhost hand channel arg} {
global botnick chan bibver
set bibver NASB
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !hnv setver_hnv
proc setver_hnv {nick uhost hand channel arg} {
global botnick chan bibver
set bibver HNV
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !web setver_web
proc setver_web {nick uhost hand channel arg} {
global botnick chan bibver
set bibver WEB
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !bbe setver_bbe
proc setver_bbe {nick uhost hand channel arg} {
global botnick chan bibver
set bibver BBE
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !webster setver_webster
proc setver_webster {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Websters
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !jbc setver_jbc
proc setver_jbc {nick uhost hand channel arg} {
global botnick chan bibver
set bibver ORTHJBC
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !rva setver_rva
bind pub - !spanish setver_rva
proc setver_rva {nick uhost hand channel arg} {
global botnick chan bibver
set bibver SpaRVA
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !lsg setver_lsg
bind pub - !french setver_lsg
proc setver_lsg {nick uhost hand channel arg} {
global botnick chan bibver
set bibver FreLSG
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !bis setver_bis
bind pub - !indonesian setver_bis
proc setver_bis {nick uhost hand channel arg} {
global botnick chan bibver
set bibver IndBIS
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !tb setver_tb
proc setver_tb {nick uhost hand channel arg} {
global botnick chan bibver
set bibver IndTB
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !sve setver_sve
bind pub - !swedish setver_sve
proc setver_sve {nick uhost hand channel arg} {
global botnick chan bibver
set bibver SweSve
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !vnt setver_vnt
proc setver_vnt {nick uhost hand channel arg} {
global botnick chan bibver
set bibver SpaVNT
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !asv setver_asv
proc setver_asv {nick uhost hand channel arg} {
global botnick chan bibver
set bibver ASV
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !rsv setver_rsv
proc setver_rsv {nick uhost hand channel arg} {
global botnick chan bibver
set bibver RSV
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !alt setver_alt
proc setver_alt {nick uhost hand channel arg} {
global botnick chan bibver
set bibver ALT
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !dby setver_dby
bind pub - !darby setver_dby
proc setver_dby {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Darby
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !pr setver_pr
bind pub - !finnish setver_pr
proc setver_pr {nick uhost hand channel arg} {
global botnick chan bibver
set bibver FinPR
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !lsg setver_lsg
bind pub - !french setver_lsg
proc setver_lsg {nick uhost hand channel arg} {
global botnick chan bibver
set bibver FreLSG
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !lut setver_lut
bind pub - !luther setver_lut
bind pub - !german setver_lut
proc setver_lut {nick uhost hand channel arg} {
global botnick chan bibver
set bibver GerLut
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !sch setver_sch
proc setver_sch {nick uhost hand channel arg} {
global botnick chan bibver
set bibver GerSch
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !kar setver_kar
bind pub - !hungarian setver_kar
proc setver_kar {nick uhost hand channel arg} {
global botnick chan bibver
set bibver HunKar
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !nrv setver_nrv
bind pub - !italian setver_nrv
proc setver_nrv {nick uhost hand channel arg} {
global botnick chan bibver
set bibver ItaNRV
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !jps setver_jps
proc setver_jps {nick uhost hand channel arg} {
global botnick chan bibver
set bibver JPS
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !brp setver_brp
bind pub - !portuguese setver_brp
proc setver_brp {nick uhost hand channel arg} {
global botnick chan bibver
set bibver PorBRP
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !sev setver_sev
proc setver_sev {nick uhost hand channel arg} {
global botnick chan bibver
set bibver SpaSEV
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !swahili setver_swahili
proc setver_swahili {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Swahili
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !wey setver_wey
bind pub - !weymouth setver_wey
proc setver_wey {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Weymouth
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !ylt setver_ylt
proc setver_ylt {nick uhost hand channel arg} {
global botnick chan bibver
set bibver YLT
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !alb setver_alb
bind pub - !albanian setver_alb
proc setver_alb {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Alb
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !gnpu setver_gnpu
bind pub - !chinese setver_gnpu
proc setver_gnpu {nick uhost hand channel arg} {
global botnick chan bibver
set bibver ChiGNPU
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !dan setver_dan
bind pub - !danish setver_dan
proc setver_dan {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Dan
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !lei setver_lei
bind pub - !dutch setver_lei
proc setver_lei {nick uhost hand channel arg} {
global botnick chan bibver
set bibver DutLEI
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !lu setver_lu
proc setver_lu {nick uhost hand channel arg} {
global botnick chan bibver
set bibver DutLU
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !svv setver_svv
proc setver_svv {nick uhost hand channel arg} {
global botnick chan bibver
set bibver DutSVV
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !shr setver_shr
bind pub - !equadoran setver_shr
proc setver_shr {nick uhost hand channel arg} {
global botnick chan bibver
set bibver EquShr
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !crl setver_crl
bind pub - !creole setver_crl
proc setver_crl {nick uhost hand channel arg} {
global botnick chan bibver
set bibver FreCrl
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !fredrb setver_fredrb
proc setver_fredrb {nick uhost hand channel arg} {
global botnick chan bibver
set bibver FreDrb
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !ben setver_ben
proc setver_ben {nick uhost hand channel arg} {
global botnick chan bibver
set bibver GerBen
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !elb setver_elb
proc setver_elb {nick uhost hand channel arg} {
global botnick chan bibver
set bibver GerElb
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !kj21 setver_kj21
proc setver_kj21 {nick uhost hand channel arg} {
global botnick chan bibver
set bibver KJ21
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !litv setver_litv
proc setver_litv {nick uhost hand channel arg} {
global botnick chan bibver
set bibver LITV
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !lo setver_lo
proc setver_lo {nick uhost hand channel arg} {
global botnick chan bibver
set bibver LO
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !maori setver_maori
proc setver_maori {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Maori
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !mkjv setver_mkjv
proc setver_mkjv {nick uhost hand channel arg} {
global botnick chan bibver
set bibver MKJV
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !nkj setver_nkjv
bind pub - !nkjv setver_nkjv
proc setver_nkjv {nick uhost hand channel arg} {
global botnick chan bibver
set bibver NKJV
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !ceb setver_ceb
bind pub - !filipino setver_ceb
proc setver_ceb {nick uhost hand channel arg} {
global botnick chan bibver
set bibver PhiCeb
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !rwebster setver_rwebster
proc setver_rwebster {nick uhost hand channel arg} {
global botnick chan bibver
set bibver RWebster
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !rv setver_rv
proc setver_rv {nick uhost hand channel arg} {
global botnick chan bibver
set bibver SpaRV
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !turkish setver_turkish
proc setver_turkish {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Turkish
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !uma setver_uma
proc setver_uma {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Uma
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !vulgate setver_vulgate
bind pub - !vulg setver_vulgate
bind pub - !latin setver_vulgate
proc setver_vulgate {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Vulgate
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !nasb95 setver_nasb95
bind pub - !nas95 setver_nasb95
bind pub - !nau setver_nasb95
proc setver_nasb95 {nick uhost hand channel arg} {
global botnick chan bibver
set bibver NASB95
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !nivbr setver_nivbr
bind pub - !nib setver_nivbr
proc setver_nivbr {nick uhost hand channel arg} {
global botnick chan bibver
set bibver NIVBr
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !nlt setver_nlt
proc setver_nlt {nick uhost hand channel arg} {
global botnick chan bibver
set bibver NLT
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !nrsv setver_nrsv
proc setver_nrsv {nick uhost hand channel arg} {
global botnick chan bibver
set bibver NRSV
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !neg setver_neg
proc setver_neg {nick uhost hand channel arg} {
global botnick chan bibver
set bibver FreNEG
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !lnd setver_lnd
proc setver_lnd {nick uhost hand channel arg} {
global botnick chan bibver
set bibver ItaLND
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !mel setver_mel
bind pub - !melanesian setver_mel
proc setver_mel {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Mel
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !norsk setver_norsk
proc setver_norsk {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Norsk
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !cor setver_cor
proc setver_cor {nick uhost hand channel arg} {
global botnick chan bibver
set bibver RomCor
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !lba setver_lba
proc setver_lba {nick uhost hand channel arg} {
global botnick chan bibver
set bibver SpaLBA
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !byz setver_byz
proc setver_byz {nick uhost hand channel arg} {
global botnick chan bibver
set bibver ByzX
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !lxx setver_lxx
proc setver_lxx {nick uhost hand channel arg} {
global botnick chan bibver
set bibver LXXX
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !na26 setver_na26
bind pub - !greek setver_na26
proc setver_na26 {nick uhost hand channel arg} {
global botnick chan bibver
set bibver NA26X
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !scrivner setver_scrivner
proc setver_scrivner {nick uhost hand channel arg} {
global botnick chan bibver
set bibver ScrivnerX
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !stephanus setver_stephanus
proc setver_stephanus {nick uhost hand channel arg} {
global botnick chan bibver
set bibver StephanusX
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !tischendorf setver_tisch
bind pub - !tisch setver_tisch
proc setver_tisch {nick uhost hand channel arg} {
global botnick chan bibver
set bibver TischX
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !wh setver_wh
proc setver_wh {nick uhost hand channel arg} {
global botnick chan bibver
set bibver WHX
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !whnu setver_whnu
proc setver_whnu {nick uhost hand channel arg} {
global botnick chan bibver
set bibver WHNUX
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !grkbyz setver_grkbyz
proc setver_grkbyz {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Byz
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !grklxx setver_grklxx
proc setver_grklxx {nick uhost hand channel arg} {
global botnick chan bibver
set bibver LXX
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !grkna26 setver_grkna26
bind pub - !grkgreek setver_na26
proc setver_grkna26 {nick uhost hand channel arg} {
global botnick chan bibver
set bibver NA26
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !grkscrivner setver_grkscrivner
proc setver_grkscrivner {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Scrivner
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !grkstephanus setver_grkstephanus
proc setver_grkstephanus {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Stephanus
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !grktischendorf setver_grktisch
bind pub - !grktisch setver_grktisch
proc setver_grktisch {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Tisch
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !grkwh setver_grkwh
proc setver_grkwh {nick uhost hand channel arg} {
global botnick chan bibver
set bibver WH
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !grkwhnu setver_grkwhnu
proc setver_grkwhnu {nick uhost hand channel arg} {
global botnick chan bibver
set bibver WHNU
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !bhs setver_bhs
bind pub - !hebrew setver_bhs
proc setver_bhs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver BHS
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !rst setver_rst
proc setver_rst {nick uhost hand channel arg} {
global botnick chan bibver
set bibver RST
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !ukrainian setver_ukrainian
proc setver_ukrainian {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Ukrainian
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !arabic setver_arabic
proc setver_arabic {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Arabic
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !n27u4 setver_n27u4
bind pub - !nu setver_n27u4
bind pub - !bgreek setver_n27u4
proc setver_n27u4 {nick uhost hand channel arg} {
global botnick chan bibver
set bibver N27U4
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !umgreek setver_ukgreek
proc setver_umgreek {nick uhost hand channel arg} {
global botnick chan bibver
set bibver UMGreek
pub_lookup $nick $uhost $hand $channel $arg
}
bind pub - !viet setver_viet
bind pub - !vietnamese setver_viet
proc setver_viet {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Viet
pub_lookup $nick $uhost $hand $channel $arg
}
# ----------------------------------------------------------------------
proc pubsearchword {vlookup} {
global botnick chan bibver diatheke
catch {exec $diatheke -s $bibver "$vlookup" >& /tmp/fooout.$botnick}
catch {set foofile [open /tmp/fooout.$botnick]}
while {[gets $foofile fooverse] >= 0} {
set len [string length $fooverse]
set i 0
set j 72
while {$j < $len} {
while {[string index $fooverse $j] != ";" && [string index $fooverse $j] != ")" && [string index $fooverse $j] != "\n"} {set j [expr $j + 1]}
set foo2 [string range $fooverse $i $j]
set foo2 [string trim $foo2]
putmsg $chan "$foo2"
set i [expr $j + 1]
set j [expr $j + 73]
if {$j > $len} {set j $len}
}
set foo2 [string range $fooverse $i end]
set foo2 [string trim $foo2]
putmsg $chan "$foo2"
}
catch {close $foofile}
putmsg $chan "$fooverse"
exec rm /tmp/fooout.$botnick
return 1
}
proc pub_lookups {nick uhost hand channel arg} {
global von chan bibver
set chan $channel
if {$von==0} {
putmsg $nick "Verse display is currently off."
return 0
}
if {($von==3) && (![matchattr $hand 3]) && (![matchattr $hand o]) && (![isvoice $nick $chan])} {
putmsg $nick "Sorry, only ops and voiced users can do searches right now."
return 0
}
if {($von==2) && (![matchattr $hand 3]) && (![matchattr $hand o])} {
putmsg $nick "Sorry, only ops can do searches right now."
return 0
}
pubsearchword $arg
}
bind pub - !skjv setver_kjvs
bind pub - !senglish setver_kjvs
proc setver_kjvs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver KJV
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sniv setver_nivs
proc setver_nivs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver NIV
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sdr setver_drs
bind pub - !sdouayrheims setver_drs
bind pub - !sdre setver_drs
proc setver_drs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver DR
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !snas setver_nasbs
bind pub - !snasb setver_nasbs
proc setver_nasbs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver NASB
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !shnv setver_hnvs
proc setver_hnvs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver HNV
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sweb setver_webs
proc setver_webs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver WEB
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sbbe setver_bbes
proc setver_bbes {nick uhost hand channel arg} {
global botnick chan bibver
set bibver BBE
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !swebster setver_websters
proc setver_websters {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Websters
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sjbc setver_jbcs
proc setver_jbcs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver ORTHJBC
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !srva setver_rvas
bind pub - !sspanish setver_rvas
proc setver_rvas {nick uhost hand channel arg} {
global botnick chan bibver
set bibver SpaRVA
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sbis setver_biss
bind pub - !sindonesian setver_biss
proc setver_biss {nick uhost hand channel arg} {
global botnick chan bibver
set bibver IndBIS
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !stb setver_tbs
proc setver_tbs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver IndTB
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !ssve setver_sves
bind pub - !sswedish setver_sves
proc setver_sves {nick uhost hand channel arg} {
global botnick chan bibver
set bibver SweSve
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !svnt setver_vnts
proc setver_vnts {nick uhost hand channel arg} {
global botnick chan bibver
set bibver SpaVNT
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sasv setver_asvs
proc setver_asvs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver ASV
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !srsv setver_rsvs
proc setver_rsvs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver RSV
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !salt setver_alts
proc setver_alts {nick uhost hand channel arg} {
global botnick chan bibver
set bibver ALT
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sdby setver_dbys
bind pub - !sdarby setver_dbys
proc setver_dbys {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Darby
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !spr setver_prs
bind pub - !sfinnish setver_prs
proc setver_prs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver FinPR
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !slsg setver_lsgs
bind pub - !sfrench setver_lsgs
proc setver_lsgs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver FreLSG
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !slut setver_luts
bind pub - !sluther setver_luts
bind pub - !sgerman setver_luts
proc setver_luts {nick uhost hand channel arg} {
global botnick chan bibver
set bibver GerLut
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !ssch setver_schs
proc setver_schs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver GerSch
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !skar setver_kars
bind pub - !shungarian setver_kars
proc setver_kars {nick uhost hand channel arg} {
global botnick chan bibver
set bibver HunKar
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !snrv setver_nrvs
bind pub - !sitalian setver_nrvs
proc setver_nrvs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver ItaNRV
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sjps setver_jpss
proc setver_jpss {nick uhost hand channel arg} {
global botnick chan bibver
set bibver JPS
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sbrp setver_brps
bind pub - !sportuguese setver_brps
proc setver_brps {nick uhost hand channel arg} {
global botnick chan bibver
set bibver PorBRP
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !ssev setver_sevs
proc setver_sevs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver SpaSEV
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sswahili setver_swahilis
proc setver_swahilis {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Swahili
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !swey setver_weys
bind pub - !sweymouth setver_weys
proc setver_weys {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Weymouth
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sylt setver_ylts
proc setver_ylts {nick uhost hand channel arg} {
global botnick chan bibver
set bibver YLT
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !salb setver_albs
bind pub - !salbanian setver_albs
proc setver_albs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver ALB
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sgnpu setver_gnpus
bind pub - !schinese setver_gnpus
proc setver_gnpus {nick uhost hand channel arg} {
global botnick chan bibver
set bibver ChiGNPU
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sdan setver_dans
bind pub - !sdanish setver_dans
proc setver_dans {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Dan
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !slei setver_leis
bind pub - !sdutch setver_leis
proc setver_leis {nick uhost hand channel arg} {
global botnick chan bibver
set bibver DutLEI
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !slu setver_lus
proc setver_lus {nick uhost hand channel arg} {
global botnick chan bibver
set bibver DutLU
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !ssvv setver_svvs
proc setver_svvs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver DutSVV
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sshr setver_shrs
bind pub - !sequadoran setver_shrs
proc setver_shrs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver EquShr
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !scrl setver_crls
bind pub - !screole setver_crls
proc setver_crls {nick uhost hand channel arg} {
global botnick chan bibver
set bibver FreCrl
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sfredrb setver_fredrbs
proc setver_fredrbs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver FreDrb
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sben setver_bens
proc setver_bens {nick uhost hand channel arg} {
global botnick chan bibver
set bibver BerBen
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !selb setver_elbs
proc setver_elbs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver GerElb
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !skj21 setver_kj21s
proc setver_kj21s {nick uhost hand channel arg} {
global botnick chan bibver
set bibver KJ21
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !slitv setver_litvs
proc setver_litvs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver LITV
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !slo setver_los
proc setver_los {nick uhost hand channel arg} {
global botnick chan bibver
set bibver LO
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !smaori setver_maoris
proc setver_maoris {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Mao
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !smkjv setver_mkjvs
proc setver_mkjvs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver MKJV
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !snkjv setver_nkjvs
proc setver_nkjvs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver NKJV
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sceb setver_cebs
bind pub - !sfilipino setver_cebs
proc setver_cebs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver PhiCeb
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !srwebster setver_rwebsters
proc setver_rwebsters {nick uhost hand channel arg} {
global botnick chan bibver
set bibver RWebster
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !srv setver_rvs
proc setver_rvs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver SpaRV
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sturkish setver_turkishs
proc setver_turkishs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Turkish
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !suma setver_umas
proc setver_umas {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Uma
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !svulgate setver_vulgates
bind pub - !svulg setver_vulgates
bind pub - !slatin setver_vulgates
proc setver_vulgates {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Vulgate
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !snasb95 setver_nasb95s
bind pub - !snas95 setver_nasb95s
bind pub - !snau setver_nasb95s
proc setver_nasb95s {nick uhost hand channel arg} {
global botnick chan bibver
set bibver NASB95
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !snivbr setver_nivbrs
bind pub - !snib setver_nivbrs
proc setver_nivbrs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver NIVBr
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !snlt setver_nlts
proc setver_nlts {nick uhost hand channel arg} {
global botnick chan bibver
set bibver NLT
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !snrsv setver_nrsvs
proc setver_nrsvs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver NRSV
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sneg setver_negs
proc setver_negs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver FreNEG
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !slnd setver_lnds
proc setver_lnds {nick uhost hand channel arg} {
global botnick chan bibver
set bibver ItaLND
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !smel setver_mels
bind pub - !smelanesian setver_mels
proc setver_mels {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Mel
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !snorsk setver_norsks
proc setver_norsks {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Norsk
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !scor setver_cors
proc setver_cors {nick uhost hand channel arg} {
global botnick chan bibver
set bibver RomCor
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !slba setver_lbas
proc setver_lbas {nick uhost hand channel arg} {
global botnick chan bibver
set bibver SpaLBA
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sbyz setver_byzs
proc setver_byzs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver ByzX
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !slxx setver_lxxs
proc setver_lxxs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver LXXX
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sna26 setver_na26s
bind pub - !sgreek setver_na26s
proc setver_na26s {nick uhost hand channel arg} {
global botnick chan bibver
set bibver NA26X
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sscrivner setver_scrivners
proc setver_scrivners {nick uhost hand channel arg} {
global botnick chan bibver
set bibver ScrivnerX
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sstephanus setver_stephanuss
proc setver_stephanuss {nick uhost hand channel arg} {
global botnick chan bibver
set bibver StephanusX
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !stischendorf setver_tischs
bind pub - !stisch setver_tischs
proc setver_tischs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver TischX
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !swh setver_whs
proc setver_whs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver WHX
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !swhnu setver_whnus
proc setver_whnus {nick uhost hand channel arg} {
global botnick chan bibver
set bibver WHNUX
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sgrkbyz setver_grkbyzs
proc setver_grkbyzs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Byz
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sgrklxx setver_grklxxs
proc setver_grklxxs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver LXX
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sgrkna26 setver_grkna26s
bind pub - !sgrkgreek setver_na26s
proc setver_grkna26s {nick uhost hand channel arg} {
global botnick chan bibver
set bibver NA26
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sgrkscrivner setver_grkscrivners
proc setver_grkscrivners {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Scrivner
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sgrkstephanus setver_grkstephanuss
proc setver_grkstephanuss {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Stephanus
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sgrktischendorf setver_grktischs
bind pub - !sgrktisch setver_grktischs
proc setver_grktischs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Tisch
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sgrkwh setver_grkwhs
proc setver_grkwhs {nick uhost hand channel arg} {
global botnick chan bibver
set bibver WH
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sgrkwhnu setver_grkwhnus
proc setver_grkwhnus {nick uhost hand channel arg} {
global botnick chan bibver
set bibver WHNU
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sbhs setver_bhss
bind pub - !shebrew setver_bhss
proc setver_bhss {nick uhost hand channel arg} {
global botnick chan bibver
set bibver BHS
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !srst setver_rsts
proc setver_rsts {nick uhost hand channel arg} {
global botnick chan bibver
set bibver RST
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sukrainian setver_ukrainians
proc setver_ukrainians {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Ukrainian
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sarabic setver_arabics
proc setver_arabics {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Arabic
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sn27u4 setver_n27u4s
bind pub - !snu setver_n27u4s
bind pub - !sbgreek setver_n27u4s
proc setver_n27u4s {nick uhost hand channel arg} {
global botnick chan bibver
set bibver N27U4
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sumgreek setver_ukgreeks
proc setver_umgreeks {nick uhost hand channel arg} {
global botnick chan bibver
set bibver UMGreek
pub_lookups $nick $uhost $hand $channel $arg
}
bind pub - !sviet setver_viets
bind pub - !svietnamese setver_viets
proc setver_viets {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Viet
pub_lookups $nick $uhost $hand $channel $arg
}
#----------------------------------------------------------------------
proc publookupdict {vlookup} {
global botnick chan bibver diatheke
catch {exec $diatheke -d $bibver "$vlookup" >& /tmp/fooout.$botnick}
catch {set foofile [open /tmp/fooout.$botnick]}
while {[gets $foofile fooverse] >= 0} {
putmsg $chan "$fooverse"
}
catch {close $foofile}
# exec rm /tmp/fooout.$botnick
return 1
}
proc pub_lookupd {nick uhost hand channel arg} {
global von chan bibver
set chan $channel
if {$von==0} {
putmsg $nick "Verse display is currently off."
return 0
}
if {($von==3) && (![matchattr $hand 3]) && (![matchattr $hand o]) && (![isvoice $nick $chan])} {
putmsg $nick "Sorry, only ops and voiced users can use dictionaries and indices right now."
return 0
}
if {($von==2) && (![matchattr $hand 3]) && (![matchattr $hand o])} {
putmsg $nick "Sorry, only ops can use dictionaries and indices right now."
return 0
}
publookupdict $arg
}
bind pub - !losung setver_losung
proc setver_losung {nick uhost hand channel arg} {
global botnick chan bibver
set bibver losung_en_99
set arg [exec date "+%m.%d"]
pub_lookupd $nick $uhost $hand $channel $arg
}
bind pub - !vines setver_vines
proc setver_vines {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Vines
pub_lookupd $nick $uhost $hand $channel $arg
}
bind pub - !naves setver_naves
proc setver_naves {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Naves
pub_lookupd $nick $uhost $hand $channel $arg
}
bind pub - !eastons setver_eastons
proc setver_eastons {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Eastons
pub_lookupd $nick $uhost $hand $channel $arg
}
bind pub - !strheb setver_strheb
proc setver_strheb {nick uhost hand channel arg} {
global botnick chan bibver
set bibver StrongsHebrew
pub_lookupd $nick $uhost $hand $channel $arg
}
bind pub - !strgrk setver_strgrk
proc setver_strgrk {nick uhost hand channel arg} {
global botnick chan bibver
set bibver StrongsGreek
pub_lookupd $nick $uhost $hand $channel $arg
}
bind pub - !bdb setver_bdb
proc setver_bdb {nick uhost hand channel arg} {
global botnick chan bibver
set bibver BDB
pub_lookupd $nick $uhost $hand $channel $arg
}
bind pub - !thayer setver_thayer
proc setver_thayer {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Thayer
pub_lookupd $nick $uhost $hand $channel $arg
}
bind pub - !hitch setver_hitch
proc setver_hitch {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Hitch
pub_lookupd $nick $uhost $hand $channel $arg
}
bind pub - !isbe setver_isbe
proc setver_isbe {nick uhost hand channel arg} {
global botnick chan bibver
set bibver ISBE
pub_lookupd $nick $uhost $hand $channel $arg
}
bind pub - !smiths setver_smiths
proc setver_smiths {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Smiths
pub_lookupd $nick $uhost $hand $channel $arg
}
bind pub - !torrey setver_torrey
proc setver_torrey {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Torrey
pub_lookupd $nick $uhost $hand $channel $arg
}
#----------------------------------------------------------------------
proc publookupcomm {vlookup} {
global botnick chan bibver diatheke
catch {exec $diatheke -c $bibver "$vlookup" >& /tmp/fooout.$botnick}
catch {set foofile [open /tmp/fooout.$botnick]}
while {[gets $foofile fooverse] >= 0} {
set len [string length $fooverse]
set i 0
set j 72
while {$j < $len} {
while {[string index $fooverse $j] != " " && [string index $fooverse $j] != "\n"} {set j [expr $j + 1]}
set foo2 [string range $fooverse $i $j]
set foo2 [string trim $foo2]
regsub -all -nocase {(<FI>|<CM>|<FB>)} $foo2 {} foo2
regsub -all {<RF>} $foo2 {(footnote: } foo2
regsub -all {<Rf>} $foo2 {)} foo2
putmsg $chan "$foo2"
set i [expr $j + 1]
set j [expr $j + 73]
if {$j > $len} {set j $len}
}
set foo2 [string range $fooverse $i end]
set foo2 [string trim $foo2]
regsub -all -nocase {(<FI>|<CM>|<FB>)} $foo2 {} foo2
regsub -all {<RF>} $foo2 {(footnote: } foo2
regsub -all {<Rf>} $foo2 {)} foo2
putmsg $chan "$foo2"
}
catch {close $foofile}
exec rm /tmp/fooout.$botnick
return 1
}
proc pub_lookupc {nick uhost hand channel arg} {
global von chan bibver
set chan $channel
if {$von==0} {
putmsg $nick "Verse display is currently off."
return 0
}
if {($von==3) && (![matchattr $hand 3]) && (![matchattr $hand o]) && (![isvoice $nick $chan])} {
putmsg $nick "Sorry, only ops and voiced users can use commentaries right now."
return 0
}
if {($von==2) && (![matchattr $hand 3]) && (![matchattr $hand o])} {
putmsg $nick "Sorry, only ops can use commentaries right now."
return 0
}
publookupcomm $arg
}
bind pub - !rwp setver_rwp
proc setver_rwp {nick uhost hand channel arg} {
global botnick chan bibver
set bibver RWP
pub_lookupc $nick $uhost $hand $channel $arg
}
bind pub - !mhc setver_mhc
proc setver_mhc {nick uhost hand channel arg} {
global botnick chan bibver
set bibver MHC
pub_lookupc $nick $uhost $hand $channel $arg
}
bind pub - !dtn setver_dtn
proc setver_dtn {nick uhost hand channel arg} {
global botnick chan bibver
set bibver DTN
pub_lookupc $nick $uhost $hand $channel $arg
}
bind pub - !family setver_family
proc setver_family {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Family
pub_lookupc $nick $uhost $hand $channel $arg
}
bind pub - !geneva setver_geneva
proc setver_geneva {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Geneva
pub_lookupc $nick $uhost $hand $channel $arg
}
bind pub - !gill setver_gill
proc setver_gill {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Gill
pub_lookupc $nick $uhost $hand $channel $arg
}
bind pub - !pnt setver_pnt
proc setver_pnt {nick uhost hand channel arg} {
global botnick chan bibver
set bibver PNT
pub_lookupc $nick $uhost $hand $channel $arg
}
bind pub - !tfg setver_tfg
proc setver_tfg {nick uhost hand channel arg} {
global botnick chan bibver
set bibver TFG
pub_lookupc $nick $uhost $hand $channel $arg
}
bind pub - !tsk setver_tsk
proc setver_tsk {nick uhost hand channel arg} {
global botnick chan bibver
set bibver TSK
pub_lookupc $nick $uhost $hand $channel $arg
}
bind pub - !wesley setver_wesley
proc setver_wesley {nick uhost hand channel arg} {
global botnick chan bibver
set bibver Wesley
pub_lookupc $nick $uhost $hand $channel $arg
}
#----------------------------------------------------------------------
bind pub - !dict dictlookup
proc dictlookup {nick uhost hand channel arg} {
global botnick von dict
if {$von==0} {
putmsg $nick "Verse display is currently off."
return 0
}
if {($von==3) && (![matchattr $hand 3]) && (![matchattr $hand o]) && (![isvoice $nick $channel])} {
putmsg $nick "Sorry, only ops and voiced users can use dictionaries and indices right now."
return 0
}
if {($von==2) && (![matchattr $hand 3]) && (![matchattr $hand o])} {
putmsg $nick "Only ops can use dictionaries and indices right now."
return 0
}
catch {exec $dict "$arg" >& /tmp/fooout.$botnick}
catch {set foofile [open /tmp/fooout.$botnick]}
catch {set fooverse [gets $foofile]}
while {[gets $foofile fooverse] >= 0} {
set fooverse [string trim $fooverse]
putmsg $channel "$fooverse"
}
catch {close $foofile}
exec rm /tmp/fooout.$botnick
return 1
}
#----------------------------------------------------------------------
bind pub - !biblehelp pub_help
bind msg - biblehelp pub_help
proc pub_help {nick uhost hand channel arg} {
global diaver
global von
putserv "NOTICE $nick :Diatheke/Tcl BibleBot version $diaver"
if {(($von==0) || ($von==2)) && (![matchattr $hand 3]) && (![matchattr $hand o])} {
putserv "NOTICE $nick :BibleBot displays are currently turned off."
return 1
}
putserv "NOTICE $nick :Supported commands:"
putserv "NOTICE $nick :Help, using \"!biblehelp\""
putserv "NOTICE $nick :Book list, using \"!books\" (it's long)"
# Uncomment the next line if you have turned LOGGING on in diatheke to enable
# the history function.
# putserv "NOTICE $nick :See last 5 calls to BibleBot, using \"!history\""
putserv "NOTICE $nick :Check display status, using \"!status\""
putserv "NOTICE $nick :Bible lookups, using \"!<bible version> <book> <chapter>:<verse>\""
putserv "NOTICE $nick :verse ranges can be specified by adding \"-<last verse>\" to this"
putserv "NOTICE $nick :To turn Strong's numbers and/or footnotes on, use @ and/or # respectively before the book name. For example \"!kjv @#Gen 1:4\" will retrieve Genesis 1:3 with the Strong's numbers and footnotes associated with it."
if {($von==3) && (![matchattr $hand 3]) && (![matchattr $hand o]) && (![isvoice $nick $channel])} {
return 1
}
putserv "NOTICE $nick :Commentary lookups, using \"!<commentary> <book> <chapter>:<verse>\""
putserv "NOTICE $nick :Dictionary/index lookups, using \"!<dictionary> <word or number>\""
putserv "NOTICE $nick :Bible searches, using \"!s<bible version> <word>\""
putserv "NOTICE $nick :Diatheke/Tcl defaults to PHRASE search mode. To use MULTI-WORD search mode, preface your search with an @. To use REGEX mode, preface your search with a #. For example: \"!skjv @Jesus love\" will print a list of all verses in the KJV containing the words Jesus and love."
if {(![matchattr $hand 3]) && (![matchattr $hand o])} {
return 1
}
putserv "NOTICE $nick :To turn verse display off, use \"!verseoff\""
putserv "NOTICE $nick :To turn all displays on for all users, use \"!verseon\""
putserv "NOTICE $nick :To turn all displays on for ops only, use \"!verseon o\""
putserv "NOTICE $nick :To turn verse diaplays on for regular users and all other displays on for ops and voiced users only, use \"!verseon v\" (default)"
}
bind pub - !books pub_books
bind msg - books pub_books
proc pub_books {nick uhost hand channel arg} {
global von
if {(($von==0) || ($von==2)) && (![matchattr $hand 3]) && (![matchattr $hand o])} {
putserv "NOTICE $nick :BibleBot displays are currently turned off."
return 1
}
putserv "NOTICE $nick :English language Bibles (26):"
putserv "NOTICE $nick :Ameican Standard Version (!asv), Analytical Literal Translation (!alt), Bible in Basic English (!bbe), Darby (!dby), Douay-Rheims Bible (!dr), Green's Literal Translation (!litv), Green's Modern King James Version (!mkjv), Hebrew Names Version (!hnv), Jewish Publication Society 1917 (!jps), King James Version (!kjv), The Living Oracles NT (!lo),"
putserv "NOTICE $nick :New American Standard Bible (!nasb), New American Standard Bible, 95 Update (!nasb95), New International Version (!niv), New Internation Version, British Edition (!nivbr), New King James Version (!nkjv), New Living Translation (!nlt), New Revised Standard Version (!nrsv), Orthodox Jewish Brit ChadashaNT only (!jbc),"
putserv "NOTICE $nick :Revised Standard Version (!rsv), Revised 1833 Webster's (!rwebster), World English Bible (!web), Webster's (!webster), Weymouth NT (!wey), Young's Literal Translation (!ylt), 21st Century King James Version (!kj21)"
putserv "NOTICE $nick :Non-English language Bibles (39):"
putserv "NOTICE $nick :Albanian Bible (!alb), Chinese GNPU (!gnpu), Danish Bible (!dan), Dutch Leidse Vertaling (!lei), Dutch Lutherse Vertaling (!lu), Dutch Statemvertaling (!svv), Equadoran Shuar NT (!shr), Filipino Nga Cebuano (!ceb), Finnish Pyhz Raamattu (!pr), French Louis Segond Version (!lsg), French Haitian Creole Version (!crl), French Darby's Version (!fredrb),"
putserv "NOTICE $nick :French Nouvelle Edition de Geneve (!neg), German Luther Version (!lut), German Schlachter (!sch), German Bengel NT (!ben), German Elberfelder Version (!elb), Hungarian Karoli (!kar), Indonesian Bahasa Indonesia Sehari-hari (!bis), Indonesian Terjemahan Baru (!tb), Italian La Nouva Diodati (!lnd), Italian La Sacra Bibbia Nuova Riveduta (!nrv),"
putserv "NOTICE $nick :Maori Bible (!maori), Melanesian Pidgin Bible (!mel), Norsk Bible (!norsk), Portuguese A Biblia Sagrada Traduzida em Portugues (!brp), Spanish La Biblia de Las Americas (!lba), Spanish Reina-Valera Actualizada (!rva), Spanish Reina-Valera (!rv), Spanish Sagradas Escrituras (!sev), Spanish Valera NT only (!vnt), Swahili NT (!swahili),"
putserv "NOTICE $nick :Swedish 1917 Bible NT only (!sve), Turkish NT (!turkish), Uma NT (!uma)"
putserv "NOTICE $nick :Original Language Bibles (18): (NB, /'s divide transliterated/non-roman versions)"
putserv "NOTICE $nick :1991 Byzantine/Majority Text (!byz/!grkbyz), Nestle-Aland 26th/27th Ed. (!na26/!grkna26), 1894 Scrivner Textus Receptus (!scrivner/!grkscrivner), 1550 Stephanus Textus Receptus (!stephanus/!grkstephanus), Tischendorf' 8th Ed. GNT (!tisch/!grktisch), 1881 Westcott-Hort GNT (!wh/!grkwh), 1881 Westcott-Hort with NA26 alternate readings (!whnu/!grkwhnu)"
putserv "NOTICE $nick: Nestle-Aland 27th Ed./UBS 4th Ed. (!n27u4), Septuagint/LXX (!lxx/!grklxx), Biblia Hebraica Stuttgartensia in Hebrew font (!bhs), Jerome's Latin Vulgate (!vulg)"
putserv "NOTICE $nick :Non-Roman character Bibles (5):"
putserv "NOTICE $nick :Arabic Bible (!arabic), Russian Synodal Translation (!rst), Ukrainian Bible (!ukrainian), Unaccented Modern Greek Bible (!umgreek), Vietnamese Bible (!viet)"
if {($von==3) && (![matchattr $hand 3]) && (![matchattr $hand o]) && (![isvoice $nick $channel])} {
return 1
}
putserv "NOTICE $nick :Dictionaries & Indices (12):"
putserv "NOTICE $nick :Webster's Dictionary (!dict), Vine's Bible Dictionary(!vines), Easton's Bible Dictionary (!eastons), Nave's Topical Bible (!naves), Smith's Bible Dictionary (!smiths), Hitchcock's Bible Names Dictionary (!hitch), International Standard Bible Dictionary (!isbe), Torrey's New Topical Textbook (!torrey), Strong's Hebrew Bible Dictionary (!strheb), Strong's Greek Bible Dictionary (!strgrk), Brown-Driver-Briggs Hebrew Lexicon (!bdb), Thayer's Greek Lexicon (!thayer)"
putserv "NOTICE $nick :Commentaries (10):"
putserv "NOTICE $nick :Darby's Translation Notes (!dtn), Family Bible Notes (!family), Geneva Bible Translation Notes (!geneva), John Gill's Expositor (!gill), Matthew Henry's Concise (!mhc), The People's New Testament (!pnt), Robertson's Word Pictures (!rwp), The Fourfold Gospel (!tfg), Treasury of Scriptural Knowledge (!tsk), Wesley's Bible Notes (!wesley)"
}
#----------------------------------------------------------------------
bind pub - !status pub_status
bind msg - status pub_status
proc pub_status {nick uhost hand channel arg} {
global von
if {$von==0} {
putserv "NOTICE $nick :All BibleBot displays are currently off."
} elseif {$von==1} {
putserv "NOTICE $nick :All BibleBot displays are currently on."
} elseif {$von==2} {
putserv "NOTICE $nick :All BibleBot displays are currently on for ops only."
} else {
putserv "NOTICE $nick :Verse displays are currently on for all users, but other BibleBot displays are currently restricted to ops and voiced users."
}
return 1
}
bind pub - !history pub_hist
bind msg - history pub_hist
proc pub_hist {nick uhost hand channel arg} {
global botnick
catch {exec tail -n 5 /var/log/diatheke.log >& /tmp/fooout.$botnick}
catch {set foofile [open /tmp/fooout.$botnick]}
catch {set fooverse [gets $foofile]}
putserv "NOTICE $nick :Last 5 calls to Diatheke/Tcl BibleBot"
putserv "NOTICE $nick :$fooverse"
while {[gets $foofile fooverse] >= 0} {
putserv "NOTICE $nick :$fooverse"
}
catch {close $foofile}
exec rm /tmp/fooout.$botnick
return 1
}
#---------------------------------------------------------------------
proc pub_verseon {nick uhost hand channel arg} {
global von
if {![matchattr $hand 3] && ![matchattr $hand o]} {
return 0
} elseif {$arg=="v"} {
set von 3
# putserv "NOTICE $nick :Long Text Display is now on for voiced only!"
} elseif {$arg=="o"} {
set von 2
# putserv "NOTICE $nick :Verse Display is now on for ops only!"
} else {
set von 1
# putserv "NOTICE $nick :All Display is now on!"
}
pub_status $nick $uhost $hand $channel $arg
return 1
}
bind pub - !verseon pub_verseon
bind msg - verseon pub_verseon
proc pub_verseoff {nick uhost hand channel arg} {
global von
if {![matchattr $hand 3] && ![matchattr $hand o]} {
return 0
}
set von 0
# putserv "NOTICE $nick :Verse Display is now off!"
pub_status $nick $uhost $hand $channel $arg
return 1
}
bind pub - !verseoff pub_verseoff
bind msg - verseoff pub_verseoff
proc dcc_verseoff {hand idx arg} {
global von
global whovoff
if {![matchattr $hand 3] && ![matchattr $hand o]} {
return 0
}
set von 0
set whovoff $hand
return 1
}
bind dcc - verseoff dcc_verseoff
proc dcc_verseon {hand idx arg} {
global von
if {![matchattr $hand 3] && ![matchattr $hand o]} {
return 0
}
elseif {$arg=="v"} {
set von 3
}
elseif {$arg=="o"} {
set von 2
} else {
set von 1
}
return 1
}
bind dcc - verseon dcc_verseon
#sets default von mode
set von 3
|