summaryrefslogblamecommitdiff
path: root/main.log
blob: fb6f17cd784967e934ead80875c14fedffe0b45d (plain) (tree)
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
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




















































































































































































                                                                                                                                                                                                                             













































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                                                                                                                                                                                                                                                                                                                            





































































































































































































































































































































                                                                                                                                                                                                                                                                                                                                   







































































































































































































































































































































































                                                                                                                                                                    


























































                                                                                                                                                                    












































































































































































































































































































































































                                                                                                                                                                                                                                                   
 
[2020-04-06 14:55:33] Loaded itemdb from itemdb.txt

[2020-04-06 14:55:33] Plugin chatbot loaded

[2020-04-06 14:55:33] Plugin shop loaded

[2020-04-06 14:55:33] Plugin npc loaded

[2020-04-06 14:55:33] Plugin autofollow loaded

[2020-04-06 14:55:34] Plugin manaboy loaded

[2020-04-06 14:56:04] Loaded itemdb from itemdb.txt

[2020-04-06 14:56:04] Plugin chatbot loaded

[2020-04-06 14:56:04] Plugin shop loaded

[2020-04-06 14:56:04] Plugin npc loaded

[2020-04-06 14:56:04] Plugin autofollow loaded

[2020-04-06 14:56:04] Plugin manaboy loaded

[2020-04-06 14:56:43] Loaded itemdb from itemdb.txt

[2020-04-06 14:56:43] Plugin chatbot loaded

[2020-04-06 14:56:43] Plugin shop loaded

[2020-04-06 14:56:43] Plugin npc loaded

[2020-04-06 14:56:43] Plugin autofollow loaded

[2020-04-06 14:56:43] Plugin manaboy loaded

[2020-04-06 14:57:44] Loaded itemdb from itemdb.txt

[2020-04-06 14:57:44] Plugin chatbot loaded

[2020-04-06 14:57:44] Plugin shop loaded

[2020-04-06 14:57:44] Plugin npc loaded

[2020-04-06 14:57:44] Plugin autofollow loaded

[2020-04-06 14:57:44] Plugin manaboy loaded

[2020-04-06 14:58:44] Loaded itemdb from itemdb.txt

[2020-04-06 14:58:44] Plugin chatbot loaded

[2020-04-06 14:58:44] Plugin shop loaded

[2020-04-06 14:58:44] Plugin npc loaded

[2020-04-06 14:58:44] Plugin autofollow loaded

[2020-04-06 14:58:44] Plugin manaboy loaded

[2020-04-06 14:59:44] Loaded itemdb from itemdb.txt

[2020-04-06 14:59:44] Plugin chatbot loaded

[2020-04-06 14:59:44] Plugin shop loaded

[2020-04-06 14:59:44] Plugin npc loaded

[2020-04-06 14:59:44] Plugin autofollow loaded

[2020-04-06 14:59:44] Plugin manaboy loaded

[2020-04-06 15:00:44] Loaded itemdb from itemdb.txt

[2020-04-06 15:00:44] Plugin chatbot loaded

[2020-04-06 15:00:44] Plugin shop loaded

[2020-04-06 15:00:44] Plugin npc loaded

[2020-04-06 15:00:44] Plugin autofollow loaded

[2020-04-06 15:00:44] Plugin manaboy loaded

[2020-04-06 15:01:44] Loaded itemdb from itemdb.txt

[2020-04-06 15:01:44] Plugin chatbot loaded

[2020-04-06 15:01:44] Plugin shop loaded

[2020-04-06 15:01:44] Plugin npc loaded

[2020-04-06 15:01:44] Plugin autofollow loaded

[2020-04-06 15:01:44] Plugin manaboy loaded

[2020-04-06 15:02:44] Loaded itemdb from itemdb.txt

[2020-04-06 15:02:44] Plugin chatbot loaded

[2020-04-06 15:02:44] Plugin shop loaded

[2020-04-06 15:02:44] Plugin npc loaded

[2020-04-06 15:02:44] Plugin autofollow loaded

[2020-04-06 15:02:44] Plugin manaboy loaded

[2020-04-06 15:03:45] Loaded itemdb from itemdb.txt

[2020-04-06 15:03:45] Plugin chatbot loaded

[2020-04-06 15:03:45] Plugin shop loaded

[2020-04-06 15:03:45] Plugin npc loaded

[2020-04-06 15:03:45] Plugin autofollow loaded

[2020-04-06 15:03:45] Plugin manaboy loaded

[2020-04-06 15:04:42] Loaded itemdb from itemdb.txt

[2020-04-06 15:04:42] Plugin chatbot loaded

[2020-04-06 15:04:42] Plugin shop loaded

[2020-04-06 15:04:42] Plugin npc loaded

[2020-04-06 15:04:42] Plugin autofollow loaded

[2020-04-06 15:04:42] Plugin manaboy loaded

[2020-04-06 15:08:52] Loaded itemdb from itemdb.txt

[2020-04-06 15:08:52] Plugin chatbot loaded

[2020-04-06 15:08:52] Plugin shop loaded

[2020-04-06 15:08:52] Plugin npc loaded

[2020-04-06 15:08:52] Plugin autofollow loaded

[2020-04-06 15:08:52] Plugin manaboy loaded

[2020-04-06 15:09:59] Loaded itemdb from itemdb.txt

[2020-04-06 15:09:59] Plugin chatbot loaded

[2020-04-06 15:09:59] Plugin shop loaded

[2020-04-06 15:09:59] Plugin npc loaded

[2020-04-06 15:09:59] Plugin autofollow loaded

[2020-04-06 15:09:59] Plugin manaboy loaded

[2020-04-06 15:10:28] Loaded itemdb from itemdb.txt

[2020-04-06 15:10:28] Plugin chatbot loaded

[2020-04-06 15:10:28] Plugin shop loaded

[2020-04-06 15:10:28] Plugin npc loaded

[2020-04-06 15:10:28] Plugin autofollow loaded

[2020-04-06 15:10:28] Plugin manaboy loaded

[2020-04-06 15:12:09] Loaded itemdb from itemdb.txt

[2020-04-06 15:12:09] Plugin chatbot loaded

[2020-04-06 15:12:09] Plugin shop loaded

[2020-04-06 15:12:09] Plugin npc loaded

[2020-04-06 15:12:09] Plugin autofollow loaded

[2020-04-06 15:12:09] Plugin manaboy loaded

[2020-04-06 15:12:51] Loaded itemdb from itemdb.txt

[2020-04-06 15:12:51] Plugin chatbot loaded

[2020-04-06 15:12:51] Plugin shop loaded

[2020-04-06 15:12:51] Plugin npc loaded

[2020-04-06 15:12:51] Plugin autofollow loaded

[2020-04-06 15:12:51] Plugin manaboy loaded

[2020-04-06 15:15:26] Loaded itemdb from itemdb.txt

[2020-04-06 15:15:26] Plugin chatbot loaded

[2020-04-06 15:15:26] Plugin shop loaded

[2020-04-06 15:15:26] Plugin npc loaded

[2020-04-06 15:15:26] Plugin autofollow loaded

[2020-04-06 15:15:26] Plugin manaboy loaded

[2020-04-06 15:16:57] Loaded itemdb from itemdb.txt

[2020-04-06 15:16:57] Plugin chatbot loaded

[2020-04-06 15:16:57] Plugin shop loaded

[2020-04-06 15:16:57] Plugin npc loaded

[2020-04-06 15:16:57] Plugin autofollow loaded

[2020-04-06 15:16:57] Plugin manaboy loaded

[2020-04-06 15:17:43] Loaded itemdb from itemdb.txt

[2020-04-06 15:17:43] Plugin chatbot loaded

[2020-04-06 15:17:43] Plugin shop loaded

[2020-04-06 15:17:43] Plugin npc loaded

[2020-04-06 15:17:43] Plugin autofollow loaded

[2020-04-06 15:17:43] Plugin manaboy loaded

[2020-04-06 15:18:21] Loaded itemdb from itemdb.txt

[2020-04-06 15:18:21] Plugin chatbot loaded

[2020-04-06 15:18:21] Plugin shop loaded

[2020-04-06 15:18:21] Plugin npc loaded

[2020-04-06 15:18:21] Plugin autofollow loaded

[2020-04-06 15:18:21] Plugin manaboy loaded

[2020-04-06 15:18:47] Loaded itemdb from itemdb.txt

[2020-04-06 15:18:47] Plugin chatbot loaded

[2020-04-06 15:18:47] Plugin shop loaded

[2020-04-06 15:18:47] Plugin npc loaded

[2020-04-06 15:18:47] Plugin autofollow loaded

[2020-04-06 15:18:47] Plugin manaboy loaded

[2020-04-06 15:19:11] Loaded itemdb from itemdb.txt

[2020-04-06 15:19:11] Plugin chatbot loaded

[2020-04-06 15:19:11] Plugin shop loaded

[2020-04-06 15:19:11] Plugin npc loaded

[2020-04-06 15:19:11] Plugin autofollow loaded

[2020-04-06 15:19:11] Plugin manaboy loaded

[2020-04-06 15:19:14] Loaded itemdb from itemdb.txt

[2020-04-06 15:19:14] Plugin chatbot loaded

[2020-04-06 15:19:14] Plugin shop loaded

[2020-04-06 15:19:14] Plugin npc loaded

[2020-04-06 15:19:14] Plugin autofollow loaded

[2020-04-06 15:19:14] Plugin manaboy loaded

[2020-04-06 15:19:57] Loaded itemdb from itemdb.txt

[2020-04-06 15:19:57] Plugin chatbot loaded

[2020-04-06 15:19:57] Plugin shop loaded

[2020-04-06 15:19:57] Plugin npc loaded

[2020-04-06 15:19:57] Plugin autofollow loaded

[2020-04-06 15:19:57] Plugin manaboy loaded

[2020-04-06 15:28:25] Loaded itemdb from itemdb.txt

[2020-04-06 15:28:25] Plugin chatbot loaded

[2020-04-06 15:28:25] Plugin shop loaded

[2020-04-06 15:28:25] Plugin npc loaded

[2020-04-06 15:28:25] Plugin autofollow loaded

[2020-04-06 15:28:25] Plugin manaboy loaded

[2020-04-06 15:28:25] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 15:28:25] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 15:28:25] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 15:28:25] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 15:28:25] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 15:28:25] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 15:28:36] jak1 : jak1@GLaDOS-2:~# python --version
Python 2.7.17

[2020-04-06 15:28:40] jak1 : soooo

[2020-04-06 15:29:12] Livio : !joke

[2020-04-06 15:29:12] Liviobot : Why are skeletons so calm? Because nothing gets under their skin.

[2020-04-06 15:29:15] Livio : !xuf

[2020-04-06 15:29:15] Liviobot : Livio: Do not do unto others as you would they should do unto you.  Their tastes
may not be the same.
		-- George Bernard Shaw

[2020-04-06 15:29:27] jak1 : is that from server?

[2020-04-06 15:29:33] Livio : !xcal 9^9

[2020-04-06 15:29:34] Liviobot : Livio: 387420489

[2020-04-06 15:29:46] Livio : Sure.

[2020-04-06 15:29:48] jak1 : with name now? nice :D

[2020-04-06 15:30:01] jak1 : !xcal 3*3

[2020-04-06 15:30:01] Liviobot : jak1: 9

[2020-04-06 15:30:10] Livio : I've left ./auto.sh running while you were reinstalling python.

[2020-04-06 15:30:42] Livio : Let's use Gitlab to decide what to do and what to fix.

[2020-04-06 15:30:47] jak1 : great, so it works again

[2020-04-06 15:30:51] NOBODY 23 : !story

[2020-04-06 15:30:51] Liviobot : Yesterday I got bored and called matto to poison a monster with an elephant but stomped on the soul menhir and said: "Ouch..". Then the monster said:  "What??". But matto replied: "Puah!"

[2020-04-06 15:31:00] Livio : One step at time manachat will improve greatly.

[2020-04-06 15:31:18] jak1 : lets just push the changes, so we can start clean

[2020-04-06 15:31:23] NOBODY 23 : 

[2020-04-06 15:31:26] Livio : Okay.

[2020-04-06 15:40:18] Loaded itemdb from itemdb.txt

[2020-04-06 15:40:18] Plugin chatbot loaded

[2020-04-06 15:40:18] Plugin shop loaded

[2020-04-06 15:40:18] Plugin npc loaded

[2020-04-06 15:40:18] Plugin autofollow loaded

[2020-04-06 15:40:18] Plugin manaboy loaded

[2020-04-06 15:40:18] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 15:40:18] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 15:40:18] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 15:40:18] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 15:40:18] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 15:40:18] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 15:40:25] Livio : There.

[2020-04-06 15:40:41] Livio : Hmm...

[2020-04-06 15:41:17] Livio : How can we organize ourselves in order not to get in our way together?

[2020-04-06 15:43:12] jak1 : maybe branch names "livio/xyz", "jak1/xyz" and "xyz" so we merge our changes to xyz

[2020-04-06 15:43:41] Livio : Yeah, fine.

[2020-04-06 15:44:29] jak1 : and how we name xyz? LOL

[2020-04-06 15:44:48] jak1 : so we keep a structure :)

[2020-04-06 15:44:50] Livio : Usually I use the date as progressive version.

[2020-04-06 15:45:02] Livio : Something like 06042020.

[2020-04-06 15:45:50] jak1 : ok, so livio/06042020 jak06042020 and 06042020

[2020-04-06 15:45:58] NOBODY 23 : what

[2020-04-06 15:46:05] Livio : Or we can do with a progressive number like R0 and so on..

[2020-04-06 15:46:06] jak1 : ok, so livio/06042020 jak1/06042020 and 06042020

[2020-04-06 15:46:18] NOBODY 23 : 1001101110101011110100010011100101001

[2020-04-06 15:46:26] jak1 : maybe just like milestone? v2.0

[2020-04-06 15:46:45] Livio : I don't know...

[2020-04-06 15:47:11] Livio : I see manachat as a collection of different software together.

[2020-04-06 15:47:21] NOBODY 23 : hihi

[2020-04-06 15:47:41] Livio : So updating manaboy.py doesn't mean update the whole manachat.

[2020-04-06 15:48:22] Livio : Well, feel free to do as you please: we do not risk losing nothing branching.

[2020-04-06 15:48:56] Livio : I will branch this version in order to provide a running bot waiting for better version.

[2020-04-06 15:56:23] Liviobot : Rebooting...

[2020-04-06 15:58:33] Loaded itemdb from itemdb.txt

[2020-04-06 15:58:33] Plugin chatbot loaded

[2020-04-06 15:58:33] Plugin shop loaded

[2020-04-06 15:58:33] Plugin npc loaded

[2020-04-06 15:58:33] Plugin autofollow loaded

[2020-04-06 15:58:33] Plugin manaboy loaded

[2020-04-06 15:58:34] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 15:58:34] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 15:58:34] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 15:58:34] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 15:58:34] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 15:58:34] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 16:01:52] Loaded itemdb from itemdb.txt

[2020-04-06 16:01:52] Plugin chatbot loaded

[2020-04-06 16:01:52] Plugin shop loaded

[2020-04-06 16:01:52] Plugin npc loaded

[2020-04-06 16:01:52] Plugin autofollow loaded

[2020-04-06 16:01:52] Plugin manaboy loaded

[2020-04-06 16:01:53] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 16:01:53] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 16:01:53] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 16:01:53] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 16:01:53] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 16:01:53] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 16:01:59] [Livio ->] !commands

[2020-04-06 16:01:59] [-> Livio] attack, bug, bugs, close, commands, down, drop, emote, equip, follow, goto, help, history, info, input, inventory, invlist, joke, left, lvlup, nearby, pickup, retrieve, right, say, sell, sit, status, store, story, talk2npc, turn, unequip, up, use, where, xcal, xcb, xci, xcia, xclist, xcoff, xcom, xcom, xcon, xcsi, xcsioff, xcsion, xcu, xudate, xuf, xupom, zeny

[2020-04-06 16:02:02] [Livio ->] !joke

[2020-04-06 16:02:02] [-> Livio] I'm not telling you!

[2020-04-06 16:05:07] Loaded itemdb from itemdb.txt

[2020-04-06 16:05:07] Plugin chatbot loaded

[2020-04-06 16:05:07] Plugin shop loaded

[2020-04-06 16:05:07] Plugin npc loaded

[2020-04-06 16:05:07] Plugin autofollow loaded

[2020-04-06 16:05:21] Loaded itemdb from itemdb.txt

[2020-04-06 16:05:21] Plugin chatbot loaded

[2020-04-06 16:05:21] Plugin shop loaded

[2020-04-06 16:05:21] Plugin npc loaded

[2020-04-06 16:05:21] Plugin autofollow loaded

[2020-04-06 16:05:21] Plugin manaboy loaded

[2020-04-06 16:07:55] Loaded itemdb from itemdb.txt

[2020-04-06 16:07:55] Plugin chatbot loaded

[2020-04-06 16:07:55] Plugin shop loaded

[2020-04-06 16:07:55] Plugin npc loaded

[2020-04-06 16:07:55] Plugin autofollow loaded

[2020-04-06 16:07:55] Plugin manaboy loaded

[2020-04-06 16:07:55] Error loading plugin xcom: No module named c

[2020-04-06 16:07:55] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 16:07:55] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 16:07:55] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 16:07:55] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 16:07:55] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 16:07:55] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 16:08:04] [Livio ->] !commands

[2020-04-06 16:08:04] [-> Livio] attack, bug, bugs, close, commands, down, drop, emote, equip, follow, goto, help, history, info, input, inventory, invlist, joke, left, lvlup, nearby, pickup, retrieve, right, say, sell, sit, status, store, story, talk2npc, turn, unequip, up, use, where, xcal, xudate, xuf, xupom, zeny

[2020-04-06 16:08:09] [Livio ->] !xclist

[2020-04-06 16:08:16] [Livio ->] !xcon

[2020-04-06 16:08:27] [Livio ->] !joke

[2020-04-06 16:08:27] [-> Livio] Whenever I find the key to success, someone changes the lock.

[2020-04-06 16:09:35] Loaded itemdb from itemdb.txt

[2020-04-06 16:09:35] Plugin chatbot loaded

[2020-04-06 16:09:35] Plugin shop loaded

[2020-04-06 16:09:35] Plugin npc loaded

[2020-04-06 16:09:35] Plugin autofollow loaded

[2020-04-06 16:09:35] Plugin manaboy loaded

[2020-04-06 16:09:35] Error loading plugin xcom: No module named c

[2020-04-06 16:09:35] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 16:09:35] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 16:09:35] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 16:09:35] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 16:09:35] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 16:09:35] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 16:09:39] [Livio ->] !joke

[2020-04-06 16:09:39] [-> Livio] *sighs*

[2020-04-06 16:09:41] [Livio ->] !xcon

[2020-04-06 16:10:26] Loaded itemdb from itemdb.txt

[2020-04-06 16:10:26] Plugin chatbot loaded

[2020-04-06 16:10:26] Plugin shop loaded

[2020-04-06 16:10:26] Plugin npc loaded

[2020-04-06 16:10:26] Plugin autofollow loaded

[2020-04-06 16:10:26] Plugin manaboy loaded

[2020-04-06 16:10:26] Error loading plugin xcom: No module named c

[2020-04-06 16:10:26] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 16:10:26] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 16:10:26] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 16:10:26] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 16:10:26] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 16:10:26] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 16:10:29] [Livio ->] !xcon

[2020-04-06 16:10:32] [Livio ->] !joke

[2020-04-06 16:10:32] [-> Livio] A elderly man remembers the good old days: when I was young my mom could send me to a shop with a single $ and I would bring back 5 pounds of potatoes 2 breads a bottle of milk a piece of cheese and 10 eggs. Nowadays thats impossible: there are simply too many security cameras.

[2020-04-06 16:10:41] [Livio ->] !commands

[2020-04-06 16:10:41] [-> Livio] attack, bug, bugs, close, commands, down, drop, emote, equip, follow, goto, help, history, info, input, inventory, invlist, joke, left, lvlup, nearby, pickup, retrieve, right, say, sell, sit, status, store, story, talk2npc, turn, unequip, up, use, where, xcal, xudate, xuf, xupom, zeny

[2020-04-06 16:11:30] [Livio ->] !random

[2020-04-06 16:11:30] [-> Livio] Ciao!

[2020-04-06 16:12:00] Loaded itemdb from itemdb.txt

[2020-04-06 16:12:00] Plugin chatbot loaded

[2020-04-06 16:12:00] Plugin shop loaded

[2020-04-06 16:12:00] Plugin npc loaded

[2020-04-06 16:12:00] Plugin autofollow loaded

[2020-04-06 16:12:00] Plugin manaboy loaded

[2020-04-06 16:12:14] Loaded itemdb from itemdb.txt

[2020-04-06 16:12:14] Plugin chatbot loaded

[2020-04-06 16:12:14] Plugin shop loaded

[2020-04-06 16:12:14] Plugin npc loaded

[2020-04-06 16:12:14] Plugin autofollow loaded

[2020-04-06 16:12:14] Plugin manaboy loaded

[2020-04-06 16:12:14] Error loading plugin xcom: No module named c

[2020-04-06 16:12:14] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 16:12:14] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 16:12:14] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 16:12:14] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 16:12:14] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 16:12:14] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 16:15:42] [Livio ->] !commands

[2020-04-06 16:15:42] [-> Livio] attack, bug, bugs, close, commands, down, drop, emote, equip, follow, goto, help, history, info, input, inventory, invlist, joke, left, lvlup, nearby, pickup, retrieve, right, say, sell, sit, status, store, story, talk2npc, turn, unequip, up, use, where, xcal, xudate, xuf, xupom, zeny

[2020-04-06 16:16:25] Loaded itemdb from itemdb.txt

[2020-04-06 16:16:25] Plugin chatbot loaded

[2020-04-06 16:16:25] Plugin shop loaded

[2020-04-06 16:16:25] Plugin npc loaded

[2020-04-06 16:16:25] Plugin autofollow loaded

[2020-04-06 16:16:25] Plugin manaboy loaded

[2020-04-06 16:16:25] Error loading plugin xcom: No module named c

[2020-04-06 16:16:26] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 16:16:26] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 16:16:26] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 16:16:26] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 16:16:26] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 16:16:26] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 16:16:35] [Livio ->] !commands

[2020-04-06 16:16:35] [-> Livio] attack, bug, bugs, close, commands, down, drop, emote, equip, follow, goto, help, history, info, input, inventory, invlist, joke, left, lvlup, nearby, pickup, retrieve, right, say, sell, sit, status, store, story, talk2npc, turn, unequip, up, use, where, xcal, xudate, xuf, xupom, zeny

[2020-04-06 16:17:16] Ur-Sha-kh : hello mana people ;)

[2020-04-06 16:17:28] Livio : Hello!

[2020-04-06 16:17:41] jak1 : hi Ur-Sha-kh

[2020-04-06 16:18:03] matto : hi Ur-Sha-kh :D

[2020-04-06 16:18:22] Ur-Sha-kh : hello Livio, jak1, hey matto ;)

[2020-04-06 16:18:23] Liviobot : Welcome back Ur-Sha-kh!

[2020-04-06 16:19:23] Ur-Sha-kh : oh, thank you, i just logged in, to remind me to play

[2020-04-06 16:19:59] Loaded itemdb from itemdb.txt

[2020-04-06 16:19:59] Plugin chatbot loaded

[2020-04-06 16:19:59] Plugin shop loaded

[2020-04-06 16:19:59] Plugin npc loaded

[2020-04-06 16:19:59] Plugin autofollow loaded

[2020-04-06 16:19:59] Plugin manaboy loaded

[2020-04-06 16:19:59] Error loading plugin xcom: No module named c

[2020-04-06 16:19:59] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 16:19:59] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 16:19:59] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 16:19:59] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 16:19:59] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 16:19:59] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 16:20:16] [Livio ->] !commands

[2020-04-06 16:20:16] [-> Livio] attack, bug, bugs, close, commands, down, drop, emote, equip, follow, goto, help, history, info, input, inventory, invlist, joke, left, lvlup, nearby, pickup, retrieve, right, say, sell, sit, status, store, story, talk2npc, turn, unequip, up, use, where, xcal, xudate, xuf, xupom, zeny

[2020-04-06 16:20:26] [jak1 ->] !selllist 853234

[2020-04-06 16:20:31] Liviobot : Let's do business!

[2020-04-06 16:20:31] [-> jak1] ‚B1pK]+!!"!!k-'"!!"!!['3$!!"!!l-?&!!"!!J&;6!!"!!V'?&!!"!!T'_#!!"!!U'_#!!"!!

[2020-04-06 16:20:45] jak1 : ok... still working XD

[2020-04-06 16:20:53] Livio : But not XCOM.

[2020-04-06 16:21:08] Livio : That chat commands seems not being added.

[2020-04-06 16:21:21] jak1 : huh... o.O

[2020-04-06 16:21:44] Livio : I followed Trav's directions on README but it doesn't work outside manaboy.py

[2020-04-06 16:22:04] jak1 : hmm

[2020-04-06 16:22:29] [napaBo3 ->] !selllist 24110

[2020-04-06 16:22:34] Liviobot : Shop here napaBo3, yes!

[2020-04-06 16:22:34] [napaBo3 ->] !selllist 24447

[2020-04-06 16:22:39] [-> napaBo3] ‚B1pK]+!!"!!k-'"!!"!!['3$!!"!!l-?&!!"!!J&;6!!"!!V'?&!!"!!T'_#!!"!!U'_#!!"!!

[2020-04-06 16:22:39] Liviobot : Shop here napaBo3, yes!

[2020-04-06 16:23:45] NOBODY 23 : hi

[2020-04-06 16:25:59] Loaded itemdb from itemdb.txt

[2020-04-06 16:25:59] Plugin chatbot loaded

[2020-04-06 16:25:59] Plugin shop loaded

[2020-04-06 16:25:59] Plugin npc loaded

[2020-04-06 16:25:59] Plugin autofollow loaded

[2020-04-06 16:25:59] Plugin manaboy loaded

[2020-04-06 16:25:59] Error loading plugin xcom: No module named c

[2020-04-06 16:25:59] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 16:25:59] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 16:25:59] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 16:25:59] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 16:25:59] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 16:25:59] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 16:26:22] Loaded itemdb from itemdb.txt

[2020-04-06 16:26:22] Plugin chatbot loaded

[2020-04-06 16:26:22] Plugin shop loaded

[2020-04-06 16:26:22] Plugin npc loaded

[2020-04-06 16:26:22] Plugin autofollow loaded

[2020-04-06 16:26:22] Plugin manaboy loaded

[2020-04-06 16:26:22] Error loading plugin xcom: No module named c

[2020-04-06 16:26:23] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 16:26:23] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 16:26:23] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 16:26:23] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 16:26:23] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 16:26:23] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 16:26:53] Loaded itemdb from itemdb.txt

[2020-04-06 16:26:53] Plugin chatbot loaded

[2020-04-06 16:26:53] Plugin shop loaded

[2020-04-06 16:26:53] Plugin npc loaded

[2020-04-06 16:26:53] Plugin autofollow loaded

[2020-04-06 16:26:53] Plugin manaboy loaded

[2020-04-06 16:26:53] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 16:26:53] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 16:26:53] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 16:26:53] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 16:26:53] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 16:26:53] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 16:27:41] Loaded itemdb from itemdb.txt

[2020-04-06 16:27:41] Plugin chatbot loaded

[2020-04-06 16:27:41] Plugin shop loaded

[2020-04-06 16:27:41] Plugin npc loaded

[2020-04-06 16:27:41] Plugin autofollow loaded

[2020-04-06 16:27:41] Plugin manaboy loaded

[2020-04-06 16:27:41] Plugin xcom loaded

[2020-04-06 16:27:41] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 16:27:41] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 16:27:41] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 16:27:41] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 16:27:41] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 16:27:41] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 16:27:49] [Livio ->] !commands

[2020-04-06 16:28:16] Loaded itemdb from itemdb.txt

[2020-04-06 16:28:16] Plugin chatbot loaded

[2020-04-06 16:28:16] Plugin shop loaded

[2020-04-06 16:28:16] Plugin npc loaded

[2020-04-06 16:28:16] Plugin autofollow loaded

[2020-04-06 16:28:16] Plugin manaboy loaded

[2020-04-06 16:28:16] Plugin xcom loaded

[2020-04-06 16:28:16] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 16:28:16] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 16:28:16] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 16:28:16] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 16:28:16] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 16:28:16] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 16:28:20] [Livio ->] !commands

[2020-04-06 16:29:20] Loaded itemdb from itemdb.txt

[2020-04-06 16:29:20] Plugin chatbot loaded

[2020-04-06 16:29:20] Plugin shop loaded

[2020-04-06 16:29:20] Plugin npc loaded

[2020-04-06 16:29:20] Plugin autofollow loaded

[2020-04-06 16:29:20] Plugin manaboy loaded

[2020-04-06 16:29:20] Plugin xcom loaded

[2020-04-06 16:29:20] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 16:29:20] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 16:29:20] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 16:29:20] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 16:29:20] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 16:29:20] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 16:29:57] Loaded itemdb from itemdb.txt

[2020-04-06 16:29:57] Plugin chatbot loaded

[2020-04-06 16:29:57] Plugin shop loaded

[2020-04-06 16:29:57] Plugin npc loaded

[2020-04-06 16:29:57] Plugin autofollow loaded

[2020-04-06 16:29:57] Plugin manaboy loaded

[2020-04-06 16:29:57] Error loading plugin xcom: No module named c

[2020-04-06 16:29:58] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 16:29:58] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 16:29:58] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 16:29:58] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 16:29:58] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 16:29:58] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 16:30:08] [Livio ->] !commands

[2020-04-06 16:30:08] [-> Livio] attack, bug, bugs, close, commands, down, drop, emote, equip, follow, goto, help, history, info, input, inventory, invlist, joke, left, lvlup, nearby, pickup, retrieve, right, say, sell, sit, status, store, story, talk2npc, turn, unequip, up, use, where, xcal, xudate, xuf, xupom, zeny

[2020-04-06 16:30:56] Loaded itemdb from itemdb.txt

[2020-04-06 16:30:56] Plugin chatbot loaded

[2020-04-06 16:30:56] Plugin shop loaded

[2020-04-06 16:30:56] Plugin npc loaded

[2020-04-06 16:30:56] Plugin autofollow loaded

[2020-04-06 16:30:56] Plugin manaboy loaded

[2020-04-06 16:30:56] Error loading plugin xcom: No module named c

[2020-04-06 16:30:56] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 16:30:56] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 16:30:56] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 16:30:56] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 16:30:56] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 16:30:56] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 16:37:22] Loaded itemdb from itemdb.txt

[2020-04-06 16:37:22] Plugin chatbot loaded

[2020-04-06 16:37:22] Plugin shop loaded

[2020-04-06 16:37:22] Plugin npc loaded

[2020-04-06 16:37:22] Plugin autofollow loaded

[2020-04-06 16:37:22] Plugin manaboy loaded

[2020-04-06 16:37:22] Error loading plugin xcom: No module named c

[2020-04-06 16:37:22] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 16:37:22] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 16:37:22] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 16:37:22] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 16:37:22] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 16:37:22] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 16:38:24] Loaded itemdb from itemdb.txt

[2020-04-06 16:38:24] Plugin chatbot loaded

[2020-04-06 16:38:24] Plugin shop loaded

[2020-04-06 16:38:24] Plugin npc loaded

[2020-04-06 16:38:24] Plugin autofollow loaded

[2020-04-06 16:38:24] Plugin manaboy loaded

[2020-04-06 16:38:24] Plugin xcom loaded

[2020-04-06 16:38:24] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 16:38:24] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 16:38:24] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 16:38:24] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 16:38:24] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 16:38:24] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 16:38:31] [Livio ->] !commands

[2020-04-06 16:39:34] Loaded itemdb from itemdb.txt

[2020-04-06 16:39:34] Plugin chatbot loaded

[2020-04-06 16:39:34] Plugin shop loaded

[2020-04-06 16:39:34] Plugin npc loaded

[2020-04-06 16:39:34] Plugin autofollow loaded

[2020-04-06 16:39:34] Plugin manaboy loaded

[2020-04-06 16:39:34] Plugin xcom loaded

[2020-04-06 16:39:34] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 16:39:34] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 16:39:34] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 16:39:34] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 16:39:34] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 16:39:34] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 16:39:41] [Livio ->] !commands

[2020-04-06 16:42:59] Loaded itemdb from itemdb.txt

[2020-04-06 16:42:59] Plugin chatbot loaded

[2020-04-06 16:42:59] Plugin shop loaded

[2020-04-06 16:42:59] Plugin npc loaded

[2020-04-06 16:42:59] Plugin autofollow loaded

[2020-04-06 16:42:59] Plugin manaboy loaded

[2020-04-06 16:42:59] Plugin xcom loaded

[2020-04-06 16:42:59] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 16:42:59] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 16:42:59] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 16:42:59] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 16:42:59] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 16:42:59] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 16:43:39] WarriorWorld : xD

[2020-04-06 16:44:13] Loaded itemdb from itemdb.txt

[2020-04-06 16:44:13] Plugin chatbot loaded

[2020-04-06 16:44:13] Plugin shop loaded

[2020-04-06 16:44:13] Plugin npc loaded

[2020-04-06 16:44:13] Plugin autofollow loaded

[2020-04-06 16:44:13] Plugin manaboy loaded

[2020-04-06 16:44:13] Plugin xcom loaded

[2020-04-06 16:44:13] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 16:44:13] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 16:44:13] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 16:44:13] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 16:44:13] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 16:44:13] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 16:44:23] [Livio ->] !commands

[2020-04-06 16:48:27] Loaded itemdb from itemdb.txt

[2020-04-06 16:48:27] Plugin chatbot loaded

[2020-04-06 16:48:27] Plugin shop loaded

[2020-04-06 16:48:27] Plugin npc loaded

[2020-04-06 16:48:27] Plugin autofollow loaded

[2020-04-06 16:48:27] Plugin manaboy loaded

[2020-04-06 16:48:27] Plugin xcom loaded

[2020-04-06 16:48:27] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 16:48:27] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 16:48:27] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 16:48:27] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 16:48:27] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 16:48:27] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 16:48:32] [Livio ->] !commands

[2020-04-06 16:48:52] [Livio ->] !joke

[2020-04-06 16:49:41] Loaded itemdb from itemdb.txt

[2020-04-06 16:49:41] Plugin chatbot loaded

[2020-04-06 16:49:41] Plugin shop loaded

[2020-04-06 16:49:41] Plugin npc loaded

[2020-04-06 16:49:41] Plugin autofollow loaded

[2020-04-06 16:49:41] Plugin manaboy loaded

[2020-04-06 16:49:41] Plugin xcom loaded

[2020-04-06 16:49:41] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 16:49:41] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 16:49:41] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 16:49:41] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 16:49:41] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 16:49:41] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 16:49:46] [Livio ->] !joke

[2020-04-06 16:51:34] Loaded itemdb from itemdb.txt

[2020-04-06 16:51:34] Plugin chatbot loaded

[2020-04-06 16:51:34] Plugin shop loaded

[2020-04-06 16:51:34] Plugin npc loaded

[2020-04-06 16:51:34] Plugin autofollow loaded

[2020-04-06 16:51:34] Plugin manaboy loaded

[2020-04-06 16:51:34] Plugin xcom loaded

[2020-04-06 16:51:34] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 16:51:34] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 16:51:34] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 16:51:34] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 16:51:34] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 16:51:34] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 16:51:38] [Livio ->] !joke

[2020-04-06 16:52:06] Loaded itemdb from itemdb.txt

[2020-04-06 16:52:06] Plugin chatbot loaded

[2020-04-06 16:52:06] Plugin shop loaded

[2020-04-06 16:52:06] Plugin npc loaded

[2020-04-06 16:52:06] Plugin autofollow loaded

[2020-04-06 16:52:06] Plugin manaboy loaded

[2020-04-06 16:52:06] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 16:52:06] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 16:52:06] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 16:52:06] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 16:52:06] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 16:52:06] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 16:52:16] [Livio ->] !joke

[2020-04-06 16:52:16] [-> Livio] Mary had a little lamb fries salad and a bottle of coke.

[2020-04-06 16:52:19] [Livio ->] !commands

[2020-04-06 16:52:19] [-> Livio] attack, bug, bugs, close, commands, down, drop, emote, equip, follow, goto, help, history, info, input, inventory, invlist, joke, left, lvlup, nearby, pickup, retrieve, right, say, sell, sit, status, store, story, talk2npc, turn, unequip, up, use, where, xcal, xudate, xuf, xupom, zeny

[2020-04-06 16:52:47] Loaded itemdb from itemdb.txt

[2020-04-06 16:52:47] Plugin chatbot loaded

[2020-04-06 16:52:47] Plugin shop loaded

[2020-04-06 16:52:47] Plugin npc loaded

[2020-04-06 16:52:47] Plugin xcom loaded

[2020-04-06 16:52:47] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 16:52:47] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 16:52:47] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 16:52:47] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 16:52:47] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 16:52:47] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 16:52:53] [Livio ->] !commands

[2020-04-06 16:56:11] Loaded itemdb from itemdb.txt

[2020-04-06 16:56:11] Plugin chatbot loaded

[2020-04-06 16:56:11] Plugin npc loaded

[2020-04-06 16:56:11] Plugin xcom loaded

[2020-04-06 16:56:11] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 16:56:11] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 16:56:11] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 16:56:11] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 16:56:11] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 16:56:11] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 16:56:16] [Livio ->] !commands

[2020-04-06 16:57:56] Loaded itemdb from itemdb.txt

[2020-04-06 16:57:56] Plugin chatbot loaded

[2020-04-06 16:57:56] Plugin npc loaded

[2020-04-06 16:57:56] Plugin xcom loaded

[2020-04-06 16:57:56] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 16:57:56] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 16:57:56] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 16:57:56] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 16:57:56] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 16:57:56] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 16:58:02] [Livio ->] !commands asd

[2020-04-06 17:01:21] Loaded itemdb from itemdb.txt

[2020-04-06 17:01:21] Plugin chatbot loaded

[2020-04-06 17:01:21] Plugin npc loaded

[2020-04-06 17:01:21] Plugin xcom loaded

[2020-04-06 17:01:21] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 17:01:21] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 17:01:21] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 17:01:21] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 17:01:21] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 17:01:21] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 17:01:24] [Livio ->] !say asd

[2020-04-06 17:02:32] Loaded itemdb from itemdb.txt

[2020-04-06 17:02:32] Plugin chatbot loaded

[2020-04-06 17:02:32] Plugin npc loaded

[2020-04-06 17:02:33] Plugin xcom loaded

[2020-04-06 17:02:33] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 17:02:33] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 17:02:33] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 17:02:33] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 17:02:33] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 17:02:33] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 17:02:35] [Livio ->] !commands

[2020-04-06 17:02:38] jak1 : ohh may i should not try it with a user in a guild LOL

[2020-04-06 17:02:50] Livio : ?

[2020-04-06 17:03:03] jak1 : seems the guildchat crashes the bot XD

[2020-04-06 17:03:22] Livio : Never tryied yet.

[2020-04-06 17:03:30] Livio : Better use a fresh account for now.

[2020-04-06 17:03:42] jak1 : hmm... maybe a great idea XD

[2020-04-06 17:04:11] jak1 : as long as i dont get a ipban rofl

[2020-04-06 17:04:35] [Livio ->] !xclist

[2020-04-06 17:04:35] [-> Livio] Livio | 

[2020-04-06 17:04:39] [Livio ->] !joke

[2020-04-06 17:04:47] [Livio ->] !commands

[2020-04-06 17:06:43] Loaded itemdb from itemdb.txt

[2020-04-06 17:06:43] Plugin chatbot loaded

[2020-04-06 17:06:43] Plugin npc loaded

[2020-04-06 17:06:43] Plugin autofollow loaded

[2020-04-06 17:06:43] Plugin manaboy loaded

[2020-04-06 17:06:43] Plugin xcom loaded

[2020-04-06 17:06:43] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 17:06:43] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 17:06:43] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 17:06:43] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 17:06:43] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 17:06:43] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 17:06:48] [Livio ->] !commands

[2020-04-06 17:06:48] [-> Livio] attack, bug, bugs, close, commands, down, drop, emote, equip, follow, goto, help, history, info, input, inventory, invlist, joke, left, lvlup, nearby, pickup, retrieve, right, say, sell, sit, status, store, story, talk2npc, turn, unequip, up, use, where, xcal, xudate, xuf, xupom, zeny

[2020-04-06 17:06:57] [Livio ->] !xcon

[2020-04-06 17:06:57] [-> Livio] ##G Livio XCOM already enabled

[2020-04-06 17:07:07] [Livio ->] !xclist

[2020-04-06 17:07:07] [-> Livio] Livio | 

[2020-04-06 17:07:14] [Livio ->] !joke

[2020-04-06 17:07:14] [-> Livio] The Mana World is beautiful as dangerous as well: trolls will not play jokes.

[2020-04-06 17:07:22] Livio : Hello everyone!

[2020-04-06 17:07:23] Liviobot : Livio!!

[2020-04-06 17:07:29] Livio : Bye!

[2020-04-06 17:09:39] Loaded itemdb from itemdb.txt

[2020-04-06 17:09:39] Plugin chatbot loaded

[2020-04-06 17:09:39] Plugin npc loaded

[2020-04-06 17:09:39] Plugin autofollow loaded

[2020-04-06 17:09:39] Plugin manaboy loaded

[2020-04-06 17:09:39] Plugin xcom loaded

[2020-04-06 17:09:39] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 17:09:39] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 17:09:39] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 17:09:39] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 17:09:39] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 17:09:39] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 17:09:48] [Livio ->] !commands

[2020-04-06 17:09:48] [-> Livio] commands, xcb, xci, xcia, xclist, xcoff, xcom, xcom, xcon, xcsi, xcsioff, xcsion, xcu

[2020-04-06 17:10:55] [Livio ->] !help

[2020-04-06 17:10:55] [-> Livio] [Forum][Sources] Try !commands for list of commands

[2020-04-06 17:11:00] [Livio ->] !info

[2020-04-06 17:11:00] [-> Livio] [Forum][Sources] Try !commands for list of commands

[2020-04-06 17:11:00] [-> Livio] This is an experimental bot.

[2020-04-06 17:11:21] Livio : Why that name?

[2020-04-06 17:11:26] jak1 : why not XD

[2020-04-06 17:11:33] jak1 : its just a test xD

[2020-04-06 17:11:38] Livio : But nobody will know that he is a bot.

[2020-04-06 17:11:58] jak1 : only for testing my structure now :)

[2020-04-06 17:12:07] Livio : Better don't raise strange suspect on GMs. They have to know that's not a botting player.

[2020-04-06 17:12:15] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 17:12:21] jak2 : Hey Livio, wanna something?

[2020-04-06 17:12:22] Liviobot : Welcome back jak2!

[2020-04-06 17:12:39] Livio : Oh, man.

[2020-04-06 17:12:41] jak1 : bad livio :P

[2020-04-06 17:13:00] Livio : Bots talking each others are forbidden.

[2020-04-06 17:13:21] jak2 : meep

[2020-04-06 17:13:29] Livio : However, it's creepy behind that tree...

[2020-04-06 17:13:31] Livio : !joke

[2020-04-06 17:13:31] Liviobot : I thought I’d tell you a good time travel joke – but you didn't like it.

[2020-04-06 17:13:53] Livio : Hmm... Buggy preloadArray maybe?

[2020-04-06 17:14:28] jak1 : grr... i dont have the packages installed local xD

[2020-04-06 17:15:15] Liviobot : What packages?

[2020-04-06 17:15:19] Loaded itemdb from itemdb.txt

[2020-04-06 17:15:19] Plugin chatbot loaded

[2020-04-06 17:15:19] Plugin npc loaded

[2020-04-06 17:15:19] Plugin autofollow loaded

[2020-04-06 17:15:19] Plugin manaboy loaded

[2020-04-06 17:15:19] Plugin xcom loaded

[2020-04-06 17:15:19] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 17:15:19] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 17:15:19] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 17:15:19] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 17:15:19] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 17:15:19] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 17:15:32] Livio : That was me don't worry...

[2020-04-06 17:15:33] jak1 : fortune.... u did !joke

[2020-04-06 17:15:45] [Livio ->] !commands

[2020-04-06 17:15:58] Loaded itemdb from itemdb.txt

[2020-04-06 17:15:58] Plugin chatbot loaded

[2020-04-06 17:15:58] Plugin npc loaded

[2020-04-06 17:15:58] Plugin autofollow loaded

[2020-04-06 17:15:58] Plugin manaboy loaded

[2020-04-06 17:15:58] Plugin xcom loaded

[2020-04-06 17:15:58] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 17:15:58] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 17:15:58] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 17:15:58] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 17:15:58] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 17:15:58] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 17:16:11] Loaded itemdb from itemdb.txt

[2020-04-06 17:16:11] Plugin chatbot loaded

[2020-04-06 17:16:11] Plugin npc loaded

[2020-04-06 17:16:11] Plugin autofollow loaded

[2020-04-06 17:16:11] Plugin manaboy loaded

[2020-04-06 17:16:11] Plugin xcom loaded

[2020-04-06 17:16:11] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 17:16:11] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 17:16:11] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 17:16:11] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 17:16:11] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 17:16:11] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 17:16:23] Livio : You need a text file...

[2020-04-06 17:16:58] Livio : Grab it from here:

[2020-04-06 17:17:02] Livio : [https://gitlab.com/liviorecchia/tmw-jokes-collection]

[2020-04-06 17:17:29] [Livio ->] !commands

[2020-04-06 17:18:29] Loaded itemdb from itemdb.txt

[2020-04-06 17:18:29] Plugin chatbot loaded

[2020-04-06 17:18:29] Plugin npc loaded

[2020-04-06 17:18:29] Plugin autofollow loaded

[2020-04-06 17:18:29] Plugin manaboy loaded

[2020-04-06 17:18:29] Plugin xcom loaded

[2020-04-06 17:18:29] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 17:18:29] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 17:18:29] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 17:18:29] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 17:18:29] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 17:18:29] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 17:19:07] Loaded itemdb from itemdb.txt

[2020-04-06 17:19:07] Plugin chatbot loaded

[2020-04-06 17:19:07] Plugin npc loaded

[2020-04-06 17:19:07] Plugin autofollow loaded

[2020-04-06 17:19:07] Plugin manaboy loaded

[2020-04-06 17:19:07] Plugin xcom loaded

[2020-04-06 17:19:08] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 17:19:08] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 17:19:08] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 17:19:08] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 17:19:08] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 17:19:08] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 17:19:12] [Livio ->] !commands

[2020-04-06 17:19:21] [Livio ->] !xcommands

[2020-04-06 17:19:21] [-> Livio] ##G Livio XCOM already enabled

[2020-04-06 17:19:21] [-> Livio] xcb, xci, xcia, xclist, xcoff, xcom, xcom, xcommands, xcon, xcsi, xcsioff, xcsion, xcu

[2020-04-06 17:20:15] [Livio ->] !commands

[2020-04-06 17:20:21] [Livio ->] !command

[2020-04-06 17:20:25] [Livio ->] !help

[2020-04-06 17:20:25] [-> Livio] [Forum][Sources] Try !commands for list of commands

[2020-04-06 17:21:29] jak2 : test

[2020-04-06 17:21:39] jak1 : !joke

[2020-04-06 17:21:39] Liviobot : One of the most wonderful things in life is to wake up and enjoy a cuddle with somebody; unless you are in prison.

[2020-04-06 17:21:39] jak2 : Mary had a little lamb fries salad and a bottle of coke.

[2020-04-06 17:21:53] jak2 : Hey jak1, wanna something?

[2020-04-06 17:22:00] jak2 : Hmm? Something interesting to trade?

[2020-04-06 17:22:09] Okurwieniec : !attack Livio

[2020-04-06 17:22:09] Liviobot : Do it yourself.

[2020-04-06 17:22:09] jak2 : What about my reward?

[2020-04-06 17:22:13] jak1 : ok... that works so far

[2020-04-06 17:22:14] Livio : Sell seems working.

[2020-04-06 17:22:23] Livio : S e l l  seems working.

[2020-04-06 17:22:30] Okurwieniec : !attack jak1

[2020-04-06 17:22:30] Liviobot : What about my reward?

[2020-04-06 17:22:30] jak2 : Meh.

[2020-04-06 17:22:41] Livio : Resistance is futile!

[2020-04-06 17:22:51] Okurwieniec : !attack bodo

[2020-04-06 17:22:51] Liviobot : What about my reward?

[2020-04-06 17:22:57] jak1 : dont want to get kicked course of spam xD

[2020-04-06 17:23:02] Okurwieniec : he doesnt attack :(

[2020-04-06 17:23:16] jak1 : he cant...

[2020-04-06 17:23:18] Livio : Hmm...

[2020-04-06 17:23:23] jak1 : he is hidden

[2020-04-06 17:23:31] Livio : Do I have to suppress messages for non admins?

[2020-04-06 17:23:37] jak1 : hover-> hide

[2020-04-06 17:23:53] Okurwieniec : !attack squirrel

[2020-04-06 17:23:53] Liviobot : Nope!

[2020-04-06 17:24:21] jak1 : so... i cleaned it a bit root dirctory looks nicer now :)

[2020-04-06 17:24:46] Loaded itemdb from itemdb.txt

[2020-04-06 17:24:46] Plugin chatbot loaded

[2020-04-06 17:24:46] Plugin npc loaded

[2020-04-06 17:24:46] Plugin autofollow loaded

[2020-04-06 17:24:46] Plugin manaboy loaded

[2020-04-06 17:24:46] Plugin xcom loaded

[2020-04-06 17:24:46] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 17:24:46] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 17:24:46] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 17:24:46] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 17:24:46] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 17:24:46] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 17:24:57] [Livio ->] !help

[2020-04-06 17:25:39] Loaded itemdb from itemdb.txt

[2020-04-06 17:25:39] Plugin chatbot loaded

[2020-04-06 17:25:39] Plugin npc loaded

[2020-04-06 17:25:39] Plugin autofollow loaded

[2020-04-06 17:25:39] Plugin manaboy loaded

[2020-04-06 17:25:39] Plugin xcom loaded

[2020-04-06 17:25:39] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 17:25:39] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 17:25:39] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 17:25:39] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 17:25:39] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 17:25:39] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 17:25:50] [Livio ->] !help

[2020-04-06 17:26:29] Loaded itemdb from itemdb.txt

[2020-04-06 17:26:29] Plugin chatbot loaded

[2020-04-06 17:26:29] Plugin npc loaded

[2020-04-06 17:26:29] Plugin autofollow loaded

[2020-04-06 17:26:29] Plugin manaboy loaded

[2020-04-06 17:26:29] Plugin xcom loaded

[2020-04-06 17:26:29] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 17:26:29] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 17:26:29] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 17:26:29] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 17:26:29] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 17:26:29] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 17:26:35] [Livio ->] !help

[2020-04-06 17:29:18] Loaded itemdb from itemdb.txt

[2020-04-06 17:29:18] Plugin chatbot loaded

[2020-04-06 17:29:18] Plugin npc loaded

[2020-04-06 17:29:18] Plugin autofollow loaded

[2020-04-06 17:29:18] Plugin manaboy loaded

[2020-04-06 17:29:19] Plugin xcom loaded

[2020-04-06 17:29:19] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 17:29:19] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 17:29:19] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 17:29:19] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 17:29:19] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 17:29:19] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 17:29:28] [Livio ->] !help

[2020-04-06 17:29:28] [-> Livio] [Forum][Sources] Try !commands for list of commands

[2020-04-06 17:29:33] [Livio ->] !commands

[2020-04-06 17:29:33] [-> Livio] attack, bug, bugs, close, commands, down, drop, emote, equip, follow, goto, help, history, info, input, inventory, invlist, joke, left, lvlup, nearby, pickup, retrieve, right, say, sell, sit, status, store, story, talk2npc, turn, unequip, up, use, where, xcal, xudate, xuf, xupom, zeny

[2020-04-06 17:29:37] [Livio ->] !xcommands

[2020-04-06 17:29:37] [-> Livio] ##G Livio XCOM already enabled

[2020-04-06 17:29:37] [-> Livio] xcb, xci, xcia, xclist, xcoff, xcom, xcom, xcommands, xcon, xcsi, xcsioff, xcsion, xcu

[2020-04-06 17:31:51] jak1 : hey Jes :)

[2020-04-06 17:31:53] Jesusalva : 11/18 players idling here

[2020-04-06 17:31:59] Jesusalva : jak1 did you fix your PRs >:-D

[2020-04-06 17:32:14] Jesusalva : Don't say that I was the one who broke them in first place though :-D

[2020-04-06 17:32:15] jak1 : for tmw?

[2020-04-06 17:32:18] Jesusalva : Yes

[2020-04-06 17:32:28] jak1 : u broke it yep

[2020-04-06 17:32:36] jak1 : so fix it XD

[2020-04-06 17:32:39] Livio : Got DC.

[2020-04-06 17:32:50] jak1 : nah, i can do that :)

[2020-04-06 17:33:00] jak1 : just some id's

[2020-04-06 17:33:24] jak1 : and i need to go +10 @id's

[2020-04-06 17:34:03] jak1 : or w8, they are not dyeable, so... i could just append em

[2020-04-06 17:34:41] [Livio ->] !xclist

[2020-04-06 17:34:41] [-> Livio] Livio | 

[2020-04-06 17:34:47] [Livio ->] !xcoff

[2020-04-06 17:34:47] [-> Livio] ##L--- Livio disabled XCOM ---

[2020-04-06 17:34:51] [Livio ->] !xcon

[2020-04-06 17:34:51] [-> Livio] ##W--- Livio is online on XCOM ---##G Livio XCOM enabled! Use !xcoff or !xcom off to disable, use !xclist to see XCOM online list

[2020-04-06 17:41:17] Livio : Hey Jes? You see it?

[2020-04-06 17:41:25] Livio : Was a desert bandit.

[2020-04-06 17:41:47] Livio : Hello Jesusalva!

[2020-04-06 17:43:34] Loaded itemdb from itemdb.txt

[2020-04-06 17:43:34] Plugin chatbot loaded

[2020-04-06 17:43:34] Plugin npc loaded

[2020-04-06 17:43:34] Plugin autofollow loaded

[2020-04-06 17:43:34] Plugin manaboy loaded

[2020-04-06 17:43:34] Error loading plugin xcom: No module named c

[2020-04-06 17:43:34] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 17:43:34] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 17:43:34] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 17:43:34] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 17:43:34] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 17:43:34] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 17:43:57] Loaded itemdb from itemdb.txt

[2020-04-06 17:43:57] Plugin chatbot loaded

[2020-04-06 17:43:57] Plugin npc loaded

[2020-04-06 17:43:57] Plugin autofollow loaded

[2020-04-06 17:43:57] Plugin manaboy loaded

[2020-04-06 17:43:57] Error loading plugin xcom: No module named c

[2020-04-06 17:43:57] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 17:43:57] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 17:43:57] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 17:43:57] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 17:43:57] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 17:43:57] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 17:44:11] Loaded itemdb from itemdb.txt

[2020-04-06 17:44:11] Plugin chatbot loaded

[2020-04-06 17:44:11] Plugin npc loaded

[2020-04-06 17:44:11] Plugin autofollow loaded

[2020-04-06 17:44:11] Plugin manaboy loaded

[2020-04-06 17:44:11] Error loading plugin xcom: No module named c

[2020-04-06 17:44:11] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 17:44:11] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 17:44:11] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 17:44:11] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 17:44:11] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 17:44:11] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 17:44:15] Loaded itemdb from itemdb.txt

[2020-04-06 17:44:15] Plugin chatbot loaded

[2020-04-06 17:44:15] Plugin npc loaded

[2020-04-06 17:44:15] Plugin autofollow loaded

[2020-04-06 17:44:15] Plugin manaboy loaded

[2020-04-06 17:44:15] Plugin xcom loaded

[2020-04-06 17:44:15] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 17:44:15] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 17:44:15] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 17:44:15] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 17:44:15] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 17:44:15] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 17:44:25] [Livio ->] !xclist

[2020-04-06 17:44:25] [-> Livio] Livio | 

[2020-04-06 17:44:28] [Livio ->] !commands

[2020-04-06 17:44:28] [-> Livio] attack, bug, bugs, close, commands, down, drop, emote, equip, follow, goto, help, history, info, input, inventory, invlist, joke, left, lvlup, nearby, pickup, retrieve, right, say, sell, sit, status, store, story, talk2npc, turn, unequip, up, use, where, xcal, xudate, xuf, xupom, zeny

[2020-04-06 17:44:32] [Livio ->] !xcommands

[2020-04-06 17:44:32] [-> Livio] ##G Livio XCOM already enabled

[2020-04-06 17:44:32] [-> Livio] xcb, xci, xcia, xclist, xcoff, xcom, xcom, xcommands, xcon, xcsi, xcsioff, xcsion, xcu

[2020-04-06 17:45:17] jak1 : hmm... never used the web ide for resolving... lets test it XD

[2020-04-06 17:45:46] Livio : Don't make Liviobot catch fire while trying.

[2020-04-06 17:45:56] Livio : I'm going to push!

[2020-04-06 17:46:00] jak1 : nah... on github ;)

[2020-04-06 17:46:10] jak1 : for tmw :)

[2020-04-06 17:46:13] Livio : I like to bother people you know...

[2020-04-06 17:46:33] Livio : WEB IDE is too much for my puny laptop.

[2020-04-06 17:46:49] WarriorWorld : whazzaup folks

[2020-04-06 17:46:54] Livio : I wish I could use elinks instead of Firefox for Gitlab.

[2020-04-06 17:47:00] Livio : Hello!

[2020-04-06 17:47:12] Livio : We are developing more tech for bots.

[2020-04-06 17:47:49] Livio : What's your %?

[2020-04-06 17:48:46] Loaded itemdb from itemdb.txt

[2020-04-06 17:48:46] Plugin chatbot loaded

[2020-04-06 17:48:46] Plugin npc loaded

[2020-04-06 17:48:46] Plugin autofollow loaded

[2020-04-06 17:48:46] Plugin manaboy loaded

[2020-04-06 17:48:46] Plugin xcom loaded

[2020-04-06 17:48:46] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 17:48:46] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 17:48:46] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 17:48:46] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 17:48:46] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 17:48:46] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 17:49:16] WarriorWorld : What mean more tech for bots ?

[2020-04-06 17:49:17] Livio : Hey Jesusalva

[2020-04-06 17:49:36] Livio : What about organizing a PvP fight between Jande and WarriorWorld?

[2020-04-06 17:49:44] jak1 : yep, passed... now clientdata... boring id changes and reordering...

[2020-04-06 17:50:01] Jesusalva : Uh

[2020-04-06 17:50:08] WarriorWorld : heh jande have 120 lvl :P

[2020-04-06 17:50:13] Jesusalva : Jande's true form or Jande's illusion?

[2020-04-06 17:50:14] jak1 : nope

[2020-04-06 17:50:16] jak1 : 135*

[2020-04-06 17:50:20] Livio : Bot can be used for in game communication, shop and other utilities.

[2020-04-06 17:50:20] WarriorWorld : omg..

[2020-04-06 17:50:25] Jesusalva : Jande is level 135 btw

[2020-04-06 17:50:32] Jesusalva : The illusion*

[2020-04-06 17:50:36] Jesusalva : His true form is level 250

[2020-04-06 17:50:49] Livio : Why 250 and not 255?

[2020-04-06 17:50:59] jak1 : lvl god... like his name came from a tmw god

[2020-04-06 17:51:00] Okurwieniec : who is Jande?

[2020-04-06 17:51:06] Jesusalva : copy-pasted a bit from JackO

[2020-04-06 17:51:12] jak1 : *knows the history*

[2020-04-06 17:51:24] Livio : matto studies that.

[2020-04-06 17:51:32] Myu. : Has someone a empty bottle or water for me?

[2020-04-06 17:51:36] Jesusalva : Yeah, Jande is the whatever of Earth

[2020-04-06 17:51:43] Livio : I have water without the bottle.

[2020-04-06 17:51:53] Jesusalva : Creator of the Talpan race

[2020-04-06 17:51:55] Myu. : xD

[2020-04-06 17:52:06] Jesusalva : Okurwieniec and Liviobot are not Talpans but everyone else here is

[2020-04-06 17:52:13] Livio : Wait...

[2020-04-06 17:52:20] [Livio ->] !unequip 906

[2020-04-06 17:52:23] jak1 : theres a history text in forums i think... just search for jande

[2020-04-06 17:52:26] Livio : What about now?

[2020-04-06 17:52:26] Myu. : Livio can i get it?

[2020-04-06 17:52:30] Jesusalva : Wiki

[2020-04-06 17:52:45] Jesusalva : Oh

[2020-04-06 17:52:47] Livio : I usually don't carry water with me.

[2020-04-06 17:52:50] Jesusalva : Now Liviobot is a Talpan :3

[2020-04-06 17:52:55] Livio : I can give you a pear.

[2020-04-06 17:53:04] WarriorWorld : livioobot is the best ^_^

[2020-04-06 17:53:28] Livio : [scythe]

[2020-04-06 17:53:37] [Livio ->] !equip 623

[2020-04-06 17:53:46] Myu. : I can go and melt some ice xD

[2020-04-06 17:54:05] Livio : Ice here is made of plastic and doesn't melt.

[2020-04-06 17:54:12] Myu. : :P

[2020-04-06 17:55:03] WarriorWorld : this little bit of sound is annoying.  sand cutter

[2020-04-06 17:55:12] Jesusalva : Oh right

[2020-04-06 17:55:17] matto : hiya Jes

[2020-04-06 17:55:17] Jesusalva : Don't let me forget to update it >:-D

[2020-04-06 17:55:25] Jesusalva : April 1st is over but the joke remained -.-'

[2020-04-06 17:55:41] Livio : Jesusalva actually Okur loves that noise...

[2020-04-06 17:56:31] WarriorWorld : btw sand cutter is to be a better weapon than setzer ?

[2020-04-06 17:56:45] Livio : Yes and no.

[2020-04-06 17:57:04] Livio : If you have a lot of AGI sand cutter is better.

[2020-04-06 17:57:33] WarriorWorld : i have a lot of str...

[2020-04-06 17:57:43] WarriorWorld : but u have lower critic change..

[2020-04-06 17:57:50] Livio : Setzer then. With some lemon and sugar.

[2020-04-06 17:58:28] WarriorWorld : I've tested many combinations

[2020-04-06 17:58:48] WarriorWorld : more critic and DPS = good for Yeti, Zombie Fallen

[2020-04-06 17:59:09] WarriorWorld : less misses

[2020-04-06 17:59:37] Livio : I cannot registrate a new account here. Captcha sucks.

[2020-04-06 17:59:47] WarriorWorld : if you have low critic u have more miss to Yeti >_>

[2020-04-06 18:00:04] Livio : I'm not good at hunting yetis.

[2020-04-06 18:00:25] [Livio ->] !down

[2020-04-06 18:00:33] Okurwieniec : im ghood at sitting

[2020-04-06 18:00:36] [Livio ->] !right

[2020-04-06 18:00:38] [Livio ->] !right

[2020-04-06 18:00:43] [Livio ->] !turn down

[2020-04-06 18:00:46] [Livio ->] !sit

[2020-04-06 18:00:59] matto : dont tear my sweater please Liviobot

[2020-04-06 18:01:02] Okurwieniec : i got most of exp from butterflies

[2020-04-06 18:01:40] Myu. : dont like it, when Liviobot looks like a player ://

[2020-04-06 18:02:01] Livio : I cannot change his appearance as I please however...

[2020-04-06 18:02:02] Okurwieniec : and he cant attack no fun :(

[2020-04-06 18:05:55] WarriorWorld : i am good :P i can kill 3x yetis without pots but i need water xD

[2020-04-06 18:06:11] WarriorWorld : or chicken

[2020-04-06 18:07:14] Jesusalva : Livio if you can't register a TMW account you can request manually to registration@themanaworld.org

[2020-04-06 18:07:17] Jesusalva : But it is manual

[2020-04-06 18:08:02] Okurwieniec : god damnit steaks i put them inbto hot water microvawe ded

[2020-04-06 18:08:40] Okurwieniec : im hungry would like have chicken irl

[2020-04-06 18:08:40] Jesusalva : >:-D

[2020-04-06 18:08:47] Jesusalva : kytty stop hiding

[2020-04-06 18:08:53] Jesusalva : Myu. go to archery and come back

[2020-04-06 18:08:54] WarriorWorld : heh xD

[2020-04-06 18:09:05] Myu. : ...?

[2020-04-06 18:09:16] Jesusalva : Myu. go to archery and come back.

[2020-04-06 18:09:19] Livio : I want to make another bot Jesusalva.

[2020-04-06 18:09:26] Jesusalva : You'll see why Rubikon is surprised

[2020-04-06 18:09:33] Rubikon : xD

[2020-04-06 18:09:33] Livio : But this time with only XCOM loaded in it.

[2020-04-06 18:09:50] Myu. : hu???

[2020-04-06 18:09:50] Livio : Just to provide a global chat.

[2020-04-06 18:09:52] matto : dang

[2020-04-06 18:10:00] Myu. : a tree

[2020-04-06 18:10:03] Okurwieniec : oh tree

[2020-04-06 18:10:05] matto : this aint gonna stop me from sitting on my spot

[2020-04-06 18:10:27] Myu. : *hidden*

[2020-04-06 18:10:49] Winz : [assassin armor]

[2020-04-06 18:10:53] matto : it got a lil bit comfier

[2020-04-06 18:10:53] Jesusalva : LOL

[2020-04-06 18:11:05] [Jesusalva ->] !help

[2020-04-06 18:11:05] [-> Jesusalva] [Forum][Sources] Try !commands for list of commands

[2020-04-06 18:11:08] [Jesusalva ->] !commands

[2020-04-06 18:11:08] [-> Jesusalva] attack, bug, bugs, close, commands, down, drop, emote, equip, follow, goto, help, history, info, input, inventory, invlist, joke, left, lvlup, nearby, pickup, retrieve, right, say, sell, sit, status, store, story, talk2npc, turn, unequip, up, use, where, xcal, xudate, xuf, xupom, zeny

[2020-04-06 18:11:12] [Livio ->] !attack Myu.

[2020-04-06 18:11:18] Liviobot : Alright!!!

[2020-04-06 18:11:18] [Jesusalva ->] !emote 21

[2020-04-06 18:11:19] Liviobot : Ha!

[2020-04-06 18:11:23] [Jesusalva ->] !emote 3

[2020-04-06 18:11:26] Myu. : omg

[2020-04-06 18:11:34] Myu. : thats weard xD

[2020-04-06 18:11:35] [Jesusalva ->] !say Hello TMW

[2020-04-06 18:11:45] [Jesusalva ->] !say

[2020-04-06 18:11:58] matto : this tree really goes well with my xmas sweater

[2020-04-06 18:12:01] Myu. : plant trees for a green earth!!! xD

[2020-04-06 18:12:20] Myu. : dpnt you have a green hat? xD

[2020-04-06 18:12:26] Myu. : or a red on

[2020-04-06 18:12:43] matto : w8

[2020-04-06 18:12:57] [Jesusalva ->] !joke

[2020-04-06 18:12:57] [-> Jesusalva] Why are skeletons so calm? Because nothing gets under their skin.

[2020-04-06 18:13:22] Jesusalva : Livio do you see Liviobot anywhere?

[2020-04-06 18:13:27] Livio : !attack Jesusalva

[2020-04-06 18:13:32] Liviobot : You are the sunshine in this beautiful land Jesusalva!

[2020-04-06 18:13:32] matto : *is a present under the tree*

[2020-04-06 18:13:32] [Jesusalva ->] !emote 3

[2020-04-06 18:13:34] Livio : !attack Constable bob

[2020-04-06 18:13:34] Liviobot : What are you talking about?

[2020-04-06 18:13:40] Livio : !attack Constable Bob

[2020-04-06 18:13:46] Liviobot : Attack!!!

[2020-04-06 18:13:46] Jesusalva : xD

[2020-04-06 18:13:46] Liviobot : Come on!

[2020-04-06 18:13:47] Myu. : chrismas!!

[2020-04-06 18:13:47] matto : come back

[2020-04-06 18:13:52] Livio : Come Liviobot

[2020-04-06 18:13:52] Liviobot : The show begins...

[2020-04-06 18:13:53] Jesusalva : xD

[2020-04-06 18:13:55] Myu. : where is the snow? xD

[2020-04-06 18:14:00] Livio : Come Liviobot

[2020-04-06 18:14:00] Liviobot : ...I'm all out of gum.

[2020-04-06 18:14:00] jak1 : ah man -.-'

[2020-04-06 18:14:01] Jesusalva : LOL

[2020-04-06 18:14:05] Livio : Come Liviobot

[2020-04-06 18:14:05] Liviobot : Grr!!!

[2020-04-06 18:14:06] Myu. : omg

[2020-04-06 18:14:09] Livio : Come Liviobot

[2020-04-06 18:14:09] Liviobot : Target acquired!

[2020-04-06 18:14:16] Livio : Come Liviobot

[2020-04-06 18:14:16] Liviobot : Target acquired!

[2020-04-06 18:14:20] Livio : Come Liviobot

[2020-04-06 18:14:20] Liviobot : I'm better than makeup artists, prepare yourself!!!

[2020-04-06 18:14:28] Livio : Soul tree yeah!

[2020-04-06 18:14:38] matto : are you gonna stick ppl with your needles?

[2020-04-06 18:14:41] [Livio ->] !equip 906

[2020-04-06 18:14:48] Livio : Noo, dammit!

[2020-04-06 18:14:52] Myu. : where is the soul menhir? xD

[2020-04-06 18:15:09] Myu. : ohh i liked the tree

[2020-04-06 18:15:11] Livio : Jesusalva I need your magic again... :(

[2020-04-06 18:15:29] [Livio ->] !unequip 906

[2020-04-06 18:15:35] Myu. : iiih

[2020-04-06 18:15:37] Jesusalva : xD

[2020-04-06 18:15:51] [Livio ->] Wait. Let me he remove all his clothes.

[2020-04-06 18:15:54] Jesusalva : Done

[2020-04-06 18:15:55] Livio : Wait. Let me he remove all his clothes.

[2020-04-06 18:16:05] [Livio ->] !turn down

[2020-04-06 18:16:05] Jesusalva : But you still need to cause a map resync

[2020-04-06 18:16:11] Jesusalva : by eg. going in archery and coming back

[2020-04-06 18:16:36] matto : did you commit suicide Jes?

[2020-04-06 18:16:44] Jesusalva : *blames invisible GMs*

[2020-04-06 18:16:45] jak1 : hes just tired

[2020-04-06 18:16:46] Myu. : xDD

[2020-04-06 18:16:48] Jesusalva : Well

[2020-04-06 18:16:52] [Livio ->] !goto 46 41

[2020-04-06 18:16:52] Jesusalva : I did went to bed 06:00

[2020-04-06 18:16:55] Jesusalva : And woke up at 10:00

[2020-04-06 18:16:56] [Livio ->] !goto 46 41

[2020-04-06 18:16:59] Jesusalva : So... Yeah :-D

[2020-04-06 18:17:06] [Livio ->] !move 46 41

[2020-04-06 18:17:07] matto : that's solid 4 hours dont complain

[2020-04-06 18:17:09] [Livio ->] !commands

[2020-04-06 18:17:09] [-> Livio] attack, bug, bugs, close, commands, down, drop, emote, equip, follow, goto, help, history, info, input, inventory, invlist, joke, left, lvlup, nearby, pickup, retrieve, right, say, sell, sit, status, store, story, talk2npc, turn, unequip, up, use, where, xcal, xudate, xuf, xupom, zeny

[2020-04-06 18:17:18] [Livio ->] !goto 46 42

[2020-04-06 18:17:29] [Livio ->] !right

[2020-04-06 18:17:31] [Livio ->] !right

[2020-04-06 18:17:33] [Livio ->] !right

[2020-04-06 18:17:34] [Livio ->] !right

[2020-04-06 18:17:44] Myu. : xDD

[2020-04-06 18:18:15] [Livio ->] !say ad

[2020-04-06 18:18:19] [Livio ->] !goto 46 42

[2020-04-06 18:18:23] matto : Liviobot is powerless against Myu

[2020-04-06 18:18:26] Myu. : thats my icon!!! xD

[2020-04-06 18:18:27] [Livio ->] !goto 48 41

[2020-04-06 18:18:38] Livio : !attack Myu.

[2020-04-06 18:18:44] Liviobot : ...I'm all out of gum.

[2020-04-06 18:18:44] Liviobot : Alright!!!

[2020-04-06 18:18:56] Livio : !attack kytty

[2020-04-06 18:18:56] Liviobot : Excuse me?

[2020-04-06 18:19:01] Livio : !attack Jesusalva

[2020-04-06 18:19:06] Liviobot : Yay it's Jesusalva!

[2020-04-06 18:19:10] Livio : !attack jak1

[2020-04-06 18:19:16] Liviobot : Alright!!!

[2020-04-06 18:19:16] Liviobot : I'm better than makeup artists, prepare yourself!!!

[2020-04-06 18:19:25] Jersey Devil : There is an emoji to say, 'I am having trouble pooping."

[2020-04-06 18:19:36] Myu. : ...

[2020-04-06 18:19:40] Livio : !attack Myu.

[2020-04-06 18:19:41] Liviobot : I don't know what you are talking about

[2020-04-06 18:19:45] Myu. : EYY

[2020-04-06 18:19:55] Myu. : dont even try!!

[2020-04-06 18:19:57] Livio : !goto 57 40

[2020-04-06 18:20:00] [Livio ->] !goto 57 40

[2020-04-06 18:20:06] Myu. : :DDD

[2020-04-06 18:20:08] Jersey Devil : ‚Sell [Iron Ore] (1000GP) 200, 

[2020-04-06 18:20:28] Livio : *burns Liviobot*

[2020-04-06 18:20:28] Liviobot : *is flaming*

[2020-04-06 18:20:51] Livio : *burns Liviobot*

[2020-04-06 18:20:51] Liviobot : Oh hot.. hot hot!

[2020-04-06 18:20:58] Livio : !xuf

[2020-04-06 18:20:58] Liviobot : Livio: If you would keep a secret from an enemy, tell it not to a friend.

[2020-04-06 18:21:07] Myu. : sit down Liviobot! i dont want to stay xD

[2020-04-06 18:21:14] [Livio ->] !sit

[2020-04-06 18:21:20] Livio : !sit

[2020-04-06 18:21:26] Livio : !xuf

[2020-04-06 18:21:26] Liviobot : Livio: A Linux machine! because a 486 is a terrible thing to waste!
(By jjs@wintermute.ucr.edu, Joe Sloan)

[2020-04-06 18:21:26] Myu. : xD

[2020-04-06 18:22:04] Myu. : !stay

[2020-04-06 18:22:15] Myu. : hm

[2020-04-06 18:22:15] Jersey Devil : Linux is a beautiful thing...

[2020-04-06 18:22:28] Myu. : have one too

[2020-04-06 18:22:42] Jersey Devil : Which distro?

[2020-04-06 18:22:52] Livio : Distrouction.

[2020-04-06 18:22:58] Jesusalva : lol

[2020-04-06 18:23:15] Jersey Devil : PUDDING!!!

[2020-04-06 18:23:24] Myu. : yummy

[2020-04-06 18:23:25] Livio : No Debian 10 here.

[2020-04-06 18:23:35] Livio : !xudate

[2020-04-06 18:23:35] Liviobot : Livio: Mon Apr  6 18:23:35 CEST 2020

[2020-04-06 18:23:47] Jersey Devil : The last Debian I used was 9.90

[2020-04-06 18:24:17] Jersey Devil : I am on Ubuntu Studio 19.10 now...

[2020-04-06 18:24:21] Livio : Draw something on that face.

[2020-04-06 18:24:40] Jersey Devil : I KNOW WHAT TO DRAW!!!

[2020-04-06 18:24:46] Myu. : ?

[2020-04-06 18:25:05] Jersey Devil : It is a particular thing that is used regularly...

[2020-04-06 18:25:14] Livio : A glass?

[2020-04-06 18:25:22] Myu. : a handy xD

[2020-04-06 18:25:25] Livio : The CAPS LOCK?

[2020-04-06 18:25:26] Jersey Devil : A body part...

[2020-04-06 18:25:49] Myu. : not ur brain xD

[2020-04-06 18:25:55] Jersey Devil : No...

[2020-04-06 18:25:55] Livio : There's an admin and some GM in disguise. Choose carefully...

[2020-04-06 18:26:07] Jersey Devil : A little lower... But I dare not say...

[2020-04-06 18:26:21] Livio : !attack Jersey Devil

[2020-04-06 18:26:27] Liviobot : I have some pain to deliver.

[2020-04-06 18:26:27] Liviobot : The show begins...

[2020-04-06 18:26:29] Jersey Devil : Hehe!!!

[2020-04-06 18:26:31] Myu. : xD

[2020-04-06 18:26:35] Jersey Devil : That tickles!

[2020-04-06 18:26:37] [Livio ->] !sit

[2020-04-06 18:27:01] Livio : !attack matto

[2020-04-06 18:27:07] Liviobot : Grr!!!

[2020-04-06 18:27:07] Liviobot : Fire at will!!!

[2020-04-06 18:27:17] Jersey Devil : Who is Will?

[2020-04-06 18:27:17] [Livio ->] !left

[2020-04-06 18:27:25] [Livio ->] !right

[2020-04-06 18:27:29] [Livio ->] !left

[2020-04-06 18:27:32] [Livio ->] !left

[2020-04-06 18:27:34] [Livio ->] !right

[2020-04-06 18:27:38] [Livio ->] !down

[2020-04-06 18:27:42] [Livio ->] !sit

[2020-04-06 18:27:55] [Livio ->] !up

[2020-04-06 18:27:59] [Livio ->] !sit

[2020-04-06 18:28:13] [Livio ->] !up

[2020-04-06 18:28:19] [Livio ->] !down

[2020-04-06 18:28:23] [Livio ->] !down

[2020-04-06 18:28:23] Jersey Devil : Chuck Norris doesn't sleep... He waits.

[2020-04-06 18:28:25] [Livio ->] !up

[2020-04-06 18:28:42] Liviobot : lol

[2020-04-06 18:29:04] Livio : Let me see if I can try to fix say command.

[2020-04-06 18:29:17] [Livio ->] !up

[2020-04-06 18:29:20] [Livio ->] !down

[2020-04-06 18:29:57] Myu. : what is this $?

[2020-04-06 18:30:13] Liviobot : I'm a shop!

[2020-04-06 18:30:29] Jesusalva : When there's not a GM in disguise, anyway?

[2020-04-06 18:30:57] Liviobot : Yeah, double job to make a living.

[2020-04-06 18:32:07] Liviobot : Rebooting!

[2020-04-06 18:32:14] Loaded itemdb from itemdb.txt

[2020-04-06 18:32:14] Plugin chatbot loaded

[2020-04-06 18:32:14] Plugin npc loaded

[2020-04-06 18:32:14] Plugin autofollow loaded

[2020-04-06 18:32:14] Plugin manaboy loaded

[2020-04-06 18:32:14] Plugin xcom loaded

[2020-04-06 18:32:14] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 18:32:14] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 18:32:14] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 18:32:14] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 18:32:14] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 18:32:14] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 18:32:26] [Livio ->] !left

[2020-04-06 18:32:41] Jesusalva : o.o

[2020-04-06 18:32:44] [Livio ->] !say asd

[2020-04-06 18:34:20] Loaded itemdb from itemdb.txt

[2020-04-06 18:34:20] Plugin chatbot loaded

[2020-04-06 18:34:20] Plugin npc loaded

[2020-04-06 18:34:20] Plugin autofollow loaded

[2020-04-06 18:34:20] Plugin manaboy loaded

[2020-04-06 18:34:20] Plugin xcom loaded

[2020-04-06 18:34:21] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 18:34:21] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 18:34:21] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 18:34:21] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 18:34:21] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 18:34:21] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 18:34:31] [Livio ->] !say asd

[2020-04-06 18:34:31] Liviobot : asd

[2020-04-06 18:34:42] Livio : Jesusalva?

[2020-04-06 18:34:53] Livio : You should be able to use him to talk.

[2020-04-06 18:35:03] [Livio ->] !say Hello!

[2020-04-06 18:35:03] Liviobot : Hello!

[2020-04-06 18:36:25] Loaded itemdb from itemdb.txt

[2020-04-06 18:36:25] Plugin chatbot loaded

[2020-04-06 18:36:25] Plugin npc loaded

[2020-04-06 18:36:25] Plugin autofollow loaded

[2020-04-06 18:36:25] Plugin manaboy loaded

[2020-04-06 18:36:25] Plugin xcom loaded

[2020-04-06 18:36:25] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 18:36:25] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 18:36:25] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 18:36:25] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 18:36:25] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 18:36:25] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 18:36:44] [Livio ->] !say ##GGrraur!

[2020-04-06 18:36:44] Liviobot : ##GGrraur!

[2020-04-06 18:37:04] [Livio ->] !equip 906

[2020-04-06 18:37:16] [Livio ->] !say *alien*

[2020-04-06 18:37:16] Liviobot : *alien*

[2020-04-06 18:37:26] [Livio ->] !emote 33

[2020-04-06 18:37:41] Livio : !emote 39

[2020-04-06 18:37:45] [Livio ->] !emote 39

[2020-04-06 18:37:50] [Livio ->] !emote 40

[2020-04-06 18:37:55] [Livio ->] !emote 40

[2020-04-06 18:38:03] [Livio ->] !emote 39

[2020-04-06 18:38:04] [Livio ->] !emote 40

[2020-04-06 18:38:17] Myu. : *is goind offline now*

[2020-04-06 18:38:20] Livio : Hmm. 40th emote doesn't work.

[2020-04-06 18:38:27] Livio : See you next time!

[2020-04-06 18:38:30] Myu. : byebye

[2020-04-06 18:39:30] Loaded itemdb from itemdb.txt

[2020-04-06 18:39:30] Plugin chatbot loaded

[2020-04-06 18:39:30] Plugin npc loaded

[2020-04-06 18:39:30] Plugin autofollow loaded

[2020-04-06 18:39:30] Plugin manaboy loaded

[2020-04-06 18:39:30] Plugin xcom loaded

[2020-04-06 18:39:30] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 18:39:30] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 18:39:30] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 18:39:30] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 18:39:30] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 18:39:30] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 18:39:53] [GM] Progress:  1842/2400 @@m1338|@@

[2020-04-06 18:40:12] [Livio ->] !say Progress:  1842/2400 @@m1338|@@

[2020-04-06 18:40:12] Liviobot : Progress:  1842/2400 @@m1338|@@

[2020-04-06 18:40:27] Livio : unnamed

[2020-04-06 18:40:29] Livio : ?

[2020-04-06 18:40:42] [GM] Progress:  1842/2400 @@m1138|@@

[2020-04-06 18:40:44] Jesusalva : There

[2020-04-06 18:42:06] [Livio ->] !say Progress:  1842/2400 @@m1038|@@

[2020-04-06 18:42:06] Liviobot : Progress:  1842/2400 @@m1038|@@

[2020-04-06 18:42:26] [Livio ->] !say !attack @@m1038|@@

[2020-04-06 18:42:26] Liviobot : !attack @@m1038|@@

[2020-04-06 18:42:27] Liviobot : What about my reward?

[2020-04-06 18:42:36] [Livio ->] !say attack @@m1038|@@

[2020-04-06 18:42:36] Liviobot : attack @@m1038|@@

[2020-04-06 18:47:52] Livio : Ha!

[2020-04-06 18:47:57] Livio : Here you are...

[2020-04-06 18:50:05] jak1 : erm Jes?

[2020-04-06 18:50:09] Jesusalva : Hi

[2020-04-06 18:50:43] jak1 : can i push to a branch @tmwa?

[2020-04-06 18:50:58] Jesusalva : NO CHANGES TO TMWA REPO >:-D

[2020-04-06 18:51:07] Jesusalva : *will not break the VM trying to recompile it*

[2020-04-06 18:51:07] jak1 : lol

[2020-04-06 18:51:28] Jesusalva : What if I try to recompile it and it fails? They just dropped gcc-7 out of the roof

[2020-04-06 18:51:38] Jesusalva : -.-'

[2020-04-06 18:51:39] jak1 : i mean my own branch there insteed of that weird repo on my useracc

[2020-04-06 18:51:55] Jesusalva : I gtg anyway

[2020-04-06 18:52:09] Jesusalva : All changes to TMWA must imperatively pass by gumi or someone else who is not me :-D

[2020-04-06 18:52:19] Jesusalva : Server or Client i can still handle tho

[2020-04-06 18:52:28] Loaded itemdb from itemdb.txt

[2020-04-06 18:52:28] Plugin chatbot loaded

[2020-04-06 18:52:28] Plugin npc loaded

[2020-04-06 18:52:28] Plugin autofollow loaded

[2020-04-06 18:52:28] Plugin manaboy loaded

[2020-04-06 18:52:28] Plugin xcom loaded

[2020-04-06 18:52:28] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 18:52:28] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 18:52:28] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 18:52:28] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 18:52:28] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 18:52:28] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 18:52:39] [Livio ->] !info

[2020-04-06 18:52:39] [-> Livio] [Forum][Sources] Try !commands for list of commands

[2020-04-06 18:52:39] [-> Livio] This is an experimental bot.

[2020-04-06 18:52:59] Watch TV : hello

[2020-04-06 18:53:02] jak1 : thats what i mean... the clientdata a branch jak1/shades funny u

[2020-04-06 18:53:09] Okurwieniec : hi

[2020-04-06 18:53:14] jak1 : *facepalm*

[2020-04-06 18:54:25] jak1 : ok, nvm XD

[2020-04-06 18:55:02] Loaded itemdb from itemdb.txt

[2020-04-06 18:55:02] Plugin chatbot loaded

[2020-04-06 18:55:02] Plugin npc loaded

[2020-04-06 18:55:02] Plugin autofollow loaded

[2020-04-06 18:55:02] Plugin manaboy loaded

[2020-04-06 18:55:03] Plugin xcom loaded

[2020-04-06 18:55:03] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 18:55:03] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 18:55:03] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 18:55:03] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 18:55:03] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 18:55:03] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 18:55:12] [Livio ->] !emotex

[2020-04-06 18:57:33] Loaded itemdb from itemdb.txt

[2020-04-06 18:57:33] Plugin chatbot loaded

[2020-04-06 18:57:33] Plugin npc loaded

[2020-04-06 18:57:33] Plugin autofollow loaded

[2020-04-06 18:57:33] Plugin manaboy loaded

[2020-04-06 18:57:33] Plugin xcom loaded

[2020-04-06 18:57:33] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 18:57:33] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 18:57:33] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 18:57:33] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 18:57:33] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 18:57:33] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 18:57:38] [Livio ->] !emotex

[2020-04-06 18:58:31] [Livio ->] !emotex

[2020-04-06 18:59:10] [Livio ->] !info

[2020-04-06 18:59:10] [-> Livio] [Forum][Sources] Try !commands for list of commands

[2020-04-06 18:59:10] [-> Livio] This is an experimental bot.

[2020-04-06 19:00:27] Loaded itemdb from itemdb.txt

[2020-04-06 19:00:27] Plugin chatbot loaded

[2020-04-06 19:00:27] Plugin npc loaded

[2020-04-06 19:00:27] Plugin autofollow loaded

[2020-04-06 19:00:27] Plugin manaboy loaded

[2020-04-06 19:00:27] Plugin xcom loaded

[2020-04-06 19:00:27] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 19:00:27] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 19:00:27] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 19:00:27] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 19:00:27] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 19:00:27] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 19:00:32] [Livio ->] !spinner

[2020-04-06 19:00:53] jak1 : did a new PR, was to lazy to edit it at all X'D

[2020-04-06 19:01:06] Livio : A what?

[2020-04-06 19:01:14] Livio : You stomped on Jesusalva.

[2020-04-06 19:01:19] [Livio ->] !spinner

[2020-04-06 19:02:05] Livio : Ah, pull request...

[2020-04-06 19:02:19] [Livio ->] !spinner

[2020-04-06 19:02:35] jak1 : that was for jes @PR, and it was his fault it got broken, so i can stomp on him :-P

[2020-04-06 19:02:51] [Livio ->] !spinner

[2020-04-06 19:04:08] [Livio ->] !emotex

[2020-04-06 19:04:48] [Livio ->] !spinner

[2020-04-06 19:05:33] Loaded itemdb from itemdb.txt

[2020-04-06 19:05:33] Plugin chatbot loaded

[2020-04-06 19:05:33] Plugin npc loaded

[2020-04-06 19:05:33] Plugin autofollow loaded

[2020-04-06 19:05:33] Plugin manaboy loaded

[2020-04-06 19:05:33] Plugin xcom loaded

[2020-04-06 19:05:33] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 19:05:33] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 19:05:33] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 19:05:33] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 19:05:33] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 19:05:33] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 19:05:38] [Livio ->] !spinner

[2020-04-06 19:06:04] Loaded itemdb from itemdb.txt

[2020-04-06 19:06:04] Plugin chatbot loaded

[2020-04-06 19:06:04] Plugin npc loaded

[2020-04-06 19:06:04] Plugin autofollow loaded

[2020-04-06 19:06:04] Plugin manaboy loaded

[2020-04-06 19:06:04] Plugin xcom loaded

[2020-04-06 19:06:04] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 19:06:04] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 19:06:04] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 19:06:04] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 19:06:04] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 19:06:04] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 19:06:11] [Livio ->] !spinner

[2020-04-06 19:07:16] Loaded itemdb from itemdb.txt

[2020-04-06 19:07:16] Plugin chatbot loaded

[2020-04-06 19:07:16] Plugin npc loaded

[2020-04-06 19:07:16] Plugin autofollow loaded

[2020-04-06 19:07:16] Plugin manaboy loaded

[2020-04-06 19:07:16] Plugin xcom loaded

[2020-04-06 19:07:17] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 19:07:17] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 19:07:17] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 19:07:17] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 19:07:17] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 19:07:17] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 19:07:21] [Livio ->] !spinner

[2020-04-06 19:07:57] Loaded itemdb from itemdb.txt

[2020-04-06 19:07:57] Plugin chatbot loaded

[2020-04-06 19:07:57] Plugin npc loaded

[2020-04-06 19:07:57] Plugin autofollow loaded

[2020-04-06 19:07:57] Plugin manaboy loaded

[2020-04-06 19:07:57] Plugin xcom loaded

[2020-04-06 19:07:57] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 19:07:57] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 19:07:57] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 19:07:57] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 19:07:57] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 19:07:57] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 19:08:01] [Livio ->] !spinner

[2020-04-06 19:09:31] jak1 : passed too, so... im fine :)

[2020-04-06 19:09:59] Loaded itemdb from itemdb.txt

[2020-04-06 19:09:59] Plugin chatbot loaded

[2020-04-06 19:09:59] Plugin npc loaded

[2020-04-06 19:09:59] Plugin autofollow loaded

[2020-04-06 19:09:59] Plugin manaboy loaded

[2020-04-06 19:09:59] Plugin xcom loaded

[2020-04-06 19:09:59] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 19:09:59] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 19:09:59] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 19:09:59] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 19:09:59] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 19:09:59] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 19:10:05] [Livio ->] !spinner

[2020-04-06 19:10:52] Loaded itemdb from itemdb.txt

[2020-04-06 19:10:52] Plugin chatbot loaded

[2020-04-06 19:10:52] Plugin npc loaded

[2020-04-06 19:10:52] Plugin autofollow loaded

[2020-04-06 19:10:52] Plugin manaboy loaded

[2020-04-06 19:10:52] Plugin xcom loaded

[2020-04-06 19:10:52] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 19:10:52] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 19:10:52] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 19:10:52] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 19:10:52] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 19:10:52] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 19:10:57] [Livio ->] !spinner

[2020-04-06 19:11:27] Loaded itemdb from itemdb.txt

[2020-04-06 19:11:27] Plugin chatbot loaded

[2020-04-06 19:11:27] Plugin npc loaded

[2020-04-06 19:11:27] Plugin autofollow loaded

[2020-04-06 19:11:27] Plugin manaboy loaded

[2020-04-06 19:11:27] Plugin xcom loaded

[2020-04-06 19:11:28] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 19:11:28] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 19:11:28] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 19:11:28] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 19:11:28] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 19:11:28] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 19:11:31] [Livio ->] !spinner

[2020-04-06 19:16:38] Loaded itemdb from itemdb.txt

[2020-04-06 19:16:38] Plugin chatbot loaded

[2020-04-06 19:16:38] Plugin npc loaded

[2020-04-06 19:16:38] Plugin autofollow loaded

[2020-04-06 19:16:38] Plugin manaboy loaded

[2020-04-06 19:16:38] Plugin xcom loaded

[2020-04-06 19:16:38] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 19:16:38] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 19:16:38] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 19:16:38] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 19:16:38] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 19:16:38] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 19:16:45] [Livio ->] !spinner

[2020-04-06 19:19:04] Loaded itemdb from itemdb.txt

[2020-04-06 19:19:04] Plugin chatbot loaded

[2020-04-06 19:19:04] Plugin npc loaded

[2020-04-06 19:19:04] Plugin autofollow loaded

[2020-04-06 19:19:04] Plugin manaboy loaded

[2020-04-06 19:19:04] Plugin xcom loaded

[2020-04-06 19:19:04] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 19:19:04] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 19:19:04] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 19:19:04] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 19:19:04] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 19:19:04] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 19:19:10] [Livio ->] !spinner

[2020-04-06 19:19:28] Livio : I'm a bit tired...

[2020-04-06 19:20:26] jak1 : 7:20pm here, so not tired XD

[2020-04-06 19:20:39] [Livio ->] !spinner

[2020-04-06 19:20:47] jak1 : just lazy XD

[2020-04-06 19:20:48] Livio : Yeah...

[2020-04-06 19:21:00] [Livio ->] !spinner

[2020-04-06 19:21:20] Livio : Wanna try?

[2020-04-06 19:21:29] jak1 : sure

[2020-04-06 19:21:36] Livio : Command is "!spinner"

[2020-04-06 19:21:48] [jak1 ->] !spinner

[2020-04-06 19:22:00] Livio : !spinner

[2020-04-06 19:22:20] Livio : Now if we got more bots we can make them spin together.

[2020-04-06 19:22:43] jak1 : i think 3 in town are enough XD

[2020-04-06 19:23:01] Livio : !spinner

[2020-04-06 19:23:41] Livio : !xuf

[2020-04-06 19:23:41] Liviobot : Livio: "What the scientists have in their briefcases is terrifying."
		-- Nikita Khrushchev

[2020-04-06 19:23:52] jak1 : afk

[2020-04-06 19:23:58] Jesusalva : o.o

[2020-04-06 19:24:04] jak1 : hm?

[2020-04-06 19:24:05] [Livio ->] !spinner

[2020-04-06 19:24:16] [Livio ->] !spinner

[2020-04-06 19:24:24] Jesusalva : *gets dizzy*

[2020-04-06 19:24:24] [warp] 009-2 (149,43)

[2020-04-06 19:24:32] [Livio ->] !use 808

[2020-04-06 19:24:32] [warp] 009-1 (54,39)

[2020-04-06 19:24:34] [Livio ->] !spinner

[2020-04-06 19:24:42] Jesusalva : It spinned 'till the last death frame

[2020-04-06 19:24:42] jak1 : he responses to afk... thats more weired then usualy @Jesusalva

[2020-04-06 19:24:56] Livio : Hey Jesusalva, give me a second.

[2020-04-06 19:26:28] jak1 : Jesusalva i made a new PR, was to lazy to solve it, and the filenames would be broken too XD

[2020-04-06 19:27:15] [Livio ->] !spinner

[2020-04-06 19:27:32] [Livio ->] !spinner

[2020-04-06 19:28:16] [Livio ->] !spinner

[2020-04-06 19:28:42] [Livio ->] !emotex

[2020-04-06 19:30:24] Loaded itemdb from itemdb.txt

[2020-04-06 19:30:24] Plugin chatbot loaded

[2020-04-06 19:30:24] Plugin npc loaded

[2020-04-06 19:30:24] Plugin autofollow loaded

[2020-04-06 19:30:24] Plugin manaboy loaded

[2020-04-06 19:30:24] Plugin xcom loaded

[2020-04-06 19:30:24] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 19:30:24] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 19:30:24] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 19:30:24] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 19:30:24] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 19:30:24] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 19:30:30] Server : PvP On

[2020-04-06 19:31:01] [Livio ->] !spinner

[2020-04-06 19:31:25] [Livio ->] Liviobot is unbeatable now.

[2020-04-06 19:31:28] Livio : Liviobot is unbeatable now.

[2020-04-06 19:31:42] jak1 : still hidden... as i said XD

[2020-04-06 19:31:50] [Livio ->] !spinner

[2020-04-06 19:32:04] [Livio ->] !attack VladTepes

[2020-04-06 19:32:10] Liviobot : Yeah! A challenge!

[2020-04-06 19:32:10] VladTepes : wtf

[2020-04-06 19:32:10] Liviobot : Whoa, dammit!

[2020-04-06 19:32:12] [Livio ->] !attack VladTepes

[2020-04-06 19:32:18] Liviobot : Come on!

[2020-04-06 19:32:18] Liviobot : Yeah! A challenge!

[2020-04-06 19:32:18] Livio : !attack VladTepes

[2020-04-06 19:32:24] Liviobot : Target acquired!

[2020-04-06 19:32:24] VladTepes : dam

[2020-04-06 19:32:24] Liviobot : Ha!

[2020-04-06 19:32:24] VladTepes : u make something

[2020-04-06 19:32:31] Livio : Naah...

[2020-04-06 19:32:31] VladTepes : cheater

[2020-04-06 19:32:48] Livio : Now that he is in bot group he cannot attack or being attacked.

[2020-04-06 19:32:56] VladTepes : ohh

[2020-04-06 19:32:59] Server : PvP Off

[2020-04-06 19:32:59] [-> Livio] Server : PvP Off

[2020-04-06 19:33:13] Livio : At least he will survive from a spawn party.

[2020-04-06 19:36:41] Loaded itemdb from itemdb.txt

[2020-04-06 19:36:41] Plugin chatbot loaded

[2020-04-06 19:36:41] Plugin npc loaded

[2020-04-06 19:36:41] Plugin autofollow loaded

[2020-04-06 19:36:41] Plugin manaboy loaded

[2020-04-06 19:36:41] Plugin xcom loaded

[2020-04-06 19:36:41] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 19:36:41] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 19:36:41] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 19:36:41] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 19:36:41] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 19:36:41] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 19:36:57] Livio : Hmm...

[2020-04-06 19:37:02] Livio : Right now I need the bot to die.

[2020-04-06 19:37:10] Livio : But it can't be killed...

[2020-04-06 19:37:36] VladTepes : [Mylarin Dust] finaly

[2020-04-06 19:37:48] jak1 : gz

[2020-04-06 19:37:57] VladTepes : i m going for that sword

[2020-04-06 19:38:01] Livio : jak1 can you kill Liviobot?

[2020-04-06 19:38:10] jak1 : im not a gm livio^^

[2020-04-06 19:38:17] Livio : Ah...

[2020-04-06 19:38:18] jak1 : or any gmlvl^^

[2020-04-06 19:38:29] Livio : Hmm... Wait.

[2020-04-06 19:38:38] Livio : He is a GM level 2 maybe he can kill himself...

[2020-04-06 19:38:48] jak1 : hes gm lvl1

[2020-04-06 19:39:01] Livio : Oh, well...

[2020-04-06 19:39:31] Livio : Wait, can you bring here jak2 after I push?

[2020-04-06 19:39:39] Okurwieniec : he can call big foot ?

[2020-04-06 19:39:48] Livio : I wish to.

[2020-04-06 19:40:24] Loaded itemdb from itemdb.txt

[2020-04-06 19:40:25] Plugin chatbot loaded

[2020-04-06 19:40:25] Plugin npc loaded

[2020-04-06 19:40:25] Plugin autofollow loaded

[2020-04-06 19:40:25] Plugin manaboy loaded

[2020-04-06 19:40:25] Plugin xcom loaded

[2020-04-06 19:40:25] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 19:40:25] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 19:40:25] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 19:40:25] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 19:40:25] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 19:40:25] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 19:40:33] Livio : Pushed.

[2020-04-06 19:41:08] jak1 : sure

[2020-04-06 19:41:27] Livio : Enable PvP so we can kill him.

[2020-04-06 19:41:45] jak1 : then i need to pull, but... there are to much changes @strucure ^^

[2020-04-06 19:41:59] jak1 : or didnt u change anyting else?

[2020-04-06 19:42:15] Livio : I've added some features, nothing important.

[2020-04-06 19:42:22] jak1 : ok

[2020-04-06 19:42:29] Livio : If you have to change too many things just give up.

[2020-04-06 19:42:33] VladTepes : time to be warrior for test this weapon

[2020-04-06 19:42:43] Livio : I will ask someone else to kill Liviobot if possible.

[2020-04-06 19:42:52] Livio : Here he is!

[2020-04-06 19:43:12] [Livio ->] !say @pvp on

[2020-04-06 19:43:13] Server : PvP On

[2020-04-06 19:43:15] [Livio ->] !say @pvp off

[2020-04-06 19:43:23] Livio : Try with: !say @pvp on

[2020-04-06 19:43:28] [Livio ->] !say @pvp off

[2020-04-06 19:43:28] Server : PvP Off

[2020-04-06 19:43:52] jak1 : w8

[2020-04-06 19:44:12] jak1 : hf XD

[2020-04-06 19:44:20] Livio : Nope..

[2020-04-06 19:44:24] jak1 : what?

[2020-04-06 19:44:32] Livio : That's not the latest master branch.

[2020-04-06 19:44:49] jak1 : hes @hospital

[2020-04-06 19:44:57] Livio : Let me check in hospital.

[2020-04-06 19:51:14] Reny : heyall

[2020-04-06 19:51:21] Reny : peace

[2020-04-06 19:51:25] matto : hiya Reny

[2020-04-06 19:51:53] Reny : whats new

[2020-04-06 19:56:25] matto : wb Myu

[2020-04-06 19:56:30] Myu. : :D

[2020-04-06 19:57:10] Livio : You have to put coordinates by hand.

[2020-04-06 19:57:14] Jesusalva : hi

[2020-04-06 19:59:00] Loaded itemdb from itemdb.txt

[2020-04-06 19:59:00] Plugin chatbot loaded

[2020-04-06 19:59:00] Plugin npc loaded

[2020-04-06 19:59:00] Plugin autofollow loaded

[2020-04-06 19:59:00] Plugin manaboy loaded

[2020-04-06 19:59:00] Plugin xcom loaded

[2020-04-06 19:59:00] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 19:59:01] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 19:59:01] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 19:59:01] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 19:59:01] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 19:59:01] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 19:59:05] jak2 : grrr

[2020-04-06 19:59:14] Livio : !spinner

[2020-04-06 19:59:29] Livio : Oh, sorry jak1..

[2020-04-06 20:00:08] Loaded itemdb from itemdb.txt

[2020-04-06 20:00:08] Plugin chatbot loaded

[2020-04-06 20:00:08] Plugin npc loaded

[2020-04-06 20:00:08] Plugin autofollow loaded

[2020-04-06 20:00:08] Plugin manaboy loaded

[2020-04-06 20:00:08] Plugin xcom loaded

[2020-04-06 20:00:08] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 20:00:08] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 20:00:08] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 20:00:08] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 20:00:08] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 20:00:08] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 20:00:15] jak1 : if u want to merge the structure branch, u can do it... is tested :)

[2020-04-06 20:00:19] Livio : Jesusalva?

[2020-04-06 20:00:30] Livio : Can you please stomp Liviobot while spinning?

[2020-04-06 20:00:51] [Livio ->] !spinner

[2020-04-06 20:00:59] Buy-N-Large : ‚Sell [Topaz Ring] (250000GP), [Ruby Ring] (250000GP), [Rock Knife] (75000GP) 2, [Bone Knife] (75000GP) 2, [Dark Green Wizard Hat] (150000GP), [Iron Ore] (1000GP) 200, [Hitchhiker's Towel] (500GP) 160, 

[2020-04-06 20:01:01] [Livio ->] !attack Myu.

[2020-04-06 20:01:07] Liviobot : Fire at will!!!

[2020-04-06 20:01:07] Buy-N-Large : Why you smilin'?

[2020-04-06 20:01:07] Liviobot : I'm better than makeup artists, prepare yourself!!!

[2020-04-06 20:01:09] [Livio ->] !spinner

[2020-04-06 20:01:24] [Livio ->] !right

[2020-04-06 20:01:27] [Livio ->] !down

[2020-04-06 20:01:37] [Livio ->] !say Yay!

[2020-04-06 20:01:37] Liviobot : Yay!

[2020-04-06 20:01:39] [Livio ->] !spinner

[2020-04-06 20:01:47] [Livio ->] !say Yay!

[2020-04-06 20:01:47] [Livio ->] !spinner

[2020-04-06 20:01:54] [Livio ->] !say Yay!

[2020-04-06 20:01:54] Liviobot : Yay!

[2020-04-06 20:01:54] [Livio ->] !spinner

[2020-04-06 20:02:02] Liviobot : Yay!

[2020-04-06 20:02:04] Buy-N-Large : HEY EVERYONE!!!

[2020-04-06 20:02:05] Liviobot : Hello Buy-N-Large!!!

[2020-04-06 20:02:05] Myu. : what are these hearts?

[2020-04-06 20:02:07] Livio : So it's commands are bufferized...

[2020-04-06 20:02:10] Buy-N-Large : BUY MY CRAP!!!

[2020-04-06 20:02:13] Livio : It's the hug!

[2020-04-06 20:02:16] jak1 : !sit Liviobot

[2020-04-06 20:02:19] Myu. : ?

[2020-04-06 20:02:23] jak1 : oh i forgot lol

[2020-04-06 20:02:23] Livio : Try writing "/me hugs tomatto".

[2020-04-06 20:02:53] Livio : First, you have to whisper sitting command. Second, it's a troll and can't sit.

[2020-04-06 20:03:18] Livio : Does it works for you Myu.?

[2020-04-06 20:03:26] Myu. : "/me hugs tomatto"

[2020-04-06 20:03:36] Livio : Without quotes.

[2020-04-06 20:03:38] jak1 : without quotes

[2020-04-06 20:03:59] Myu. : omg

[2020-04-06 20:04:13] [Livio ->] !say /me hugs Myu.

[2020-04-06 20:04:13] Liviobot : /me hugs Myu.

[2020-04-06 20:04:20] [Livio ->] !say *hugs Myu.*

[2020-04-06 20:04:34] [Livio ->] !say Bots cannot use /me.

[2020-04-06 20:04:34] Liviobot : Bots cannot use /me.

[2020-04-06 20:04:52] [Livio ->] !say They must enclose sentence between stars.

[2020-04-06 20:04:53] Liviobot : They must enclose sentence between stars.

[2020-04-06 20:04:55] jak1 : just use *hugs ...*

[2020-04-06 20:05:01] [Livio ->] !turn right

[2020-04-06 20:05:07] [Livio ->] !emote 1

[2020-04-06 20:05:34] [Livio ->] !spinner

[2020-04-06 20:05:45] Myu. : s

[2020-04-06 20:05:57] Livio : s?

[2020-04-06 20:06:15] jak1 : ./sit schould work too^^

[2020-04-06 20:06:38] [Livio ->] !say /sit

[2020-04-06 20:06:38] Liviobot : /sit

[2020-04-06 20:06:45] Myu. : !sit

[2020-04-06 20:06:46] [Livio ->] !say *sit*

[2020-04-06 20:06:46] Liviobot : *sit*

[2020-04-06 20:06:59] [Livio ->] !spinner

[2020-04-06 20:07:06] [Livio ->] !say asd

[2020-04-06 20:07:06] Liviobot : asd

[2020-04-06 20:07:11] Myu. : ?

[2020-04-06 20:07:22] [Livio ->] !emotex

[2020-04-06 20:08:01] [Livio ->] !spinner

[2020-04-06 20:08:09] kzexio : look my new book liviobotrt

[2020-04-06 20:08:20] Reny : sup

[2020-04-06 20:08:22] [Livio ->] !attack kzexio

[2020-04-06 20:08:28] Liviobot : His name is: JOHN CENA!!!

[2020-04-06 20:08:28] Myu. : not anotherone xD

[2020-04-06 20:08:28] [Livio ->] !spinner

[2020-04-06 20:08:36] Liviobot : The show begins...

[2020-04-06 20:08:45] Myu. : will they get little bots? xD

[2020-04-06 20:08:54] [Livio ->] !attack Myu.

[2020-04-06 20:09:00] Liviobot : I'm better than makeup artists, prepare yourself!!!

[2020-04-06 20:09:00] [Livio ->] !spinner

[2020-04-06 20:09:07] Liviobot : Target acquired!

[2020-04-06 20:09:14] Livio : Oh..

[2020-04-06 20:09:21] Myu. : hi

[2020-04-06 20:09:27] [Livio ->] !spinner

[2020-04-06 20:09:40] Nobody24 : hi can you give me mi stuff

[2020-04-06 20:10:18] NOBODY 23 : come

[2020-04-06 20:10:23] [Livio ->] !say ♪♫You spin me round, round baby right round, like a record baby, round round!!! ♪♫

[2020-04-06 20:10:23] Liviobot : ♪♫You spin me round, round baby right round, like a record baby, round round!!! ♪♫

[2020-04-06 20:10:24] [Livio ->] !spinner

[2020-04-06 20:10:32] [Livio ->] !say ♪♫You spin me round, round baby right round, like a record baby, round round!!! ♪♫

[2020-04-06 20:10:32] [Livio ->] !spinner

[2020-04-06 20:10:40] Liviobot : ♪♫You spin me round, round baby right round, like a record baby, round round!!! ♪♫

[2020-04-06 20:10:48] Livio : Again?

[2020-04-06 20:10:54] kzexio : dont sell drugs please

[2020-04-06 20:11:00] NOBODY 23 : xD

[2020-04-06 20:11:03] Livio : Or I see a GM showing up for copyright on music?

[2020-04-06 20:11:24] jak1 : not on songtexts

[2020-04-06 20:11:33] [Livio ->] !up

[2020-04-06 20:11:34] [Livio ->] !up

[2020-04-06 20:11:38] [Livio ->] !turn down

[2020-04-06 20:11:46] [Livio ->] !spinner

[2020-04-06 20:11:54] [Livio ->] !say Rotating attack!

[2020-04-06 20:11:54] Liviobot : Rotating attack!

[2020-04-06 20:13:05] Livio : jak1 I don't understand last changes.

[2020-04-06 20:13:12] jak1 : huh?

[2020-04-06 20:13:15] Livio : I have simply to merge branches?

[2020-04-06 20:13:28] Livio : That will not make other copies of map data?

[2020-04-06 20:13:33] jak1 : if u want a cleaned structure^^

[2020-04-06 20:13:39] Livio : Okay!

[2020-04-06 20:13:53] Livio : I will show this to Myu before I start.

[2020-04-06 20:13:58] Myu. : ?

[2020-04-06 20:13:59] [Livio ->] !spinner

[2020-04-06 20:14:07] [Livio ->] !say ♪♫You spin me round, round baby right round, like a record baby, round round!!! ♪♫

[2020-04-06 20:14:07] [Livio ->] !spinner

[2020-04-06 20:14:14] [Livio ->] !say ♪♫You spin me round, round baby right round, like a record baby, round round!!! ♪♫

[2020-04-06 20:14:14] Liviobot : ♪♫You spin me round, round baby right round, like a record baby, round round!!! ♪♫

[2020-04-06 20:14:14] Liviobot : ♪♫You spin me round, round baby right round, like a record baby, round round!!! ♪♫

[2020-04-06 20:14:19] Livio : !spinner

[2020-04-06 20:14:26] Myu. : i ll too

[2020-04-06 20:15:02] Myu. : where are your shoes?

[2020-04-06 20:15:24] Myu. : !spinner

[2020-04-06 20:15:37] tomatto : !spinner

[2020-04-06 20:15:44] tomatto : lol

[2020-04-06 20:16:36] jak1 : hey

[2020-04-06 20:16:39] Myu. : !spinner

[2020-04-06 20:16:48] [Livio ->] !say ♪♫You spin me round, round baby right round, like a record baby, round round!!! ♪♫

[2020-04-06 20:16:48] Liviobot : ♪♫You spin me round, round baby right round, like a record baby, round round!!! ♪♫

[2020-04-06 20:16:49] [Livio ->] !spinner

[2020-04-06 20:16:57] [Livio ->] !spinner

[2020-04-06 20:17:05] Myu. : ill do it the whole evening

[2020-04-06 20:17:05] Myu. : !spinner

[2020-04-06 20:17:13] tomatto : hiya kytty

[2020-04-06 20:17:13] Livio : Hey kytty!

[2020-04-06 20:17:15] Myu. : hi

[2020-04-06 20:17:22] Myu. : !spinner

[2020-04-06 20:17:30] kytty : Hello all :-D

[2020-04-06 20:17:31] Liviobot : Go away!!!

[2020-04-06 20:17:47] tomatto : !spinner

[2020-04-06 20:17:54] Myu. : !spinner

[2020-04-06 20:18:02] tomatto : !spinner

[2020-04-06 20:18:10] tomatto : never gonna stop

[2020-04-06 20:18:10] tomatto : !spinner

[2020-04-06 20:18:18] Myu. : !spinner

[2020-04-06 20:18:25] Myu. : !spinner

[2020-04-06 20:18:33] tomatto : !spinner

[2020-04-06 20:18:41] Myu. : i want too !

[2020-04-06 20:18:53] Myu. : how do u do it so fast?

[2020-04-06 20:18:57] Myu. : !spinner

[2020-04-06 20:19:05] tomatto : hmm

[2020-04-06 20:19:12] Myu. : just fast tipping?

[2020-04-06 20:19:16] tomatto : yeah

[2020-04-06 20:19:18] Jesusalva : Hm

[2020-04-06 20:19:45] Jesusalva : *appears*

[2020-04-06 20:19:49] jak1 : that poor bot gets spammed, but stable... nice :)

[2020-04-06 20:19:51] Livio : There are some crazy move programs on my wiki page.

[2020-04-06 20:19:57] Myu. : !spinner

[2020-04-06 20:20:05] tomatto : !spinner

[2020-04-06 20:20:18] tomatto : !spinner

[2020-04-06 20:20:25] Jesusalva : LOL

[2020-04-06 20:20:25] tomatto : !spinner

[2020-04-06 20:20:33] Liviobot : Dammit!!! Why me???

[2020-04-06 20:20:33] tomatto : !spinner

[2020-04-06 20:20:41] [warp] 009-2 (149,43)

[2020-04-06 20:20:41] [Livio ->] !use 808

[2020-04-06 20:20:41] [warp] 009-1 (54,39)

[2020-04-06 20:20:47] Myu. : Livioboooot

[2020-04-06 20:20:48] Livio : Oh, here it is.

[2020-04-06 20:20:55] Livio : !spinner

[2020-04-06 20:21:02] Katakuri : !spinner

[2020-04-06 20:21:10] Katakuri : :C

[2020-04-06 20:21:14] Livio : Try again!

[2020-04-06 20:21:17] Myu. : !spinner

[2020-04-06 20:21:24] tomatto : !spinner

[2020-04-06 20:21:33] tomatto : !spinner

[2020-04-06 20:21:40] Myu. : !spinner

[2020-04-06 20:21:48] tomatto : !spinner

[2020-04-06 20:21:56] Livio : Okay than!

[2020-04-06 20:21:56] tomatto : !spinner

[2020-04-06 20:22:04] Myu. : !spinner

[2020-04-06 20:22:11] Livio : Next one will be Spinbot™!

[2020-04-06 20:22:11] tomatto : xDD

[2020-04-06 20:22:11] Myu. : xDDD

[2020-04-06 20:22:11] Myu. : !spinner

[2020-04-06 20:22:20] Myu. : !spinner

[2020-04-06 20:22:28] [Livio ->] !say ♪♫You spin me round, round baby right round, like a record baby, round round!!! ♪♫

[2020-04-06 20:22:28] Liviobot : ♪♫You spin me round, round baby right round, like a record baby, round round!!! ♪♫

[2020-04-06 20:22:29] [Livio ->] !spinner

[2020-04-06 20:22:37] Myu. : !spinner

[2020-04-06 20:22:47] Myu. : !spinner

[2020-04-06 20:22:57] Myu. : he ll get tired xDDD

[2020-04-06 20:23:03] Livio : Is digging a hole in the ground like that.

[2020-04-06 20:23:09] Myu. : xD

[2020-04-06 20:23:14] Jesusalva : Hm

[2020-04-06 20:23:16] Jesusalva : kytty remind me

[2020-04-06 20:23:26] Jesusalva : What sort of monster will sprout if Livio drills the ground?

[2020-04-06 20:23:34] Livio : Livio25!

[2020-04-06 20:23:40] kytty : a worm

[2020-04-06 20:23:41] Myu. : ?

[2020-04-06 20:23:42] jak1 : oh no

[2020-04-06 20:23:46] Jesusalva : Oh no D:

[2020-04-06 20:23:52] tomatto : Virus!!!

[2020-04-06 20:23:52] Jesusalva : Not Livio25 the Silkworm D:

[2020-04-06 20:23:54] jak1 : i know what u mean Jes

[2020-04-06 20:23:56] Myu. : xD

[2020-04-06 20:24:25] Livio : You missed Livio25. Was spawned during valentine event on other server.

[2020-04-06 20:24:30] Livio : I had Doggo as well.

[2020-04-06 20:24:35] Myu. : D:

[2020-04-06 20:24:39] tomatto : *missed the event*

[2020-04-06 20:24:41] Livio : I spammed dogs everywhere too!

[2020-04-06 20:24:59] Livio : Let me see if I have a picture...

[2020-04-06 20:26:01] Livio : Ah, nope...

[2020-04-06 20:26:08] Livio : But I have this one.

[2020-04-06 20:26:11] Livio : [http://crc.themanaworld.org/gallery_images/1021381]

[2020-04-06 20:27:19] tomatto : we need mount-able mouboos xD

[2020-04-06 20:27:33] Livio : We can't have those here.

[2020-04-06 20:27:50] Livio : There are mouboos and turtles on other server.

[2020-04-06 20:27:59] Livio : I don't remember the rent price however.

[2020-04-06 20:28:30] tomatto : TURTLES hellye

[2020-04-06 20:28:45] Livio : Yeah, those are called tortugas there.

[2020-04-06 20:28:57] Livio : But those are so small that are not visible.

[2020-04-06 20:28:58] tomatto : we'll do tortoise racing

[2020-04-06 20:29:16] Livio : To other players it looks like you are scraping your butt like dogs do.

[2020-04-06 20:29:29] tomatto : hmm

[2020-04-06 20:29:36] Myu. : ?

[2020-04-06 20:29:55] Livio : Well, if next year will come another event I hope you will be there.

[2020-04-06 20:30:07] tomatto : my dog once did it on a skiing slope

[2020-04-06 20:30:18] tomatto : looked kinda hilarious xD

[2020-04-06 20:30:20] Livio : AFK now. See you later!

[2020-04-06 20:30:24] Myu. : u have a dog ♥

[2020-04-06 20:30:27] Myu. : byebye

[2020-04-06 20:31:27] Loaded itemdb from itemdb.txt

[2020-04-06 20:31:27] Plugin chatbot loaded

[2020-04-06 20:31:27] Plugin npc loaded

[2020-04-06 20:31:27] Plugin autofollow loaded

[2020-04-06 20:31:27] Plugin manaboy loaded

[2020-04-06 20:31:27] Plugin xcom loaded

[2020-04-06 20:31:27] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 20:31:27] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 20:31:27] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 20:31:27] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 20:31:27] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 20:31:27] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 20:31:27] jak1 : with a lighter

[2020-04-06 20:31:37] Myu. : its my neighbours cat xD

[2020-04-06 20:31:41] tomatto : oooh xD

[2020-04-06 20:31:57] Myu. : I just borrow her sometimes

[2020-04-06 20:32:02] tomatto : xDD

[2020-04-06 20:32:13] tomatto : does the cat come on its own?

[2020-04-06 20:32:19] Myu. : she is a diva xD

[2020-04-06 20:32:23] Jesusalva : *yawns*

[2020-04-06 20:32:23] tomatto : xDD

[2020-04-06 20:32:46] Myu. : she alway does just the things she want

[2020-04-06 20:33:11] Myu. : oh i forgot

[2020-04-06 20:33:14] Myu. : !spinn

[2020-04-06 20:33:15] tomatto : xD

[2020-04-06 20:33:19] Myu. : *er

[2020-04-06 20:33:22] tomatto : !spinner

[2020-04-06 20:33:40] tomatto : brb

[2020-04-06 20:33:42] Myu. : !spinner

[2020-04-06 20:33:50] Myu. : brb?

[2020-04-06 20:33:54] tomatto : be right back xD

[2020-04-06 20:34:24] Myu. : *writes down all the shorts*

[2020-04-06 20:34:47] Myu. : !spinner

[2020-04-06 20:35:01] tomatto : imma teach you them abbreviations xD

[2020-04-06 20:35:12] Myu. : abbre-what?

[2020-04-06 20:35:19] tomatto : okay brb 7-8.5min

[2020-04-06 20:35:27] Myu. : byebye

[2020-04-06 20:36:27] Loaded itemdb from itemdb.txt

[2020-04-06 20:36:27] Plugin chatbot loaded

[2020-04-06 20:36:27] Plugin npc loaded

[2020-04-06 20:36:27] Plugin autofollow loaded

[2020-04-06 20:36:27] Plugin manaboy loaded

[2020-04-06 20:36:27] Plugin xcom loaded

[2020-04-06 20:36:27] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 20:36:27] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 20:36:27] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 20:36:27] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 20:36:27] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 20:36:27] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 20:37:31] Rubikon : Constable Bob is kytty there?

[2020-04-06 20:37:42] Rubikon : Constable Bob : Yes Rubikon!!

[2020-04-06 20:37:46] Rubikon : aww

[2020-04-06 20:38:25] kytty : Hi

[2020-04-06 20:39:16] Livio : I'm back

[2020-04-06 20:39:28] Livio : And I'm hitting wrong keys as well.

[2020-04-06 20:41:56] Livio : !xuf

[2020-04-06 20:41:56] Liviobot : Livio: RFC 882 put the dot in .com, not Sun Microsystems
		-- Seen on Slashdot

[2020-04-06 20:42:12] Livio : !xuf

[2020-04-06 20:42:12] Liviobot : Livio: "Oh my!  An `inflammatory attitude' in alt.flame?  Never heard of such
a thing..."
		-- Allen Gwinn, allen@sulaco.Sigma.COM

[2020-04-06 20:42:25] Myu. : !spinner

[2020-04-06 20:42:42] Myu. : !joke

[2020-04-06 20:42:42] Liviobot : Why are skeletons so calm? Because nothing gets under their skin.

[2020-04-06 20:42:56] Myu. : !joke

[2020-04-06 20:42:56] Liviobot : My parents gave me a really cheap dictionary for my birthday yesterday. I couldn’t find the words to thank them.

[2020-04-06 20:43:24] Livio : This is mine now.

[2020-04-06 20:44:16] tomatto : back

[2020-04-06 20:44:21] [Livio ->] !unequip 906

[2020-04-06 20:44:25] [Livio ->] !spinner

[2020-04-06 20:44:50] [Livio ->] !spinner

[2020-04-06 20:44:57] [Livio ->] !equip 906

[2020-04-06 20:44:57] [Livio ->] !spinner

[2020-04-06 20:47:37] kzexio : hi kytty

[2020-04-06 20:48:25] [Livio ->] !emotex

[2020-04-06 20:56:36] Loaded itemdb from db/itemdb.txt

[2020-04-06 20:56:36] Plugin chatbot loaded

[2020-04-06 20:56:36] Plugin npc loaded

[2020-04-06 20:56:36] Plugin autofollow loaded

[2020-04-06 20:56:36] Plugin manaboy loaded

[2020-04-06 20:56:36] Plugin xcom loaded

[2020-04-06 20:56:36] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 20:56:36] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 20:56:36] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 20:56:36] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 20:56:36] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 20:56:36] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 20:57:20] Loaded itemdb from db/itemdb.txt

[2020-04-06 20:57:20] Plugin chatbot loaded

[2020-04-06 20:57:20] Plugin npc loaded

[2020-04-06 20:57:20] Plugin autofollow loaded

[2020-04-06 20:57:20] Plugin manaboy loaded

[2020-04-06 20:57:20] Plugin xcom loaded

[2020-04-06 20:57:20] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 20:57:20] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 20:57:20] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 20:57:20] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 20:57:20] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 20:57:20] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 20:59:04] Loaded itemdb from db/itemdb.txt

[2020-04-06 20:59:04] Plugin chatbot loaded

[2020-04-06 20:59:04] Plugin npc loaded

[2020-04-06 20:59:04] Plugin autofollow loaded

[2020-04-06 20:59:04] Plugin manaboy loaded

[2020-04-06 20:59:04] Plugin xcom loaded

[2020-04-06 20:59:04] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 20:59:04] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 20:59:04] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 20:59:04] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 20:59:04] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 20:59:04] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 20:59:23] Loaded itemdb from db/itemdb.txt

[2020-04-06 20:59:23] Plugin chatbot loaded

[2020-04-06 20:59:23] Plugin npc loaded

[2020-04-06 20:59:23] Plugin autofollow loaded

[2020-04-06 20:59:23] Plugin manaboy loaded

[2020-04-06 20:59:23] Plugin xcom loaded

[2020-04-06 20:59:23] Server : This server is Free Software, for details type @source in chat.

[2020-04-06 20:59:23] Server : Welcome to The Mana World! ##a(running on tmwAthena)

[2020-04-06 20:59:23] Server : [Wiki] [Bug Reports] [Discord] [IRC]

[2020-04-06 20:59:23] Server : You can report abuse by typing in chat: @wgm Player XYZ is abusing me

[2020-04-06 20:59:23] Server : Doomsday, Act 2: Invaders were seen all over the world! We must repel them before it is too late, and they take over The Mana World!

[2020-04-06 20:59:23] [GM] ##1Doomsday Event, Act 3: Will happen on Saturday, April 11th, 18:00 UTC. Come celebrate TMW's 16th anniversary! %%N

[2020-04-06 20:59:28] Livio : !joke

[2020-04-06 20:59:28] Liviobot : A very panicky Emma bursts into her brothers bedroom and shakes him awake, Jeremy, come quick, theres a mouse squeaking under my bed!!!!. Jeremy yawns, and what the heck should I do? Oil it?!

[2020-04-06 20:59:31] Livio : !xuf

[2020-04-06 20:59:31] Liviobot : Livio: Put not your trust in money, but put your money in trust.

[2020-04-06 20:59:33] Livio : !spinner

[2020-04-06 21:00:05] Livio : Butters looks like someone taking a nap under the sun.