1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
|
[15:59:14] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR.
[15:59:14] [main/INFO] [FML/]: Forge Mod Loader version 11.15.1.1722 for Minecraft 1.8.9 loading
[15:59:14] [main/INFO] [FML/]: Java is OpenJDK 64-Bit Server VM, version 1.8.0_275, running on Linux:amd64:5.8.0-36-generic, installed at /usr/lib/jvm/java-8-openjdk-amd64/jre
[15:59:14] [main/DEBUG] [FML/]: Java classpath at launch is /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/charsets.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/cldrdata.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/dnsns.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/icedtea-sound.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/jaccess.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/java-atk-wrapper.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/localedata.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/nashorn.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/sunec.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/sunjce_provider.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/sunpkcs11.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/zipfs.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/jce.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/jfr.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/jsse.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/management-agent.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/resources.jar:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/rt.jar:/home/syeyoung/Documents/Dungeons Guide/build/classes/production/Dungeons_Guide.main:/home/syeyoung/.gradle/caches/minecraft/deobfedDeps/compileDummy.jar:/home/syeyoung/.gradle/caches/minecraft/deobfedDeps/providedDummy.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.16/6dc192c7f93ec1853f70d59d8a6dcf94eb42866/lombok-1.18.16.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.jetbrains/annotations-java5/19.0.0/475a5aea56b94cb13acf3853e27636db4354cb1/annotations-java5-19.0.0.jar:/home/syeyoung/.gradle/caches/minecraft/net/minecraftforge/forge/1.8.9-11.15.1.1722/stable/20/forgeSrc-1.8.9-11.15.1.1722.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/com.mojang/netty/1.6/4b75825a06139752bd800d9e29c5fd55b8b1b1e4/netty-1.6.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/oshi-project/oshi-core/1.1/9ddf7b048a8d701be231c0f4f95fd986198fd2d8/oshi-core-1.1.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/net.java.dev.jna/jna/3.4.0/803ff252fedbd395baffd43b37341dc4a150a554/jna-3.4.0.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/net.java.dev.jna/platform/3.4.0/e3f70017be8100d3d6923f50b3d2ee17714e9c13/platform-3.4.0.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/com.ibm.icu/icu4j-core-mojang/51.2/63d216a9311cca6be337c1e458e587f99d382b84/icu4j-core-mojang-51.2.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/net.minecraft/launchwrapper/1.12/111e7bea9c968cdb3d06ef4632bf7ff0824d0f36/launchwrapper-1.12.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/net.sf.jopt-simple/jopt-simple/4.6/306816fb57cf94f108a43c95731b08934dcae15c/jopt-simple-4.6.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/io.netty/netty-all/4.0.23.Final/294104aaf1781d6a56a07d561e792c5d0c95f45/netty-all-4.0.23.Final.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/com.mojang/authlib/1.5.21/aefba0d5b53fbcb70860bc8046ab95d5854c07a5/authlib-1.5.21.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/17.0/9c6ef172e8de35fd8d4d8783e4821e57cdef7445/guava-17.0.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-lang3/3.3.2/90a3822c38ec8c996e84c16a3477ef632cbc87a3/commons-lang3-3.3.2.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.4/b1b6ea3b7e4aa4f492509a4952029cd8e48019ad/commons-io-2.4.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/com.mojang/realms/1.7.59/9c6c59b742d8e038a15f64c1aa273a893a658424/realms-1.7.59.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.3.3/18f4247ff4572a074444572cee34647c43e7c9c7/httpclient-4.3.3.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.9/9ce04e34240f674bc72680f8b843b1457383161a/commons-codec-1.9.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/com.paulscode/librarylwjglopenal/20100824/73e80d0794c39665aec3f62eee88ca91676674ef/librarylwjglopenal-20100824.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl_util/2.9.4-nightly-20150209/d51a7c040a721d13efdfbd34f8b257b2df882ad0/lwjgl_util-2.9.4-nightly-20150209.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl/2.9.4-nightly-20150209/697517568c68e78ae0b4544145af031c81082dfe/lwjgl-2.9.4-nightly-20150209.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput/2.0.5/39c7796b469a600f72380316f6b1f11db6c2c7c4/jinput-2.0.5.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/net.java.jutils/jutils/1.0.0/e12fe1fda814bd348c1579329c86943d2cd3c6a6/jutils-1.0.0.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/com.google.code.gson/gson/2.2.4/a60a5e993c98c864010053cb901b7eab25306568/gson-2.2.4.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-compress/1.8.1/a698750c16740fd5b3871425f4cb3bbaa87f529d/commons-compress-1.8.1.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/commons-logging/commons-logging/1.1.3/f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f/commons-logging-1.1.3.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.3.2/31fbbff1ddbf98f3aa7377c94d33b0447c646b6e/httpcore-4.3.2.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-core/2.0-beta9/678861ba1b2e1fccb594bb0ca03114bb05da9695/log4j-core-2.0-beta9.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.0-beta9/1dd66e68cccd907880229f9e2de1314bd13ff785/log4j-api-2.0-beta9.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/jline/jline/2.13/2d9530d0a25daffaffda7c35037b046b627bb171/jline-2.13.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/2.0.1/516c03b21d50a644d538de0f0369c620989cd8f0/jsr305-2.0.1.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm-debug-all/5.0.3/f9e364ae2a66ce2a543012a4668856e84e5dab74/asm-debug-all-5.0.3.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/com.typesafe.akka/akka-actor_2.11/2.3.3/ed62e9fc709ca0f2ff1a3220daa8b70a2870078e/akka-actor_2.11-2.3.3.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/com.typesafe/config/1.2.1/f771f71fdae3df231bcd54d5ca2d57f0bf93f467/config-1.2.1.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors-migration_2.11/1.1.0/dfa8bc42b181d5b9f1a5dd147f8ae308b893eb6f/scala-actors-migration_2.11-1.1.0.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang.plugins/scala-continuations-plugin_2.11.1/1.0.2/f361a3283452c57fa30c1ee69448995de23c60f7/scala-continuations-plugin_2.11.1-1.0.2.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-compiler/2.11.1/56ea2e6c025e0821f28d73ca271218b8dd04926a/scala-compiler-2.11.1.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang.plugins/scala-continuations-library_2.11/1.0.2/e517c53a7e9acd6b1668c5a35eccbaa3bab9aac/scala-continuations-library_2.11-1.0.2.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-parser-combinators_2.11/1.0.1/f05d7345bf5a58924f2837c6c1f4d73a938e1ff0/scala-parser-combinators_2.11-1.0.1.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-reflect/2.11.1/6580347e61cc7f8e802941e7fde40fa83b8badeb/scala-reflect-2.11.1.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-swing_2.11/1.0.1/b1cdd92bd47b1e1837139c1c53020e86bb9112ae/scala-swing_2.11-1.0.1.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-xml_2.11/1.0.2/820fbca7e524b530fdadc594c39d49a21ea0337e/scala-xml_2.11-1.0.2.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-library/2.11.1/e11da23da3eabab9f4777b9220e60d44c1aab6a/scala-library-2.11.1.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/lzma/lzma/0.0.1/521616dc7487b42bef0e803bd2fa3faf668101d7/lzma-0.0.1.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/net.sf.trove4j/trove4j/3.0.3/42ccaf4761f0dfdfa805c9e340d99a755907e2dd/trove4j-3.0.3.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/com.paulscode/codecjorbis/20101023/c73b5636faf089d9f00e8732a829577de25237ee/codecjorbis-20101023.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/com.paulscode/codecwav/20101023/12f031cfe88fef5c1dd36c563c0a3a69bd7261da/codecwav-20101023.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/com.paulscode/libraryjavasound/20101123/5c5e304366f75f9eaa2e8cca546a1fb6109348b3/libraryjavasound-20101123.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/com.paulscode/soundsystem/20120107/419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6/soundsystem-20120107.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch/6.5/320a2dfd18513a5f41b4e75729df684488cbd925/twitch-6.5.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/java3d/vecmath/1.5.2/79846ba34cbd89e2422d74d53752f993dcc2ccaf/vecmath-1.5.2.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.4-nightly-20150209/931074f46c795d2f7b30ed6395df5715cfd7675b/lwjgl-platform-2.9.4-nightly-20150209-natives-linux.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.4-nightly-20150209/bcab850f8f487c3f4c4dbabde778bb82bd1a40ed/lwjgl-platform-2.9.4-nightly-20150209-natives-osx.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.4-nightly-20150209/b84d5102b9dbfabfeb5e43c7e2828d98a7fc80e0/lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/7ff832a6eb9ab6a767f1ade2b548092d0fa64795/jinput-platform-2.0.5-natives-linux.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/53f9c919f34d2ca9de8c51fc4e1e8282029a9232/jinput-platform-2.0.5-natives-osx.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/385ee093e01f587f30ee1c8a2ee7d408fd732e16/jinput-platform-2.0.5-natives-windows.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.fusesource.jansi/jansi/1.11/655c643309c2f45a56a747fda70e3fadf57e9f11/jansi-1.11.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors/2.11.0/8ccfb6541de179bb1c4d45cf414acee069b7f78b/scala-actors-2.11.0.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/6.5/5f9d1ee26257b3a33f0ca06fed335ef462af659f/twitch-platform-6.5-natives-osx.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/6.5/206c4ccaecdbcfd2a1631150c69a97bbc9c20c11/twitch-platform-6.5-natives-windows-32.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/6.5/9fdd0fd5aed0817063dcf95b69349a171f447ebd/twitch-platform-6.5-natives-windows-64.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/18215140f010c05b9f86ef6f0f8871954d2ccebf/twitch-external-platform-4.5-natives-windows-32.jar:/home/syeyoung/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/c3cde57891b935d41b6680a9c5e1502eeab76d86/twitch-external-platform-4.5-natives-windows-64.jar:/home/syeyoung/.gradle/caches/minecraft/net/minecraftforge/forge/1.8.9-11.15.1.1722/start:/home/syeyoung/ideaIC-2020.2.3/idea-IC-202.7660.26/lib/idea_rt.jar:/home/syeyoung/ideaIC-2020.2.3/idea-IC-202.7660.26/plugins/Groovy/lib/agent/gragent.jar:/home/syeyoung/ideaIC-2020.2.3/idea-IC-202.7660.26/plugins/java/lib/rt/debugger-agent.jar
[15:59:14] [main/DEBUG] [FML/]: Java library path at launch is /usr/java/packages/lib/amd64:/usr/lib/x86_64-linux-gnu/jni:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu:/usr/lib/jni:/lib:/usr/lib:/home/syeyoung/.gradle/caches/minecraft/net/minecraft/natives/1.8.9
[15:59:15] [main/INFO] [FML/]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[15:59:15] [main/DEBUG] [FML/]: Instantiating coremod class FMLCorePlugin
[15:59:15] [main/DEBUG] [FML/]: Added access transformer class net.minecraftforge.fml.common.asm.transformers.AccessTransformer to enqueued access transformers
[15:59:15] [main/DEBUG] [FML/]: Enqueued coremod FMLCorePlugin
[15:59:15] [main/DEBUG] [FML/]: Instantiating coremod class FMLForgePlugin
[15:59:15] [main/DEBUG] [FML/]: Enqueued coremod FMLForgePlugin
[15:59:15] [main/DEBUG] [FML/]: All fundamental core mods are successfully located
[15:59:15] [main/DEBUG] [FML/]: Attempting to load commandline specified mods, relative to /home/syeyoung/Documents/Dungeons Guide/.
[15:59:15] [main/DEBUG] [FML/]: Discovering coremods
[15:59:15] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
[15:59:15] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin
[15:59:15] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[15:59:15] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[15:59:15] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[15:59:15] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[15:59:15] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[15:59:15] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[15:59:15] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[15:59:15] [main/DEBUG] [FML/]: Injecting coremod FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin} class transformers
[15:59:15] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.BlamingTransformer
[15:59:15] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.SideTransformer
[15:59:15] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriptionTransformer
[15:59:15] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriberTransformer
[15:59:15] [main/DEBUG] [FML/]: Injection complete
[15:59:15] [main/DEBUG] [FML/]: Running coremod plugin for FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin}
[15:59:15] [main/DEBUG] [FML/]: Running coremod plugin FMLCorePlugin
[15:59:15] [main/ERROR] [FML/]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
[15:59:16] [main/DEBUG] [FML/]: Loading deobfuscation resource /home/syeyoung/.gradle/caches/minecraft/de/oceanlabs/mcp/mcp_stable/20/srgs/srg-mcp.srg with 27884 records
[15:59:18] [main/ERROR] [FML/]: FML appears to be missing any signature data. This is not a good thing
[15:59:18] [main/DEBUG] [FML/]: Coremod plugin class FMLCorePlugin run successfully
[15:59:18] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[15:59:18] [main/DEBUG] [FML/]: Injecting coremod FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} class transformers
[15:59:18] [main/DEBUG] [FML/]: Injection complete
[15:59:18] [main/DEBUG] [FML/]: Running coremod plugin for FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin}
[15:59:18] [main/DEBUG] [FML/]: Running coremod plugin FMLForgePlugin
[15:59:18] [main/DEBUG] [FML/]: Coremod plugin class FMLForgePlugin run successfully
[15:59:18] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[15:59:18] [main/DEBUG] [FML/]: Loaded 163 rules from AccessTransformer config file forge_at.cfg
[15:59:18] [main/DEBUG] [FML/]: Validating minecraft
[15:59:18] [main/DEBUG] [FML/]: Minecraft validated, launching...
[15:59:18] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[15:59:18] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[15:59:18] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[15:59:18] [main/INFO] [LaunchWrapper/]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[15:59:25] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - LanguageManager took 0.011s
[15:59:26] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - Animation took 0.000s
[15:59:26] [Client thread/INFO] [FML/]: MinecraftForge v11.15.1.1722 Initialized
[15:59:26] [Client thread/INFO] [FML/]: Replaced 204 ore recipies
[15:59:26] [Client thread/DEBUG] [FML/]: File /home/syeyoung/Documents/Dungeons Guide/config/injectedDependencies.json not found. No dependencies injected
[15:59:26] [Client thread/DEBUG] [FML/]: Building injected Mod Containers [net.minecraftforge.fml.common.FMLContainer, net.minecraftforge.common.ForgeModContainer]
[15:59:26] [Client thread/DEBUG] [FML/]: Attempting to load mods contained in the minecraft jar file and associated classes
[15:59:26] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/charsets.jar, examining for mod candidates
[15:59:26] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/cldrdata.jar, examining for mod candidates
[15:59:26] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/dnsns.jar, examining for mod candidates
[15:59:26] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/icedtea-sound.jar, examining for mod candidates
[15:59:26] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/jaccess.jar, examining for mod candidates
[15:59:26] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/java-atk-wrapper.jar, examining for mod candidates
[15:59:26] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/localedata.jar, examining for mod candidates
[15:59:26] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/nashorn.jar, examining for mod candidates
[15:59:26] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/sunec.jar, examining for mod candidates
[15:59:26] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/sunjce_provider.jar, examining for mod candidates
[15:59:26] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/sunpkcs11.jar, examining for mod candidates
[15:59:26] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/zipfs.jar, examining for mod candidates
[15:59:26] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/jce.jar, examining for mod candidates
[15:59:26] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/jfr.jar, examining for mod candidates
[15:59:26] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/jsse.jar, examining for mod candidates
[15:59:26] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/management-agent.jar, examining for mod candidates
[15:59:26] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/resources.jar, examining for mod candidates
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/rt.jar
[15:59:26] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at /home/syeyoung/Documents/Dungeons Guide/build/classes/production/Dungeons_Guide.main, examining for mod candidates
[15:59:26] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/syeyoung/.gradle/caches/minecraft/deobfedDeps/compileDummy.jar, examining for mod candidates
[15:59:26] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/syeyoung/.gradle/caches/minecraft/deobfedDeps/providedDummy.jar, examining for mod candidates
[15:59:26] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.16/6dc192c7f93ec1853f70d59d8a6dcf94eb42866/lombok-1.18.16.jar, examining for mod candidates
[15:59:26] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.jetbrains/annotations-java5/19.0.0/475a5aea56b94cb13acf3853e27636db4354cb1/annotations-java5-19.0.0.jar, examining for mod candidates
[15:59:26] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/syeyoung/.gradle/caches/minecraft/net/minecraftforge/forge/1.8.9-11.15.1.1722/stable/20/forgeSrc-1.8.9-11.15.1.1722.jar, examining for mod candidates
[15:59:26] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/syeyoung/.gradle/caches/modules-2/files-2.1/com.mojang/netty/1.6/4b75825a06139752bd800d9e29c5fd55b8b1b1e4/netty-1.6.jar, examining for mod candidates
[15:59:26] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/syeyoung/.gradle/caches/modules-2/files-2.1/oshi-project/oshi-core/1.1/9ddf7b048a8d701be231c0f4f95fd986198fd2d8/oshi-core-1.1.jar, examining for mod candidates
[15:59:26] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/syeyoung/.gradle/caches/modules-2/files-2.1/net.java.dev.jna/jna/3.4.0/803ff252fedbd395baffd43b37341dc4a150a554/jna-3.4.0.jar, examining for mod candidates
[15:59:26] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/syeyoung/.gradle/caches/modules-2/files-2.1/net.java.dev.jna/platform/3.4.0/e3f70017be8100d3d6923f50b3d2ee17714e9c13/platform-3.4.0.jar, examining for mod candidates
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/com.ibm.icu/icu4j-core-mojang/51.2/63d216a9311cca6be337c1e458e587f99d382b84/icu4j-core-mojang-51.2.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/net.minecraft/launchwrapper/1.12/111e7bea9c968cdb3d06ef4632bf7ff0824d0f36/launchwrapper-1.12.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/net.sf.jopt-simple/jopt-simple/4.6/306816fb57cf94f108a43c95731b08934dcae15c/jopt-simple-4.6.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/io.netty/netty-all/4.0.23.Final/294104aaf1781d6a56a07d561e792c5d0c95f45/netty-all-4.0.23.Final.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/com.mojang/authlib/1.5.21/aefba0d5b53fbcb70860bc8046ab95d5854c07a5/authlib-1.5.21.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/17.0/9c6ef172e8de35fd8d4d8783e4821e57cdef7445/guava-17.0.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-lang3/3.3.2/90a3822c38ec8c996e84c16a3477ef632cbc87a3/commons-lang3-3.3.2.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.4/b1b6ea3b7e4aa4f492509a4952029cd8e48019ad/commons-io-2.4.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/com.mojang/realms/1.7.59/9c6c59b742d8e038a15f64c1aa273a893a658424/realms-1.7.59.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.3.3/18f4247ff4572a074444572cee34647c43e7c9c7/httpclient-4.3.3.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.9/9ce04e34240f674bc72680f8b843b1457383161a/commons-codec-1.9.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/com.paulscode/librarylwjglopenal/20100824/73e80d0794c39665aec3f62eee88ca91676674ef/librarylwjglopenal-20100824.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl_util/2.9.4-nightly-20150209/d51a7c040a721d13efdfbd34f8b257b2df882ad0/lwjgl_util-2.9.4-nightly-20150209.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl/2.9.4-nightly-20150209/697517568c68e78ae0b4544145af031c81082dfe/lwjgl-2.9.4-nightly-20150209.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput/2.0.5/39c7796b469a600f72380316f6b1f11db6c2c7c4/jinput-2.0.5.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/net.java.jutils/jutils/1.0.0/e12fe1fda814bd348c1579329c86943d2cd3c6a6/jutils-1.0.0.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/com.google.code.gson/gson/2.2.4/a60a5e993c98c864010053cb901b7eab25306568/gson-2.2.4.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-compress/1.8.1/a698750c16740fd5b3871425f4cb3bbaa87f529d/commons-compress-1.8.1.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/commons-logging/commons-logging/1.1.3/f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f/commons-logging-1.1.3.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.3.2/31fbbff1ddbf98f3aa7377c94d33b0447c646b6e/httpcore-4.3.2.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-core/2.0-beta9/678861ba1b2e1fccb594bb0ca03114bb05da9695/log4j-core-2.0-beta9.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.0-beta9/1dd66e68cccd907880229f9e2de1314bd13ff785/log4j-api-2.0-beta9.jar
[15:59:26] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/syeyoung/.gradle/caches/modules-2/files-2.1/jline/jline/2.13/2d9530d0a25daffaffda7c35037b046b627bb171/jline-2.13.jar, examining for mod candidates
[15:59:26] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/syeyoung/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/2.0.1/516c03b21d50a644d538de0f0369c620989cd8f0/jsr305-2.0.1.jar, examining for mod candidates
[15:59:26] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm-debug-all/5.0.3/f9e364ae2a66ce2a543012a4668856e84e5dab74/asm-debug-all-5.0.3.jar, examining for mod candidates
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/com.typesafe.akka/akka-actor_2.11/2.3.3/ed62e9fc709ca0f2ff1a3220daa8b70a2870078e/akka-actor_2.11-2.3.3.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/com.typesafe/config/1.2.1/f771f71fdae3df231bcd54d5ca2d57f0bf93f467/config-1.2.1.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors-migration_2.11/1.1.0/dfa8bc42b181d5b9f1a5dd147f8ae308b893eb6f/scala-actors-migration_2.11-1.1.0.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang.plugins/scala-continuations-plugin_2.11.1/1.0.2/f361a3283452c57fa30c1ee69448995de23c60f7/scala-continuations-plugin_2.11.1-1.0.2.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-compiler/2.11.1/56ea2e6c025e0821f28d73ca271218b8dd04926a/scala-compiler-2.11.1.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang.plugins/scala-continuations-library_2.11/1.0.2/e517c53a7e9acd6b1668c5a35eccbaa3bab9aac/scala-continuations-library_2.11-1.0.2.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-parser-combinators_2.11/1.0.1/f05d7345bf5a58924f2837c6c1f4d73a938e1ff0/scala-parser-combinators_2.11-1.0.1.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-reflect/2.11.1/6580347e61cc7f8e802941e7fde40fa83b8badeb/scala-reflect-2.11.1.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-swing_2.11/1.0.1/b1cdd92bd47b1e1837139c1c53020e86bb9112ae/scala-swing_2.11-1.0.1.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-xml_2.11/1.0.2/820fbca7e524b530fdadc594c39d49a21ea0337e/scala-xml_2.11-1.0.2.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-library/2.11.1/e11da23da3eabab9f4777b9220e60d44c1aab6a/scala-library-2.11.1.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/lzma/lzma/0.0.1/521616dc7487b42bef0e803bd2fa3faf668101d7/lzma-0.0.1.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/net.sf.trove4j/trove4j/3.0.3/42ccaf4761f0dfdfa805c9e340d99a755907e2dd/trove4j-3.0.3.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/com.paulscode/codecjorbis/20101023/c73b5636faf089d9f00e8732a829577de25237ee/codecjorbis-20101023.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/com.paulscode/codecwav/20101023/12f031cfe88fef5c1dd36c563c0a3a69bd7261da/codecwav-20101023.jar
[15:59:26] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/syeyoung/.gradle/caches/modules-2/files-2.1/com.paulscode/libraryjavasound/20101123/5c5e304366f75f9eaa2e8cca546a1fb6109348b3/libraryjavasound-20101123.jar, examining for mod candidates
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/com.paulscode/soundsystem/20120107/419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6/soundsystem-20120107.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch/6.5/320a2dfd18513a5f41b4e75729df684488cbd925/twitch-6.5.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/java3d/vecmath/1.5.2/79846ba34cbd89e2422d74d53752f993dcc2ccaf/vecmath-1.5.2.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.4-nightly-20150209/931074f46c795d2f7b30ed6395df5715cfd7675b/lwjgl-platform-2.9.4-nightly-20150209-natives-linux.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.4-nightly-20150209/bcab850f8f487c3f4c4dbabde778bb82bd1a40ed/lwjgl-platform-2.9.4-nightly-20150209-natives-osx.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.4-nightly-20150209/b84d5102b9dbfabfeb5e43c7e2828d98a7fc80e0/lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/7ff832a6eb9ab6a767f1ade2b548092d0fa64795/jinput-platform-2.0.5-natives-linux.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/53f9c919f34d2ca9de8c51fc4e1e8282029a9232/jinput-platform-2.0.5-natives-osx.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/385ee093e01f587f30ee1c8a2ee7d408fd732e16/jinput-platform-2.0.5-natives-windows.jar
[15:59:26] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.fusesource.jansi/jansi/1.11/655c643309c2f45a56a747fda70e3fadf57e9f11/jansi-1.11.jar, examining for mod candidates
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors/2.11.0/8ccfb6541de179bb1c4d45cf414acee069b7f78b/scala-actors-2.11.0.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/6.5/5f9d1ee26257b3a33f0ca06fed335ef462af659f/twitch-platform-6.5-natives-osx.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/6.5/206c4ccaecdbcfd2a1631150c69a97bbc9c20c11/twitch-platform-6.5-natives-windows-32.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-platform/6.5/9fdd0fd5aed0817063dcf95b69349a171f447ebd/twitch-platform-6.5-natives-windows-64.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/18215140f010c05b9f86ef6f0f8871954d2ccebf/twitch-external-platform-4.5-natives-windows-32.jar
[15:59:26] [Client thread/TRACE] [FML/]: Skipping known library file /home/syeyoung/.gradle/caches/modules-2/files-2.1/tv.twitch/twitch-external-platform/4.5/c3cde57891b935d41b6680a9c5e1502eeab76d86/twitch-external-platform-4.5-natives-windows-64.jar
[15:59:26] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at /home/syeyoung/.gradle/caches/minecraft/net/minecraftforge/forge/1.8.9-11.15.1.1722/start, examining for mod candidates
[15:59:26] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/syeyoung/ideaIC-2020.2.3/idea-IC-202.7660.26/lib/idea_rt.jar, examining for mod candidates
[15:59:26] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/syeyoung/ideaIC-2020.2.3/idea-IC-202.7660.26/plugins/Groovy/lib/agent/gragent.jar, examining for mod candidates
[15:59:26] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /home/syeyoung/ideaIC-2020.2.3/idea-IC-202.7660.26/plugins/java/lib/rt/debugger-agent.jar, examining for mod candidates
[15:59:26] [Client thread/DEBUG] [FML/]: Minecraft jar mods loaded successfully
[15:59:26] [Client thread/INFO] [FML/]: Found 0 mods from the command line. Injecting into mod discoverer
[15:59:26] [Client thread/INFO] [FML/]: Searching /home/syeyoung/Documents/Dungeons Guide/mods for mods
[15:59:26] [Client thread/DEBUG] [FML/]: Examining file charsets.jar for potential mods
[15:59:26] [Client thread/DEBUG] [FML/]: The mod container charsets.jar appears to be missing an mcmod.info file
[15:59:27] [Client thread/DEBUG] [FML/]: Examining file cldrdata.jar for potential mods
[15:59:27] [Client thread/DEBUG] [FML/]: The mod container cldrdata.jar appears to be missing an mcmod.info file
[15:59:28] [Client thread/DEBUG] [FML/]: Examining file dnsns.jar for potential mods
[15:59:28] [Client thread/DEBUG] [FML/]: The mod container dnsns.jar appears to be missing an mcmod.info file
[15:59:28] [Client thread/DEBUG] [FML/]: Examining file icedtea-sound.jar for potential mods
[15:59:28] [Client thread/DEBUG] [FML/]: The mod container icedtea-sound.jar appears to be missing an mcmod.info file
[15:59:28] [Client thread/DEBUG] [FML/]: Examining file jaccess.jar for potential mods
[15:59:28] [Client thread/DEBUG] [FML/]: The mod container jaccess.jar appears to be missing an mcmod.info file
[15:59:28] [Client thread/DEBUG] [FML/]: Examining file java-atk-wrapper.jar for potential mods
[15:59:28] [Client thread/DEBUG] [FML/]: The mod container java-atk-wrapper.jar appears to be missing an mcmod.info file
[15:59:28] [Client thread/DEBUG] [FML/]: Examining file localedata.jar for potential mods
[15:59:28] [Client thread/DEBUG] [FML/]: The mod container localedata.jar appears to be missing an mcmod.info file
[15:59:28] [Client thread/DEBUG] [FML/]: Examining file nashorn.jar for potential mods
[15:59:28] [Client thread/DEBUG] [FML/]: The mod container nashorn.jar appears to be missing an mcmod.info file
[15:59:28] [Client thread/DEBUG] [FML/]: Examining file sunec.jar for potential mods
[15:59:28] [Client thread/DEBUG] [FML/]: The mod container sunec.jar appears to be missing an mcmod.info file
[15:59:28] [Client thread/DEBUG] [FML/]: Examining file sunjce_provider.jar for potential mods
[15:59:28] [Client thread/DEBUG] [FML/]: The mod container sunjce_provider.jar appears to be missing an mcmod.info file
[15:59:28] [Client thread/DEBUG] [FML/]: Examining file sunpkcs11.jar for potential mods
[15:59:28] [Client thread/DEBUG] [FML/]: The mod container sunpkcs11.jar appears to be missing an mcmod.info file
[15:59:28] [Client thread/DEBUG] [FML/]: Examining file zipfs.jar for potential mods
[15:59:28] [Client thread/DEBUG] [FML/]: The mod container zipfs.jar appears to be missing an mcmod.info file
[15:59:28] [Client thread/DEBUG] [FML/]: Examining file jce.jar for potential mods
[15:59:28] [Client thread/DEBUG] [FML/]: The mod container jce.jar appears to be missing an mcmod.info file
[15:59:28] [Client thread/DEBUG] [FML/]: Examining file jfr.jar for potential mods
[15:59:28] [Client thread/DEBUG] [FML/]: The mod container jfr.jar appears to be missing an mcmod.info file
[15:59:28] [Client thread/DEBUG] [FML/]: Examining file jsse.jar for potential mods
[15:59:28] [Client thread/DEBUG] [FML/]: The mod container jsse.jar appears to be missing an mcmod.info file
[15:59:28] [Client thread/DEBUG] [FML/]: Examining file management-agent.jar for potential mods
[15:59:28] [Client thread/DEBUG] [FML/]: The mod container management-agent.jar appears to be missing an mcmod.info file
[15:59:28] [Client thread/DEBUG] [FML/]: Examining file resources.jar for potential mods
[15:59:28] [Client thread/DEBUG] [FML/]: The mod container resources.jar appears to be missing an mcmod.info file
[15:59:28] [Client thread/DEBUG] [FML/]: Examining directory Dungeons_Guide.main for potential mods
[15:59:28] [Client thread/DEBUG] [FML/]: Found an mcmod.info file in directory Dungeons_Guide.main
[15:59:28] [Client thread/TRACE] [FML/]: Recursing into package kr
[15:59:28] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung
[15:59:28] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide
[15:59:28] [Client thread/DEBUG] [FML/]: Identified a mod of type Lnet/minecraftforge/fml/common/Mod; (kr.syeyoung.dungeonsguide.a) - loading
[15:59:28] [Client thread/TRACE] [skyblock_dungeons_guide/]: Parsed dependency info : [] [] []
[15:59:28] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.commands
[15:59:28] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.config
[15:59:28] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.config.guiconfig
[15:59:28] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.config.types
[15:59:28] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.d
[15:59:28] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.dungeon
[15:59:28] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.dungeon.actions
[15:59:28] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.dungeon.actions.tree
[15:59:28] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.dungeon.data
[15:59:28] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.dungeon.doorfinder
[15:59:28] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.dungeon.mechanics
[15:59:28] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.dungeon.mechanics.predicates
[15:59:28] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.dungeon.roomfinder
[15:59:28] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.eventlistener
[15:59:28] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.events
[15:59:28] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.features
[15:59:28] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.features.impl
[15:59:28] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.features.listener
[15:59:28] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.roomedit
[15:59:28] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.roomedit.elements
[15:59:28] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.roomedit.gui
[15:59:28] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.roomedit.mechanicedit
[15:59:28] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.roomedit.panes
[15:59:28] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.roomedit.valueedit
[15:59:29] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.roomprocessor
[15:59:29] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.roomprocessor.bossfight
[15:59:29] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.roomprocessor.boxpuzzle
[15:59:29] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.roomprocessor.icefill
[15:59:29] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.roomprocessor.waterpuzzle
[15:59:29] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.roomprocessor.waterpuzzle.nodes
[15:59:29] [Client thread/TRACE] [FML/]: Recursing into package kr.syeyoung.dungeonsguide.utils
[15:59:29] [Client thread/DEBUG] [FML/]: Examining file compileDummy.jar for potential mods
[15:59:29] [Client thread/DEBUG] [FML/]: The mod container compileDummy.jar appears to be missing an mcmod.info file
[15:59:29] [Client thread/DEBUG] [FML/]: Examining file providedDummy.jar for potential mods
[15:59:29] [Client thread/DEBUG] [FML/]: The mod container providedDummy.jar appears to be missing an mcmod.info file
[15:59:29] [Client thread/DEBUG] [FML/]: Examining file lombok-1.18.16.jar for potential mods
[15:59:29] [Client thread/DEBUG] [FML/]: The mod container lombok-1.18.16.jar appears to be missing an mcmod.info file
[15:59:29] [Client thread/ERROR] [FML/]: Unable to read a class file correctly
java.lang.IllegalArgumentException
at org.objectweb.asm.ClassReader.<init>(ClassReader.java:170) ~[asm-debug-all-5.0.3.jar:5.0.3]
at org.objectweb.asm.ClassReader.<init>(ClassReader.java:153) ~[asm-debug-all-5.0.3.jar:5.0.3]
at org.objectweb.asm.ClassReader.<init>(ClassReader.java:424) ~[asm-debug-all-5.0.3.jar:5.0.3]
at net.minecraftforge.fml.common.discovery.asm.ASMModParser.<init>(ASMModParser.java:52) [ASMModParser.class:?]
at net.minecraftforge.fml.common.discovery.JarDiscoverer.discover(JarDiscoverer.java:69) [JarDiscoverer.class:?]
at net.minecraftforge.fml.common.discovery.ContainerType.findMods(ContainerType.java:42) [ContainerType.class:?]
at net.minecraftforge.fml.common.discovery.ModCandidate.explore(ModCandidate.java:71) [ModCandidate.class:?]
at net.minecraftforge.fml.common.discovery.ModDiscoverer.identifyMods(ModDiscoverer.java:134) [ModDiscoverer.class:?]
at net.minecraftforge.fml.common.Loader.identifyMods(Loader.java:363) [Loader.class:?]
at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:488) [Loader.class:?]
at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:208) [FMLClientHandler.class:?]
at net.minecraft.client.Minecraft.startGame(Minecraft.java:451) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_275]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_275]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_275]
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_275]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_275]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_275]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_275]
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_275]
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
at GradleStart.main(GradleStart.java:26) [start/:?]
[15:59:29] [Client thread/ERROR] [FML/]: There was a problem reading the entry module-info.class in the jar /home/syeyoung/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.16/6dc192c7f93ec1853f70d59d8a6dcf94eb42866/lombok-1.18.16.jar - probably a corrupt zip
net.minecraftforge.fml.common.LoaderException: java.lang.IllegalArgumentException
at net.minecraftforge.fml.common.discovery.asm.ASMModParser.<init>(ASMModParser.java:58) ~[ASMModParser.class:?]
at net.minecraftforge.fml.common.discovery.JarDiscoverer.discover(JarDiscoverer.java:69) [JarDiscoverer.class:?]
at net.minecraftforge.fml.common.discovery.ContainerType.findMods(ContainerType.java:42) [ContainerType.class:?]
at net.minecraftforge.fml.common.discovery.ModCandidate.explore(ModCandidate.java:71) [ModCandidate.class:?]
at net.minecraftforge.fml.common.discovery.ModDiscoverer.identifyMods(ModDiscoverer.java:134) [ModDiscoverer.class:?]
at net.minecraftforge.fml.common.Loader.identifyMods(Loader.java:363) [Loader.class:?]
at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:488) [Loader.class:?]
at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:208) [FMLClientHandler.class:?]
at net.minecraft.client.Minecraft.startGame(Minecraft.java:451) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_275]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_275]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_275]
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_275]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_275]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_275]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_275]
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_275]
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
at GradleStart.main(GradleStart.java:26) [start/:?]
Caused by: java.lang.IllegalArgumentException
at org.objectweb.asm.ClassReader.<init>(ClassReader.java:170) ~[asm-debug-all-5.0.3.jar:5.0.3]
at org.objectweb.asm.ClassReader.<init>(ClassReader.java:153) ~[asm-debug-all-5.0.3.jar:5.0.3]
at org.objectweb.asm.ClassReader.<init>(ClassReader.java:424) ~[asm-debug-all-5.0.3.jar:5.0.3]
at net.minecraftforge.fml.common.discovery.asm.ASMModParser.<init>(ASMModParser.java:52) ~[ASMModParser.class:?]
... 22 more
[15:59:29] [Client thread/WARN] [FML/]: Zip file lombok-1.18.16.jar failed to read properly, it will be ignored
net.minecraftforge.fml.common.LoaderException: java.lang.IllegalArgumentException
at net.minecraftforge.fml.common.discovery.asm.ASMModParser.<init>(ASMModParser.java:58) ~[ASMModParser.class:?]
at net.minecraftforge.fml.common.discovery.JarDiscoverer.discover(JarDiscoverer.java:69) [JarDiscoverer.class:?]
at net.minecraftforge.fml.common.discovery.ContainerType.findMods(ContainerType.java:42) [ContainerType.class:?]
at net.minecraftforge.fml.common.discovery.ModCandidate.explore(ModCandidate.java:71) [ModCandidate.class:?]
at net.minecraftforge.fml.common.discovery.ModDiscoverer.identifyMods(ModDiscoverer.java:134) [ModDiscoverer.class:?]
at net.minecraftforge.fml.common.Loader.identifyMods(Loader.java:363) [Loader.class:?]
at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:488) [Loader.class:?]
at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:208) [FMLClientHandler.class:?]
at net.minecraft.client.Minecraft.startGame(Minecraft.java:451) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:360) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:116) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_275]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_275]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_275]
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_275]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_275]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_275]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_275]
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_275]
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
at GradleStart.main(GradleStart.java:26) [start/:?]
Caused by: java.lang.IllegalArgumentException
at org.objectweb.asm.ClassReader.<init>(ClassReader.java:170) ~[asm-debug-all-5.0.3.jar:5.0.3]
at org.objectweb.asm.ClassReader.<init>(ClassReader.java:153) ~[asm-debug-all-5.0.3.jar:5.0.3]
at org.objectweb.asm.ClassReader.<init>(ClassReader.java:424) ~[asm-debug-all-5.0.3.jar:5.0.3]
at net.minecraftforge.fml.common.discovery.asm.ASMModParser.<init>(ASMModParser.java:52) ~[ASMModParser.class:?]
... 22 more
[15:59:29] [Client thread/DEBUG] [FML/]: Examining file annotations-java5-19.0.0.jar for potential mods
[15:59:29] [Client thread/DEBUG] [FML/]: The mod container annotations-java5-19.0.0.jar appears to be missing an mcmod.info file
[15:59:29] [Client thread/DEBUG] [FML/]: Examining file forgeSrc-1.8.9-11.15.1.1722.jar for potential mods
[15:59:29] [Client thread/DEBUG] [FML/]: The mod container forgeSrc-1.8.9-11.15.1.1722.jar appears to be missing an mcmod.info file
[15:59:29] [Client thread/DEBUG] [FML/]: Examining file netty-1.6.jar for potential mods
[15:59:29] [Client thread/DEBUG] [FML/]: The mod container netty-1.6.jar appears to be missing an mcmod.info file
[15:59:29] [Client thread/DEBUG] [FML/]: Examining file oshi-core-1.1.jar for potential mods
[15:59:29] [Client thread/DEBUG] [FML/]: The mod container oshi-core-1.1.jar appears to be missing an mcmod.info file
[15:59:29] [Client thread/DEBUG] [FML/]: Examining file jna-3.4.0.jar for potential mods
[15:59:29] [Client thread/DEBUG] [FML/]: The mod container jna-3.4.0.jar appears to be missing an mcmod.info file
[15:59:29] [Client thread/DEBUG] [FML/]: Examining file platform-3.4.0.jar for potential mods
[15:59:29] [Client thread/DEBUG] [FML/]: The mod container platform-3.4.0.jar appears to be missing an mcmod.info file
[15:59:29] [Client thread/DEBUG] [FML/]: Examining file jline-2.13.jar for potential mods
[15:59:29] [Client thread/DEBUG] [FML/]: The mod container jline-2.13.jar appears to be missing an mcmod.info file
[15:59:29] [Client thread/DEBUG] [FML/]: Examining file jsr305-2.0.1.jar for potential mods
[15:59:29] [Client thread/DEBUG] [FML/]: The mod container jsr305-2.0.1.jar appears to be missing an mcmod.info file
[15:59:29] [Client thread/DEBUG] [FML/]: Examining file asm-debug-all-5.0.3.jar for potential mods
[15:59:29] [Client thread/DEBUG] [FML/]: The mod container asm-debug-all-5.0.3.jar appears to be missing an mcmod.info file
[15:59:29] [Client thread/DEBUG] [FML/]: Examining file libraryjavasound-20101123.jar for potential mods
[15:59:29] [Client thread/DEBUG] [FML/]: The mod container libraryjavasound-20101123.jar appears to be missing an mcmod.info file
[15:59:29] [Client thread/DEBUG] [FML/]: Examining file jansi-1.11.jar for potential mods
[15:59:29] [Client thread/DEBUG] [FML/]: The mod container jansi-1.11.jar appears to be missing an mcmod.info file
[15:59:29] [Client thread/DEBUG] [FML/]: Examining directory start for potential mods
[15:59:29] [Client thread/DEBUG] [FML/]: No mcmod.info file found in directory start
[15:59:29] [Client thread/TRACE] [FML/]: Recursing into package net
[15:59:29] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge
[15:59:29] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle
[15:59:29] [Client thread/TRACE] [FML/]: Recursing into package net.minecraftforge.gradle.tweakers
[15:59:29] [Client thread/DEBUG] [FML/]: Examining file idea_rt.jar for potential mods
[15:59:29] [Client thread/DEBUG] [FML/]: The mod container idea_rt.jar appears to be missing an mcmod.info file
[15:59:29] [Client thread/DEBUG] [FML/]: Examining file gragent.jar for potential mods
[15:59:29] [Client thread/DEBUG] [FML/]: The mod container gragent.jar appears to be missing an mcmod.info file
[15:59:29] [Client thread/DEBUG] [FML/]: Examining file debugger-agent.jar for potential mods
[15:59:29] [Client thread/DEBUG] [FML/]: The mod container debugger-agent.jar appears to be missing an mcmod.info file
[15:59:29] [Client thread/INFO] [FML/]: Forge Mod Loader has identified 4 mods to load
[15:59:29] [Client thread/TRACE] [FML/]: Received a system property request ''
[15:59:29] [Client thread/TRACE] [FML/]: System property request managing the state of 0 mods
[15:59:29] [Client thread/DEBUG] [FML/]: After merging, found state information for 0 mods
[15:59:29] [Client thread/DEBUG] [FML/]: Found translations in forgeSrc-1.8.9-11.15.1.1722.jar [en_US, en_US]
[15:59:30] [Client thread/DEBUG] [FML/]: Found translations in forgeSrc-1.8.9-11.15.1.1722.jar [en_US, en_US]
[15:59:30] [Client thread/DEBUG] [skyblock_dungeons_guide/]: Enabling mod skyblock_dungeons_guide
[15:59:30] [Client thread/TRACE] [FML/]: Verifying mod requirements are satisfied
[15:59:30] [Client thread/TRACE] [FML/]: All mod requirements are satisfied
[15:59:30] [Client thread/TRACE] [FML/]: Sorting mods into an ordered list
[15:59:30] [Client thread/TRACE] [FML/]: Mod sorting completed successfully
[15:59:30] [Client thread/DEBUG] [FML/]: Mod sorting data
[15:59:30] [Client thread/DEBUG] [FML/]: skyblock_dungeons_guide(Skyblock Dungeons Guide:1.0): Dungeons_Guide.main ()
[15:59:30] [Client thread/TRACE] [mcp/mcp]: Sending event FMLConstructionEvent to mod mcp
[15:59:30] [Client thread/TRACE] [mcp/mcp]: Sent event FMLConstructionEvent to mod mcp
[15:59:30] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Coder Pack took 0.004s
[15:59:30] [Client thread/TRACE] [FML/FML]: Sending event FMLConstructionEvent to mod FML
[15:59:30] [Client thread/TRACE] [FML/FML]: Mod FML is using network checker : Invoking method checkModLists
[15:59:30] [Client thread/TRACE] [FML/FML]: Testing mod FML to verify it accepts its own version in a remote connection
[15:59:30] [Client thread/TRACE] [FML/FML]: The mod FML accepts its own version (8.0.99.99)
[15:59:30] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, skyblock_dungeons_guide] at CLIENT
[15:59:30] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, skyblock_dungeons_guide] at SERVER
[15:59:30] [Client thread/TRACE] [FML/FML]: Sent event FMLConstructionEvent to mod FML
[15:59:30] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Forge Mod Loader took 0.610s
[15:59:30] [Client thread/TRACE] [Forge/Forge]: Sending event FMLConstructionEvent to mod Forge
[15:59:30] [Client thread/TRACE] [FML/Forge]: Mod Forge is using network checker : No network checking performed
[15:59:30] [Client thread/TRACE] [FML/Forge]: Testing mod Forge to verify it accepts its own version in a remote connection
[15:59:30] [Client thread/TRACE] [FML/Forge]: The mod Forge accepts its own version (11.15.1.1722)
[15:59:30] [Client thread/TRACE] [Forge/Forge]: Sent event FMLConstructionEvent to mod Forge
[15:59:30] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Forge took 0.008s
[15:59:30] [Client thread/TRACE] [skyblock_dungeons_guide/skyblock_dungeons_guide]: Sending event FMLConstructionEvent to mod skyblock_dungeons_guide
[15:59:30] [Client thread/WARN] [FML/skyblock_dungeons_guide]: =============================================================
[15:59:30] [Client thread/WARN] [FML/skyblock_dungeons_guide]: MOD HAS DIRECT REFERENCE System.exit() THIS IS NOT ALLOWED REROUTING TO FML!
[15:59:30] [Client thread/WARN] [FML/skyblock_dungeons_guide]: Offendor: kr/syeyoung/dungeonsguide/a$1.actionPerformed(Lnet/minecraft/client/gui/GuiButton;)V
[15:59:30] [Client thread/WARN] [FML/skyblock_dungeons_guide]: Use FMLCommonHandler.exitJava instead
[15:59:30] [Client thread/WARN] [FML/skyblock_dungeons_guide]: =============================================================
[15:59:30] [Client thread/TRACE] [FML/skyblock_dungeons_guide]: Mod skyblock_dungeons_guide is using network checker : Accepting version 1.0
[15:59:30] [Client thread/TRACE] [FML/skyblock_dungeons_guide]: Testing mod skyblock_dungeons_guide to verify it accepts its own version in a remote connection
[15:59:30] [Client thread/TRACE] [FML/skyblock_dungeons_guide]: The mod skyblock_dungeons_guide accepts its own version (1.0)
[15:59:30] [Client thread/DEBUG] [FML/skyblock_dungeons_guide]: Attempting to inject @SidedProxy classes into skyblock_dungeons_guide
[15:59:30] [Client thread/TRACE] [skyblock_dungeons_guide/skyblock_dungeons_guide]: Sent event FMLConstructionEvent to mod skyblock_dungeons_guide
[15:59:30] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Skyblock Dungeons Guide took 0.018s
[15:59:30] [Client thread/DEBUG] [FML/]: Bar Finished: Construction took 0.639s
[15:59:30] [Client thread/DEBUG] [FML/]: Mod signature data
[15:59:30] [Client thread/DEBUG] [FML/]: Valid Signatures:
[15:59:30] [Client thread/DEBUG] [FML/]: Missing Signatures:
[15:59:30] [Client thread/DEBUG] [FML/]: mcp (Minecraft Coder Pack 9.19) minecraft.jar
[15:59:30] [Client thread/DEBUG] [FML/]: FML (Forge Mod Loader 8.0.99.99) forgeSrc-1.8.9-11.15.1.1722.jar
[15:59:30] [Client thread/DEBUG] [FML/]: Forge (Minecraft Forge 11.15.1.1722) forgeSrc-1.8.9-11.15.1.1722.jar
[15:59:30] [Client thread/DEBUG] [FML/]: skyblock_dungeons_guide (Skyblock Dungeons Guide 1.0) Dungeons_Guide.main
[15:59:30] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0.004s
[15:59:30] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0.007s
[15:59:30] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0.006s
[15:59:30] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Skyblock Dungeons Guide took 0.000s
[15:59:30] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading took 0.029s
[15:59:30] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 0.029s
[15:59:30] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 0.047s
[15:59:30] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one
[15:59:30] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one
[15:59:30] [Client thread/DEBUG] [Skyblock Dungeons Guide/]: Mod Skyblock Dungeons Guide is missing a pack.mcmeta file, substituting a dummy one
[15:59:30] [Client thread/INFO] [FML/]: Processing ObjectHolder annotations
[15:59:30] [Client thread/INFO] [FML/]: Found 384 ObjectHolder annotations
[15:59:30] [Client thread/INFO] [FML/]: Identifying ItemStackHolder annotations
[15:59:30] [Client thread/INFO] [FML/]: Found 0 ItemStackHolder annotations
[15:59:30] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPreInitializationEvent to mod mcp
[15:59:30] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPreInitializationEvent to mod mcp
[15:59:30] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Coder Pack took 0.001s
[15:59:30] [Client thread/TRACE] [FML/FML]: Sending event FMLPreInitializationEvent to mod FML
[15:59:30] [Client thread/TRACE] [FML/FML]: Sent event FMLPreInitializationEvent to mod FML
[15:59:30] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Forge Mod Loader took 0.021s
[15:59:30] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPreInitializationEvent to mod Forge
[15:59:30] [Client thread/INFO] [FML/Forge]: Configured a dormant chunk cache size of 0
[15:59:30] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPreInitializationEvent to mod Forge
[15:59:30] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Forge took 0.057s
[15:59:30] [Client thread/TRACE] [skyblock_dungeons_guide/skyblock_dungeons_guide]: Sending event FMLPreInitializationEvent to mod skyblock_dungeons_guide
[15:59:30] [Forge Version Check/INFO] [ForgeVersionCheck/Forge]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
[15:59:31] [Forge Version Check/DEBUG] [ForgeVersionCheck/Forge]: [Forge] Received version check data:
{
"homepage": "http://files.minecraftforge.net/maven/net/minecraftforge/forge/",
"promos": {
"1.1-latest": "1.3.2.6",
"1.10-latest": "12.18.0.2000",
"1.10.2-latest": "12.18.3.2511",
"1.10.2-recommended": "12.18.3.2185",
"1.11-latest": "13.19.1.2199",
"1.11-recommended": "13.19.1.2189",
"1.11.2-latest": "13.20.1.2588",
"1.11.2-recommended": "13.20.1.2386",
"1.12-latest": "14.21.1.2443",
"1.12-recommended": "14.21.1.2387",
"1.12.1-latest": "14.22.1.2485",
"1.12.1-recommended": "14.22.1.2478",
"1.12.2-latest": "14.23.5.2854",
"1.12.2-recommended": "14.23.5.2854",
"1.13.2-latest": "25.0.219",
"1.14.2-latest": "26.0.63",
"1.14.3-latest": "27.0.60",
"1.14.4-latest": "28.2.23",
"1.14.4-recommended": "28.2.0",
"1.15-latest": "29.0.4",
"1.15.1-latest": "30.0.51",
"1.15.2-latest": "31.2.47",
"1.15.2-recommended": "31.2.0",
"1.16.1-latest": "32.0.108",
"1.16.2-latest": "33.0.61",
"1.16.3-latest": "34.1.42",
"1.16.3-recommended": "34.1.0",
"1.16.4-latest": "35.1.37",
"1.16.4-recommended": "35.1.4",
"1.16.5-latest": "36.0.0",
"1.5.2-latest": "7.8.1.738",
"1.5.2-recommended": "7.8.1.737",
"1.6.1-latest": "8.9.0.775",
"1.6.2-latest": "9.10.1.871",
"1.6.2-recommended": "9.10.1.871",
"1.6.3-latest": "9.11.0.878",
"1.6.4-latest": "9.11.1.1345",
"1.6.4-recommended": "9.11.1.1345",
"1.7.10-latest": "10.13.4.1614",
"1.7.10-latest-1.7.10": "10.13.2.1343",
"1.7.10-recommended": "10.13.4.1558",
"1.7.2-latest": "10.12.2.1147",
"1.7.2-recommended": "10.12.2.1121",
"1.8-latest": "11.14.4.1577",
"1.8-recommended": "11.14.4.1563",
"1.8.8-latest": "11.15.0.1655",
"1.8.9-latest": "11.15.1.2318",
"1.8.9-recommended": "11.15.1.1722",
"1.9-latest": "12.16.0.1942",
"1.9-recommended": "12.16.1.1887",
"1.9.4-latest": "12.17.0.2051",
"1.9.4-recommended": "12.17.0.1976",
"latest-1.7.10": "10.13.2.1343"
}
}
[15:59:31] [Forge Version Check/INFO] [ForgeVersionCheck/Forge]: [Forge] Found status: UP_TO_DATE Target: null
[15:59:34] [Client thread/TRACE] [skyblock_dungeons_guide/skyblock_dungeons_guide]: Sent event FMLPreInitializationEvent to mod skyblock_dungeons_guide
[15:59:34] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Skyblock Dungeons Guide took 3.288s
[15:59:34] [Client thread/DEBUG] [FML/]: Bar Finished: PreInitialization took 3.367s
[15:59:34] [Client thread/INFO] [FML/]: Applying holder lookups
[15:59:34] [Client thread/INFO] [FML/]: Holder lookups applied
[15:59:34] [Client thread/INFO] [FML/]: Injecting itemstacks
[15:59:34] [Client thread/INFO] [FML/]: Itemstack injection complete
[15:59:34] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - TextureManager took 0.000s
[15:59:34] [Client thread/INFO] [STDOUT/]: [tv.twitch.StandardCoreAPI:<init>:16]: If on Windows, make sure to provide all of the necessary dll's as specified in the twitchsdk README. Also, make sure to set the PATH environment variable to point to the directory containing the dll's.
[15:59:35] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - SoundHandler took 0.914s
[15:59:35] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0.004s
[15:59:35] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0.002s
[15:59:35] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - GrassColorReloadListener took 0.008s
[15:59:35] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FoliageColorReloadListener took 0.008s
[15:59:35] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - GL Setup took 0.000s
[15:59:35] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Texture Map took 0.008s
[15:59:35] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelLoaderRegistry$1 took 0.000s
[15:59:35] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelLoaderRegistry$1 took 0.000s
[15:59:35] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelLoaderRegistry$1 took 0.000s
[15:59:35] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelLoaderRegistry$1 took 0.000s
[15:59:35] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelLoaderRegistry$1 took 0.000s
[15:59:35] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelLoaderRegistry$1 took 0.000s
[15:59:36] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: blocks took 1.305s
[15:59:37] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: items took 0.330s
[15:59:37] [Client thread/INFO] [FML/]: Max texture size: 16384
[15:59:37] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching - missingno took 0.001s
[15:59:37] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0.002s
[15:59:37] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelManager took 2.112s
[15:59:37] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Model Manager took 2.164s
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - RenderItem took 0.003s
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Item Renderer took 0.722s
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - EntityRenderer took 0.000s
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - BlockRendererDispatcher took 0.000s
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - RenderGlobal took 0.000s
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Entity Renderer took 0.157s
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Finished: Rendering Setup took 3.052s
[15:59:38] [Client thread/TRACE] [mcp/mcp]: Sending event FMLInitializationEvent to mod mcp
[15:59:38] [Client thread/TRACE] [mcp/mcp]: Sent event FMLInitializationEvent to mod mcp
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Coder Pack took 0.000s
[15:59:38] [Client thread/TRACE] [FML/FML]: Sending event FMLInitializationEvent to mod FML
[15:59:38] [Client thread/TRACE] [FML/FML]: Sent event FMLInitializationEvent to mod FML
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Forge Mod Loader took 0.000s
[15:59:38] [Client thread/TRACE] [Forge/Forge]: Sending event FMLInitializationEvent to mod Forge
[15:59:38] [Client thread/TRACE] [Forge/Forge]: Sent event FMLInitializationEvent to mod Forge
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Forge took 0.000s
[15:59:38] [Client thread/TRACE] [skyblock_dungeons_guide/skyblock_dungeons_guide]: Sending event FMLInitializationEvent to mod skyblock_dungeons_guide
[15:59:38] [Timer-0/INFO] [STDOUT/skyblock_dungeons_guide]: [kr.syeyoung.dungeonsguide.utils.AhUtils:loadAuctions:55]: I think i'm loading ah
[15:59:38] [Client thread/TRACE] [skyblock_dungeons_guide/skyblock_dungeons_guide]: Sent event FMLInitializationEvent to mod skyblock_dungeons_guide
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Skyblock Dungeons Guide took 0.232s
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Finished: Initialization took 0.233s
[15:59:38] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod mcp
[15:59:38] [Client thread/TRACE] [mcp/mcp]: Sending event IMCEvent to mod mcp
[15:59:38] [Client thread/TRACE] [mcp/mcp]: Sent event IMCEvent to mod mcp
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Coder Pack took 0.003s
[15:59:38] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod FML
[15:59:38] [Client thread/TRACE] [FML/FML]: Sending event IMCEvent to mod FML
[15:59:38] [Client thread/TRACE] [FML/FML]: Sent event IMCEvent to mod FML
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Forge Mod Loader took 0.000s
[15:59:38] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod Forge
[15:59:38] [Client thread/TRACE] [Forge/Forge]: Sending event IMCEvent to mod Forge
[15:59:38] [Client thread/TRACE] [Forge/Forge]: Sent event IMCEvent to mod Forge
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Forge took 0.000s
[15:59:38] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod skyblock_dungeons_guide
[15:59:38] [Client thread/TRACE] [skyblock_dungeons_guide/skyblock_dungeons_guide]: Sending event IMCEvent to mod skyblock_dungeons_guide
[15:59:38] [Client thread/TRACE] [skyblock_dungeons_guide/skyblock_dungeons_guide]: Sent event IMCEvent to mod skyblock_dungeons_guide
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Skyblock Dungeons Guide took 0.001s
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Finished: InterModComms$IMC took 0.005s
[15:59:38] [Client thread/INFO] [FML/]: Injecting itemstacks
[15:59:38] [Client thread/INFO] [FML/]: Itemstack injection complete
[15:59:38] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPostInitializationEvent to mod mcp
[15:59:38] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPostInitializationEvent to mod mcp
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Coder Pack took 0.000s
[15:59:38] [Client thread/TRACE] [FML/FML]: Sending event FMLPostInitializationEvent to mod FML
[15:59:38] [Client thread/TRACE] [FML/FML]: Sent event FMLPostInitializationEvent to mod FML
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Forge Mod Loader took 0.000s
[15:59:38] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPostInitializationEvent to mod Forge
[15:59:38] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPostInitializationEvent to mod Forge
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Forge took 0.119s
[15:59:38] [Client thread/TRACE] [skyblock_dungeons_guide/skyblock_dungeons_guide]: Sending event FMLPostInitializationEvent to mod skyblock_dungeons_guide
[15:59:38] [Client thread/TRACE] [skyblock_dungeons_guide/skyblock_dungeons_guide]: Sent event FMLPostInitializationEvent to mod skyblock_dungeons_guide
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Skyblock Dungeons Guide took 0.000s
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Finished: PostInitialization took 0.120s
[15:59:38] [Client thread/TRACE] [mcp/mcp]: Sending event FMLLoadCompleteEvent to mod mcp
[15:59:38] [Client thread/TRACE] [mcp/mcp]: Sent event FMLLoadCompleteEvent to mod mcp
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Coder Pack took 0.008s
[15:59:38] [Client thread/TRACE] [FML/FML]: Sending event FMLLoadCompleteEvent to mod FML
[15:59:38] [Client thread/TRACE] [FML/FML]: Sent event FMLLoadCompleteEvent to mod FML
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Forge Mod Loader took 0.000s
[15:59:38] [Client thread/TRACE] [Forge/Forge]: Sending event FMLLoadCompleteEvent to mod Forge
[15:59:38] [Client thread/DEBUG] [FML/Forge]: Forge RecipeSorter Baking:
[15:59:38] [Client thread/DEBUG] [FML/Forge]: 14: RecipeEntry("Before", UNKNOWN, )
[15:59:38] [Client thread/DEBUG] [FML/Forge]: 13: RecipeEntry("minecraft:shaped", SHAPED, net.minecraft.item.crafting.ShapedRecipes) Before: minecraft:shapeless
[15:59:38] [Client thread/DEBUG] [FML/Forge]: 12: RecipeEntry("forge:shapedore", SHAPED, net.minecraftforge.oredict.ShapedOreRecipe) Before: minecraft:shapeless After: minecraft:shaped
[15:59:38] [Client thread/DEBUG] [FML/Forge]: 11: RecipeEntry("minecraft:mapextending", SHAPED, net.minecraft.item.crafting.RecipesMapExtending) Before: minecraft:shapeless After: minecraft:shaped
[15:59:38] [Client thread/DEBUG] [FML/Forge]: 10: RecipeEntry("minecraft:shapeless", SHAPELESS, net.minecraft.item.crafting.ShapelessRecipes) After: minecraft:shaped
[15:59:38] [Client thread/DEBUG] [FML/Forge]: 9: RecipeEntry("minecraft:repair", SHAPELESS, net.minecraft.item.crafting.RecipeRepairItem) After: minecraft:shapeless
[15:59:38] [Client thread/DEBUG] [FML/Forge]: 8: RecipeEntry("forge:shapelessore", SHAPELESS, net.minecraftforge.oredict.ShapelessOreRecipe) After: minecraft:shapeless
[15:59:38] [Client thread/DEBUG] [FML/Forge]: 7: RecipeEntry("minecraft:armordyes", SHAPELESS, net.minecraft.item.crafting.RecipesArmorDyes) After: minecraft:shapeless
[15:59:38] [Client thread/DEBUG] [FML/Forge]: 6: RecipeEntry("minecraft:fireworks", SHAPELESS, net.minecraft.item.crafting.RecipeFireworks) After: minecraft:shapeless
[15:59:38] [Client thread/DEBUG] [FML/Forge]: 5: RecipeEntry("minecraft:pattern_add", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeAddPattern) After: minecraft:shapeless
[15:59:38] [Client thread/DEBUG] [FML/Forge]: 4: RecipeEntry("minecraft:pattern_dupe", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeDuplicatePattern) After: minecraft:shapeless
[15:59:38] [Client thread/DEBUG] [FML/Forge]: 3: RecipeEntry("minecraft:bookcloning", SHAPELESS, net.minecraft.item.crafting.RecipeBookCloning) After: minecraft:shapeless
[15:59:38] [Client thread/DEBUG] [FML/Forge]: 2: RecipeEntry("minecraft:mapcloning", SHAPELESS, net.minecraft.item.crafting.RecipesMapCloning) After: minecraft:shapeless
[15:59:38] [Client thread/DEBUG] [FML/Forge]: 1: RecipeEntry("After", UNKNOWN, )
[15:59:38] [Client thread/DEBUG] [FML/Forge]: Sorting recipies
[15:59:38] [Client thread/TRACE] [Forge/Forge]: Sent event FMLLoadCompleteEvent to mod Forge
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Forge took 0.008s
[15:59:38] [Client thread/TRACE] [skyblock_dungeons_guide/skyblock_dungeons_guide]: Sending event FMLLoadCompleteEvent to mod skyblock_dungeons_guide
[15:59:38] [Client thread/TRACE] [skyblock_dungeons_guide/skyblock_dungeons_guide]: Sent event FMLLoadCompleteEvent to mod skyblock_dungeons_guide
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Skyblock Dungeons Guide took 0.000s
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Finished: LoadComplete took 0.017s
[15:59:38] [Client thread/DEBUG] [FML/]: Freezing block and item id maps
[15:59:38] [Client thread/INFO] [FML/]: Forge Mod Loader has successfully loaded 4 mods
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0.000s
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0.015s
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0.006s
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Skyblock Dungeons Guide took 0.005s
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/atlas/blocks.png took 0.000s
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii.png took 0.003s
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:dynamic/lightMap_1 took 0.010s
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:dynamic/logo_1 took 0.000s
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/misc/forcefield.png took 0.002s
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:dynamic/dungeonmap/map_1 took 0.000s
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:dynamic/dungeons/map/_1 took 0.000s
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii_sga.png took 0.002s
[15:59:38] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading Texture Manager took 0.018s
[15:59:39] [Timer-0/INFO] [STDOUT/skyblock_dungeons_guide]: [kr.syeyoung.dungeonsguide.b:d:239]: waiting for 150499 bytes
[15:59:40] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: blocks took 0.929s
[15:59:40] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: items took 0.298s
[15:59:40] [Client thread/INFO] [FML/]: Max texture size: 16384
[15:59:40] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 0.163s
[15:59:41] [Client thread/DEBUG] [FML/]: Bar Finished: Mipmap generation took 0.148s
[15:59:41] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 0.020s
[15:59:41] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0.032s
[15:59:41] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading took 2.414s
[15:59:41] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 2.414s
[15:59:41] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 2.441s
[15:59:41] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one
[15:59:41] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one
[15:59:41] [Client thread/DEBUG] [Skyblock Dungeons Guide/]: Mod Skyblock Dungeons Guide is missing a pack.mcmeta file, substituting a dummy one
[15:59:41] [Client thread/DEBUG] [FML/]: Bar Finished: Loading took 14.879s
[15:59:45] [Netty Epoll Client IO #0/TRACE] [FML/]: Handshake channel activating
[15:59:45] [Netty Epoll Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: null->FMLHandshakeClientState$1:START
[15:59:45] [Netty Epoll Client IO #0/DEBUG] [FML/]: Next: HELLO
[15:59:45] [Netty Epoll Client IO #0/INFO] [FML/]: Server FML protocol version 1, no additional data received
[15:59:45] [Netty Epoll Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $ServerHello->FMLHandshakeClientState$2:HELLO
[15:59:45] [Netty Epoll Client IO #0/INFO] [FML/]: Server protocol version 1
[15:59:45] [Netty Epoll Client IO #0/DEBUG] [FML/]: Next: WAITINGSERVERDATA
[15:59:46] [Netty Epoll Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $ModList:0 mods->FMLHandshakeClientState$3:WAITINGSERVERDATA
[15:59:46] [Netty Epoll Client IO #0/INFO] [FML/]: Attempting connection with missing mods [mcp, FML, Forge, skyblock_dungeons_guide] at SERVER
[15:59:46] [Netty Epoll Client IO #0/DEBUG] [FML/]: Next: WAITINGSERVERCOMPLETE
[15:59:46] [Netty Epoll Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $RegistryData:23 mappings->FMLHandshakeClientState$4:WAITINGSERVERCOMPLETE
[15:59:46] [Netty Epoll Client IO #0/DEBUG] [FML/]: Received Mod Registry mapping for minecraft:potions: 23 IDs 0 subs 0 dummied
[15:59:46] [Netty Epoll Client IO #0/DEBUG] [FML/]: Next: WAITINGSERVERCOMPLETE
[15:59:46] [Netty Epoll Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $RegistryData:5 mappings->FMLHandshakeClientState$4:WAITINGSERVERCOMPLETE
[15:59:46] [Netty Epoll Client IO #0/DEBUG] [FML/]: Received Mod Registry mapping for minecraft:villagerprofessions: 5 IDs 0 subs 0 dummied
[15:59:46] [Netty Epoll Client IO #0/DEBUG] [FML/]: Next: WAITINGSERVERCOMPLETE
[15:59:46] [Netty Epoll Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $RegistryData:198 mappings->FMLHandshakeClientState$4:WAITINGSERVERCOMPLETE
[15:59:46] [Netty Epoll Client IO #0/DEBUG] [FML/]: Received Mod Registry mapping for minecraft:blocks: 198 IDs 0 subs 0 dummied
[15:59:46] [Netty Epoll Client IO #0/DEBUG] [FML/]: Next: WAITINGSERVERCOMPLETE
[15:59:46] [Netty Epoll Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $RegistryData:337 mappings->FMLHandshakeClientState$4:WAITINGSERVERCOMPLETE
[15:59:46] [Netty Epoll Client IO #0/INFO] [FML/]: Injecting existing block and item data into this client instance
[15:59:46] [Netty Epoll Client IO #0/TRACE] [mcp/mcp]: Sending event FMLModIdMappingEvent to mod mcp
[15:59:46] [Netty Epoll Client IO #0/TRACE] [mcp/mcp]: Sent event FMLModIdMappingEvent to mod mcp
[15:59:46] [Netty Epoll Client IO #0/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Coder Pack took 0.000s
[15:59:46] [Netty Epoll Client IO #0/TRACE] [FML/FML]: Sending event FMLModIdMappingEvent to mod FML
[15:59:46] [Netty Epoll Client IO #0/TRACE] [FML/FML]: Sent event FMLModIdMappingEvent to mod FML
[15:59:46] [Netty Epoll Client IO #0/DEBUG] [FML/]: Bar Step: ModIdMapping - Forge Mod Loader took 0.000s
[15:59:46] [Netty Epoll Client IO #0/TRACE] [Forge/Forge]: Sending event FMLModIdMappingEvent to mod Forge
[15:59:46] [Netty Epoll Client IO #0/TRACE] [Forge/Forge]: Sent event FMLModIdMappingEvent to mod Forge
[15:59:46] [Netty Epoll Client IO #0/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Forge took 0.000s
[15:59:46] [Netty Epoll Client IO #0/TRACE] [skyblock_dungeons_guide/skyblock_dungeons_guide]: Sending event FMLModIdMappingEvent to mod skyblock_dungeons_guide
[15:59:46] [Netty Epoll Client IO #0/TRACE] [skyblock_dungeons_guide/skyblock_dungeons_guide]: Sent event FMLModIdMappingEvent to mod skyblock_dungeons_guide
[15:59:46] [Netty Epoll Client IO #0/DEBUG] [FML/]: Bar Step: ModIdMapping - Skyblock Dungeons Guide took 0.000s
[15:59:46] [Netty Epoll Client IO #0/DEBUG] [FML/]: Bar Finished: ModIdMapping took 0.001s
[15:59:46] [Netty Epoll Client IO #0/INFO] [FML/]: Applying holder lookups
[15:59:46] [Netty Epoll Client IO #0/INFO] [FML/]: Holder lookups applied
[15:59:46] [Netty Epoll Client IO #0/DEBUG] [FML/]: Next: PENDINGCOMPLETE
[15:59:46] [Netty Epoll Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $HandshakeAck:{2}->FMLHandshakeClientState$5:PENDINGCOMPLETE
[15:59:46] [Netty Epoll Client IO #0/DEBUG] [FML/]: Next: COMPLETE
[15:59:46] [Netty Epoll Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $HandshakeAck:{3}->FMLHandshakeClientState$6:COMPLETE
[15:59:46] [Netty Epoll Client IO #0/DEBUG] [FML/]: Next: DONE
[15:59:46] [Netty Epoll Client IO #0/INFO] [FML/]: [Netty Epoll Client IO #0] Client side modded connection established
[15:59:46] [Netty Epoll Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $HandshakeAck:{5}->FMLHandshakeClientState$7:DONE
[15:59:46] [Netty Epoll Client IO #0/DEBUG] [FML/]: Next: DONE
[15:59:46] [Client thread/DEBUG] [FML/]: Overriding dimension: using 0
[16:00:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §dFrom §r§a[VIP] Temporum§r§7: §r§7help start 3/4?§r
[16:00:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aYou are playing on profile: §eBlueberry§r
[16:00:04] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r
[16:00:04] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§eWelcome to §r§aHypixel SkyBlock§r§e!§r
[16:00:08] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §dTo §r§a[VIP] Temporum§r§7: §r§7sry cant§r
[16:00:10] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §dFrom §r§a[VIP] Temporum§r§7: §r§7ok np§r
[16:00:10] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Warping...§r
[16:00:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §7Sending to server mini27H...§r
[16:00:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§f §r§f §r§1 §r§0 §r§2 §r§f §r§f §r§2 §r§0 §r§4 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r
[16:00:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§8 §r§8 §r§1 §r§3 §r§3 §r§7 §r§8 §r
[16:00:14] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aYou are playing on profile: §eBlueberry§r
[16:00:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aAttempting to add you to the party...§r
[16:00:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §dDungeon Finder §r§f> §r§cThis group is full and has been de-listed!§r
[16:00:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aAttempting to add you to the party...§r
[16:00:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §dDungeon Finder §r§f> §r§asyeyoung §r§ejoined the dungeon group! (§r§bMage Level 18§r§e)§r
[16:00:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §dDungeon Finder §r§f> §r§6sharviper §r§ejoined the dungeon group! (§r§bMage Level 7§r§e)§r
[16:00:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §dDungeon Finder §r§f> §r§7Bauto08_ §r§ejoined the dungeon group! (§r§bMage Level 7§r§e)§r
[16:00:45] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §dDungeon Finder §r§f> §r§7Ariel200611 §r§ejoined the dungeon group! (§r§bMage Level 4§r§e)§r
[16:00:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a[VIP] Brandowitnoskin§f§r§f: paying 7 mil for a floor 7 carry p me§r
[16:01:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:01:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §6Party Members (5)§r
[16:01:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §f§r
[16:01:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §eParty Leader: §r§7RLG525 §r§a●§r
[16:01:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §eParty Members: §r§6[MVP§r§d++§r§6] sharviper§r§a ● §r§7Ariel200611§r§a ● §r§7Bauto08_§r§a ● §r§a[VIP§r§6+§r§a] syeyoung§r§a ● §r
[16:01:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:01:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aYou are now in the §r§6PARTY§r§a channel§r
[16:01:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§9Party §8> §a[VIP§6+§a] syeyoung§f: §rstart§r
[16:01:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:01:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §eYou left the party.§r
[16:01:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:01:14] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aAttempting to add you to the party...§r
[16:01:14] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §dDungeon Finder §r§f> §r§asyeyoung §r§ejoined the dungeon group! (§r§bMage Level 18§r§e)§r
[16:01:14] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §dDungeon Finder §r§f> §r§7foriver4725 §r§ejoined the dungeon group! (§r§bHealer Level 15§r§e)§r
[16:01:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §dDungeon Finder §r§f> §r§bdaichann §r§ejoined the dungeon group! (§r§bMage Level 21§r§e)§r
[16:01:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:01:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §b[MVP§r§c+§r§b] MajorSpoops§r§e warped the party to a SkyBlock dungeon!§r
[16:01:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §eLooting §r§cThe Catacombs §r§ewith §r§95/5 players §r§eon §r§6Floor III§r§e!§r
[16:01:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:01:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §7Sending to server mini648R...§r
[16:01:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§f §r§f §r§1 §r§0 §r§2 §r§f §r§f §r§2 §r§0 §r§4 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r
[16:01:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§8 §r§8 §r§1 §r§3 §r§3 §r§7 §r§8 §r
[16:01:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aYour active Potion Effects have been paused and stored. They will be restored when you leave Dungeons! You are not allowed to use existing Potion Effects while in Dungeons.§r
[16:01:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aYou are playing on profile: §eBlueberry§r
[16:01:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§bdaichann§r§a has started the dungeon countdown. The dungeon will begin in 1 minute.§r
[16:01:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §e[NPC] §bMort§f: §rTalk to me to change your class and ready up.§r
[16:01:32] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§bdaichann§r§a is now ready!§r
[16:01:32] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§asyeyoung§r§a is now ready!§r
[16:01:33] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§bcfhaincy§r§a is now ready!§r
[16:01:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§bMajorSpoops§r§a is now ready!§r
[16:01:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7foriver4725§r§a is now ready!§r
[16:01:35] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aDungeon starts in 4 seconds.§r
[16:01:36] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aDungeon starts in 3 seconds.§r
[16:01:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aDungeon starts in 2 seconds.§r
[16:01:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aDungeon starts in 1 second.§r
[16:01:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §e[NPC] §bMort§f: §rHere, I found this map when I first entered the dungeon.§r
[16:01:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §e[NPC] §bMort§f: §rYou should find it useful if you get lost.§r
[16:01:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §e[NPC] §bMort§f: §rGood luck.§r
[16:01:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c207,672.1 §r§7damage.§r
[16:01:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lMage Milestone §r§e❶§r§7: You have dealt §r§c150000§r§7 Total Damage so far! §r§a00m 08s§r
[16:01:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c122,998.5 §r§7damage.§r
[16:01:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:01:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §7foriver4725 §r§ehas left the party.§r
[16:01:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:01:48] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c278,132.3 §r§7damage.§r
[16:01:49] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c ☠ §r§7foriver4725§r§7 disconnected from the Dungeon and became a ghost§r§7.§r
[16:01:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c801,020.9 §r§7damage.§r
[16:01:52] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c267,007 §r§7damage.§r
[16:01:55] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§b[MVP§r§c+§r§b] MajorSpoops§r§f §r§ehas obtained §r§dBlessing of Life§r§e!§r
[16:01:55] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§bMajorSpoops §r§ffound a §r§dBlessing of Life V§r§f! (§r§a00m 16s§r§f)§r
[16:01:55] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Grants you §r§a+1,391.4 HP §r§7and §r§a+0.18% §r§7health regeneration.§r
[16:01:55] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§b[MVP§r§c+§r§b] MajorSpoops§r§f §r§ehas obtained §r§8Wither Key§r§e!§r
[16:01:55] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lRIGHT CLICK §r§7on §r§7a §r§8WITHER §r§7door§r§7 to open it. This key can only be used to open §r§a1§r§7 door!§r
[16:01:55] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§b[MVP§r§c+§r§b] MajorSpoops§r§f §r§ehas obtained §r§9Superboom TNT§r§e!§r
[16:01:56] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:02:06] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou cannot move the silverfish in that direction!§r
[16:02:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§bdaichann§r§a opened a §r§8§lWITHER §r§adoor!§r
[16:02:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Guided Sheep §r§ais now available!§r
[16:02:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:02:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§fYou found a §r§dBlessing of Wisdom V§r§f!§r
[16:02:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Granted you §r§a1,233.7 §r§b✎ Intelligence §r§7and §r§a+24 §r§f✦ Speed§r§7.§r
[16:02:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§b[MVP§r§c+§r§b] cfhaincy§r§f §r§ehas obtained §r§8Wither Key§r§e!§r
[16:02:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lRIGHT CLICK §r§7on §r§7a §r§8WITHER §r§7door§r§7 to open it. This key can only be used to open §r§a1§r§7 door!§r
[16:02:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§b[MVP§r§c+§r§b] cfhaincy§r§f §r§ehas obtained §r§6Revive Stone§r§e!§r
[16:02:45] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Guided Sheep §r§ais now available!§r
[16:02:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§bMajorSpoops §r§ffound a §r§dBlessing of Life V§r§f!§r
[16:02:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Grants you §r§a+1,421.8 HP §r§7and §r§a+0.18% §r§7health regeneration.§r
[16:02:52] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§asyeyoung§r§a opened a §r§8§lWITHER §r§adoor!§r
[16:02:57] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:02:58] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lMage Milestone §r§e❷§r§7: You have dealt §r§c750000§r§7 Total Damage so far! §r§a01m 18s§r
[16:02:58] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c685,112.9 §r§7damage.§r
[16:02:58] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c20,553.4 §r§7damage.§r
[16:03:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c627,951.6 §r§7damage.§r
[16:03:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c448,116.8 §r§7damage.§r
[16:03:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c448,116.8 §r§7damage.§r
[16:03:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c477,625.9 §r§7damage.§r
[16:03:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c18,202.3 §r§7damage.§r
[16:03:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cLost Adventurer §r§aused §r§6Dragon's Breath §r§aon you!§r
[16:03:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c18,440.1 §r§7damage.§r
[16:03:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c18,681.1 §r§7damage.§r
[16:03:04] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c18,925.3 §r§7damage.§r
[16:03:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c349,673.4 §r§7damage.§r
[16:03:06] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c19,423.1 §r§7damage.§r
[16:03:06] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c19,677 §r§7damage.§r
[16:03:06] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c19,934.1 §r§7damage.§r
[16:03:07] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c20,194.6 §r§7damage.§r
[16:03:07] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c20,458.5 §r§7damage.§r
[16:03:07] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c20,725.9 §r§7damage.§r
[16:03:07] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c20,996.7 §r§7damage.§r
[16:03:08] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c231,350.6 §r§7damage.§r
[16:03:08] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c21,271.1 §r§7damage.§r
[16:03:08] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c21,549.1 §r§7damage.§r
[16:03:08] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c21,830.7 §r§7damage.§r
[16:03:09] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c22,116 §r§7damage.§r
[16:03:09] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c22,405 §r§7damage.§r
[16:03:09] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c22,697.8 §r§7damage.§r
[16:03:09] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c22,994.5 §r§7damage.§r
[16:03:10] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c23,295 §r§7damage.§r
[16:03:10] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c23,599.4 §r§7damage.§r
[16:03:10] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c23,907.8 §r§7damage.§r
[16:03:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Guided Sheep §r§ais now available!§r
[16:03:12] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP§r§6+§r§a] syeyoung§r§f §r§ehas obtained §r§8Wither Key§r§e!§r
[16:03:12] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lRIGHT CLICK §r§7on §r§7a §r§8WITHER §r§7door§r§7 to open it. This key can only be used to open §r§a1§r§7 door!§r
[16:03:12] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP§r§6+§r§a] syeyoung§r§f §r§ehas obtained §r§6Revive Stone§r§e!§r
[16:03:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§asyeyoung§r§a opened a §r§8§lWITHER §r§adoor!§r
[16:03:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lMage Milestone §r§e❸§r§7: You have dealt §r§c3000000§r§7 Total Damage so far! §r§a01m 45s§r
[16:03:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c7 §r§7enemies for §r§c1,789,526.8 §r§7damage.§r
[16:03:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c179,702.8 §r§7damage.§r
[16:03:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:03:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c760,151.9 §r§7damage.§r
[16:03:33] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c231,350.6 §r§7damage.§r
[16:03:33] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP§r§6+§r§a] syeyoung§r§f §r§ehas obtained §r§9Superboom TNT§r§e!§r
[16:03:33] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP§r§6+§r§a] syeyoung§r§f §r§ehas obtained §r§8Wither Key§r§e!§r
[16:03:33] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lRIGHT CLICK §r§7on §r§7a §r§8WITHER §r§7door§r§7 to open it. This key can only be used to open §r§a1§r§7 door!§r
[16:03:35] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§asyeyoung§r§a opened a §r§8§lWITHER §r§adoor!§r
[16:03:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c137,022.6 §r§7damage.§r
[16:03:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c5 §r§7enemies for §r§c1,009,483.8 §r§7damage.§r
[16:03:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c594,901.5 §r§7damage.§r
[16:03:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Guided Sheep §r§ais now available!§r
[16:03:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c369,828.5 §r§7damage.§r
[16:03:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c194,477.3 §r§7damage.§r
[16:03:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c178,409.4 §r§7damage.§r
[16:03:45] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c330,500.8 §r§7damage.§r
[16:03:49] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c18,202.3 §r§7damage.§r
[16:03:49] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c30,812.3 §r§7damage.§r
[16:03:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c33,590 §r§7damage.§r
[16:03:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cLost Adventurer §r§aused §r§6Dragon's Breath §r§aon you!§r
[16:03:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c18,829 §r§7damage.§r
[16:03:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c19,023.3 §r§7damage.§r
[16:03:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c19,249.3 §r§7damage.§r
[16:03:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c19,478 §r§7damage.§r
[16:03:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c251,030.6 §r§7damage.§r
[16:03:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c19,913.8 §r§7damage.§r
[16:03:52] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c20,150.4 §r§7damage.§r
[16:03:52] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c20,389.8 §r§7damage.§r
[16:03:52] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c20,632 §r§7damage.§r
[16:03:52] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c20,847.7 §r§7damage.§r
[16:03:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c21,095.4 §r§7damage.§r
[16:03:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c21,346 §r§7damage.§r
[16:03:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c21,570.2 §r§7damage.§r
[16:03:54] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c21,826.5 §r§7damage.§r
[16:03:54] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c22,085.8 §r§7damage.§r
[16:03:54] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c22,318.8 §r§7damage.§r
[16:03:54] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c22,583.9 §r§7damage.§r
[16:03:55] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c22,852.2 §r§7damage.§r
[16:03:55] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c23,123.7 §r§7damage.§r
[16:03:55] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c23,369 §r§7damage.§r
[16:03:56] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c23,646.7 §r§7damage.§r
[16:03:56] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c23,927.6 §r§7damage.§r
[16:03:57] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:03:57] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP§r§6+§r§a] syeyoung§r§f §r§ehas obtained §r§cBlood Key§r§e!§r
[16:03:57] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lRIGHT CLICK §r§7on §r§7the §r§cBLOOD DOOR§r§7 to open it. This key can only be used to open §r§a1§r§7 door!§r
[16:03:59] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP§r§6+§r§a] syeyoung§r§f §r§ehas obtained §r§9Superboom TNT§r§e!§r
[16:04:00] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP§r§6+§r§a] syeyoung§r§f §r§ehas obtained §r§dBlessing of Power§r§e!§r
[16:04:00] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§fYou found a §r§dBlessing of Power V§r§f! (§r§a02m 20s§r§f)§r
[16:04:00] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Granted you §r§a171.3 §r§c❁ Strength §r§7and §r§a129.7 §r§9☠ Crit Damage§r§7.§r
[16:04:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c731,924.1 §r§7damage.§r
[16:04:04] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c194,477.3 §r§7damage.§r
[16:04:07] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThe §r§c§lBLOOD DOOR§r§c has been opened!§r
[16:04:07] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§5A shiver runs down your spine...§r
[16:04:08] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: So you made it this far... interesting.§r
[16:04:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c297,450.8 §r§7damage.§r
[16:04:12] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: You are much stronger than I was expecting.§r
[16:04:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Not to worry, I recently added a very fine piece to my collection!§r
[16:04:21] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Go, fight!§r
[16:04:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Go, fight!§r
[16:04:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c330,500.8 §r§7damage.§r
[16:04:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c448,116.8 §r§7damage.§r
[16:04:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c448,116.8 §r§7damage.§r
[16:04:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Guided Sheep §r§ais now available!§r
[16:04:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:04:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Hmmm... this one!§r
[16:04:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§bcfhaincy §r§ffound a §r§dBlessing of Wisdom I§r§f!§r
[16:04:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Granted you §r§a851.6 §r§b✎ Intelligence §r§7and §r§a+4.8 §r§f✦ Speed§r§7.§r
[16:04:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c337,224.5 §r§7damage.§r
[16:04:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c457,233.3 §r§7damage.§r
[16:04:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Hmmm... this one!§r
[16:04:33] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c607,004.2 §r§7damage.§r
[16:04:33] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Let's see how you can handle this.§r
[16:04:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c455,958.2 §r§7damage.§r
[16:04:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c194,731.2 §r§7damage.§r
[16:04:35] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lMage Milestone §r§e❹§r§7: You have dealt §r§c7500000§r§7 Total Damage so far! §r§a02m 55s§r
[16:04:35] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c303,502.1 §r§7damage.§r
[16:04:35] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c640,726.6 §r§7damage.§r
[16:04:36] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c457,233.3 §r§7damage.§r
[16:04:36] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c4 §r§7enemies for §r§c1,232,849.7 §r§7damage.§r
[16:04:36] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c539,559.3 §r§7damage.§r
[16:04:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c489,680.6 §r§7damage.§r
[16:04:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c637,553.3 §r§7damage.§r
[16:04:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c649,206.9 §r§7damage.§r
[16:04:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§bcfhaincy §r§ffound a §r§dBlessing of Stone I§r§f!§r
[16:04:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Granted you §r§a545.1 §r§a❈ Defense §r§7and §r§a+7.2 §r§c❁ Damage§r§7.§r
[16:04:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c457,233.3 §r§7damage.§r
[16:04:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c539,559.3 §r§7damage.§r
[16:04:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c708,171.5 §r§7damage.§r
[16:04:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Go and live again!§r
[16:04:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP§r§6+§r§a] syeyoung§r§f §r§ehas obtained §r§9Superboom TNT§r§e!§r
[16:04:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c472,114.3 §r§7damage.§r
[16:04:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Go and live again!§r
[16:04:52] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c315,378.2 §r§7damage.§r
[16:04:57] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:04:59] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Go, fight!§r
[16:05:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: You'll do.§r
[16:05:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c139,810.2 §r§7damage.§r
[16:05:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c182,898.1 §r§7damage.§r
[16:05:18] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Bonzo's Balloon hit you for §r§c8000.0§r§7 damage.§r
[16:05:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§b[MVP§r§d+§r§b] daichann§r§f §r§ehas obtained §r§dBlessing of Stone§r§e!§r
[16:05:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§bdaichann §r§ffound a §r§dBlessing of Stone V§r§f! (§r§a03m 40s§r§f)§r
[16:05:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Granted you §r§a796.1 §r§a❈ Defense §r§7and §r§a+36 §r§c❁ Damage§r§7.§r
[16:05:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c5,445.9 §r§7damage.§r
[16:05:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c145,359.8 §r§7damage.§r
[16:05:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThere are blocks in the way!§r
[16:05:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:05:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c5,596.9 §r§7damage.§r
[16:05:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c5,702.4 §r§7damage.§r
[16:05:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c5,810 §r§7damage.§r
[16:05:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c5,919.6 §r§7damage.§r
[16:05:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c6,031.2 §r§7damage.§r
[16:05:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c6,144.9 §r§7damage.§r
[16:05:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c6,260.9 §r§7damage.§r
[16:05:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c6,378.9 §r§7damage.§r
[16:05:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Go, fight!§r
[16:05:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c6,499.3 §r§7damage.§r
[16:05:32] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c6,621.9 §r§7damage.§r
[16:05:32] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c6,687 §r§7damage.§r
[16:05:32] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c6,746.6 §r§7damage.§r
[16:05:32] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c6,753.5 §r§7damage.§r
[16:05:32] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c6,753.5 §r§7damage.§r
[16:05:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Aw, I liked that one.§r
[16:05:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: I'm impressed.§r
[16:05:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: You'll do.§r
[16:05:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThere are blocks in the way!§r
[16:05:55] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§bdaichann §r§ffound a §r§dBlessing of Life II§r§f!§r
[16:05:55] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Grants you §r§a+1,036.7 HP §r§7and §r§a+0.07% §r§7health regeneration.§r
[16:05:57] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:06:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Go, fight!§r
[16:06:06] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: That will be enough for now.§r
[16:06:14] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: That one was weak anyway.§r
[16:06:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThere are blocks in the way!§r
[16:06:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThere are blocks in the way!§r
[16:06:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThere are blocks in the way!§r
[16:06:18] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThere are blocks in the way!§r
[16:06:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThere are blocks in the way!§r
[16:06:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThere are blocks in the way!§r
[16:06:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:06:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aYou earned §r§2590 GEXP §r§afrom playing SkyBlock!§r
[16:06:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: I'm impressed.§r
[16:06:32] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: You have proven yourself. You may pass.§r
[16:06:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§b[MVP§r§c+§r§b] MajorSpoops§r§f §r§ehas obtained §r§dBlessing of Power§r§e!§r
[16:06:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§bMajorSpoops §r§ffound a §r§dBlessing of Power V§r§f! (§r§a04m 58s§r§f)§r
[16:06:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Granted you §r§a171.6 §r§c❁ Strength §r§7and §r§a129.7 §r§9☠ Crit Damage§r§7.§r
[16:06:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§b[MVP§r§c+§r§b] MajorSpoops§r§f §r§ehas obtained §r§dBlessing of Life§r§e!§r
[16:06:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§bMajorSpoops §r§ffound a §r§dBlessing of Life V§r§f! (§r§a04m 59s§r§f)§r
[16:06:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Grants you §r§a+1,464.3 HP §r§7and §r§a+0.18% §r§7health regeneration.§r
[16:06:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Professor§r§f: I was burdened with terrible news recently...§r
[16:06:48] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Professor§r§f: My most talented student...§r
[16:06:54] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Professor§r§f: I'll show you real power!§r
[16:06:57] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:06:59] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c⚠ The §r§4Laser Guardian§r§c is charging up their §r§e§lFocus Beam§r§c! ⚠§r
[16:06:59] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c36,962 §r§7damage.§r
[16:06:59] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c37,331.7 §r§7damage.§r
[16:07:00] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c37,705 §r§7damage.§r
[16:07:00] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c38,082.1 §r§7damage.§r
[16:07:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c38,463 §r§7damage.§r
[16:07:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c38,847.6 §r§7damage.§r
[16:07:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c39,236.1 §r§7damage.§r
[16:07:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c39,628.5 §r§7damage.§r
[16:07:02] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c40,024.8 §r§7damage.§r
[16:07:02] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c40,425.1 §r§7damage.§r
[16:07:02] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c40,829.4 §r§7damage.§r
[16:07:02] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c41,237.7 §r§7damage.§r
[16:07:02] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c41,650.1 §r§7damage.§r
[16:07:02] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c42,066.6 §r§7damage.§r
[16:07:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c42,487.3 §r§7damage.§r
[16:07:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c42,912.2 §r§7damage.§r
[16:07:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c43,341.4 §r§7damage.§r
[16:07:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c43,774.8 §r§7damage.§r
[16:07:04] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c81,174.7 §r§7damage.§r
[16:07:04] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c86,052.6 §r§7damage.§r
[16:07:04] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c91,467.3 §r§7damage.§r
[16:07:04] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c94,515.3 §r§7damage.§r
[16:07:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c94,970.9 §r§7damage.§r
[16:07:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c95,431 §r§7damage.§r
[16:07:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c95,895.7 §r§7damage.§r
[16:07:06] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c47,402.1 §r§7damage.§r
[16:07:07] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c47,876.2 §r§7damage.§r
[16:07:07] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c48,355 §r§7damage.§r
[16:07:07] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c⚡ WARNING! The §r§4Chaos Guardian§r§c is preparing to use §r§e§lDischarge§r§c! Move away! ⚡§r
[16:07:07] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c48,838.6 §r§7damage.§r
[16:07:12] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c16,787.9 §r§7damage.§r
[16:07:12] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Professor§r§f: Oh? You found my Guardians one weakness?§r
[16:07:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Professor§r§f: Even if you took my barrier down, I can still fight.§r
[16:07:20] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Professor§r§f: This time I'll be your opponent!§r
[16:07:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c37,587.2 §r§7damage.§r
[16:07:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c37,887.1 §r§7damage.§r
[16:07:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c38,038.7 §r§7damage.§r
[16:07:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c38,194.8 §r§7damage.§r
[16:07:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c42,397.2 §r§7damage.§r
[16:07:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c42,588 §r§7damage.§r
[16:07:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:07:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c43,307.5 §r§7damage.§r
[16:07:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c43,675.8 §r§7damage.§r
[16:07:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c44,610.4 §r§7damage.§r
[16:07:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c45,597.2 §r§7damage.§r
[16:07:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c46,002.2 §r§7damage.§r
[16:07:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c46,408.1 §r§7damage.§r
[16:07:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c46,616.7 §r§7damage.§r
[16:07:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c47,026.6 §r§7damage.§r
[16:07:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c48,208.7 §r§7damage.§r
[16:07:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c48,848.5 §r§7damage.§r
[16:07:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c49,500 §r§7damage.§r
[16:07:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Professor§r§f: I see. You have forced me to use my ultimate technique.§r
[16:07:35] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Professor§r§f: These Guardians aren't just for show I'm afraid!§r
[16:07:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Professor§r§f: The process is irreversible, but I'll be stronger than a Wither now!§r
[16:07:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Guided Sheep §r§ais now available!§r
[16:07:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c37,264.4 §r§7damage.§r
[16:07:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c37,566.2 §r§7damage.§r
[16:07:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c37,804.5 §r§7damage.§r
[16:07:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c74,921.7 §r§7damage.§r
[16:07:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c4 §r§7enemies for §r§c154,781.1 §r§7damage.§r
[16:07:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c4 §r§7enemies for §r§c161,848.1 §r§7damage.§r
[16:07:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c4 §r§7enemies for §r§c176,699.9 §r§7damage.§r
[16:07:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c4 §r§7enemies for §r§c184,713.9 §r§7damage.§r
[16:07:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c4 §r§7enemies for §r§c190,755 §r§7damage.§r
[16:07:45] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c45,398.7 §r§7damage.§r
[16:07:45] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c45,854.2 §r§7damage.§r
[16:07:45] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c46,209.6 §r§7damage.§r
[16:07:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c37,467.9 §r§7damage.§r
[16:07:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c47,708.8 §r§7damage.§r
[16:07:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c49,011.1 §r§7damage.§r
[16:07:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c49,503.6 §r§7damage.§r
[16:07:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c49,935.9 §r§7damage.§r
[16:07:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c50,398.4 §r§7damage.§r
[16:07:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c47,163 §r§7damage.§r
[16:07:48] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c47,404.2 §r§7damage.§r
[16:07:48] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:07:48] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c47,977.9 §r§7damage.§r
[16:07:48] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:07:48] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c48,953.8 §r§7damage.§r
[16:07:48] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Professor§r§f: What?! My Guardian power is unbeatable!§r
[16:07:48] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:07:49] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:07:49] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:07:49] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:07:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Professor§r§f: How could you... I needed more power...§r
[16:07:56] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Professor§r§f: I can't let my Master hear about this.. he'll kill m-§r
[16:07:57] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:07:57] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§4[BOSS] Necron§r§c: That is enough, fool!§r
[16:08:00] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§4[BOSS] Necron§r§c: Adventurers! Be careful of who you are messing with..§r
[16:08:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§4[BOSS] Necron§r§c: Before I have to deal with you myself.§r
[16:08:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a§l▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬§r
[16:08:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§cThe Catacombs §r§8- §r§eFloor III§r
[16:08:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r
[16:08:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§fTeam Score: §r§a249 §r§f(§r§aA§r§f)§r
[16:08:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§c☠ §r§eDefeated §r§cThe Professor §r§ein §r§a06m 26s§r
[16:08:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§r §6> §e§lEXTRA STATS §6<
§6§r
[16:08:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§8+§r§3385.9 Catacombs Experience§r
[16:08:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§8+§r§3401.4 Mage Experience§r
[16:08:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§8+§r§3100.3 Tank Experience §r§b(Team Bonus)§r
[16:08:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§8+§r§3100.3 Berserk Experience §r§b(Team Bonus)§r
[16:08:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§8+§r§3100.3 Healer Experience §r§b(Team Bonus)§r
[16:08:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a§l▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬§r
[16:08:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:08:32] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:08:32] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §b[MVP§r§d+§r§b] daichann §r§ehas left the party.§r
[16:08:32] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:08:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:08:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §eThe party was transferred to §r§b[MVP§r§c+§r§b] cfhaincy §r§ebecause §r§b[MVP§r§c+§r§b] MajorSpoops §r§eleft§r
[16:08:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:08:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:08:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §b[MVP§r§c+§r§b] cfhaincy §r§ehas disbanded the party!§r
[16:08:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:08:57] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:09:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:09:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThere are blocks in the way!§r
[16:09:35] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cWarning! §r§eThis Dungeon will §r§cclose §r§ein §r§a90s§r§e.§r
[16:09:36] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §7Sending to server mini2N...§r
[16:09:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§f §r§f §r§1 §r§0 §r§2 §r§f §r§f §r§2 §r§0 §r§4 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r
[16:09:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§8 §r§8 §r§1 §r§3 §r§3 §r§7 §r§8 §r
[16:09:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aYou are playing on profile: §eBlueberry§r
[16:09:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a[VIP] T1ol§f§r§f: selling 2000 wither essnece 30k /p me§r
[16:10:00] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aYou are now in the §r§6GUILD§r§a channel§r
[16:10:02] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§2Guild > §a[VIP§6+§a] syeyoung §3[Vet]§f: §rspaghe on pls§r
[16:10:04] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:10:04] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §cYou cannot invite that player since they're not online.§r
[16:10:04] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:10:14] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§2Guild > §a[VIP§6+§a] syeyoung §3[Vet]§f: §rtime to test score calculation§r
[16:10:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §b[MVP§2+§b] ohRxbxn§f§r§f: IM BUYING 650 WITHER ESSENCE FOR 4K PER! MUST HAVE 6M COLLAT! /visit ohRxbxn -----------------------§r
[16:10:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§2Guild > §a[VIP§6+§a] syeyoung §3[Vet]§f: §ractually§r
[16:10:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a[VIP] MisterToobly§f§r§f: 3/4 STORM SET LVL 100 SHEEP SPIRIT SCEPTRE MY AUTION§r
[16:10:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§2Guild > §a[VIP§6+§a] syeyoung §3[Vet]§f: §ryou don't have to§r
[16:10:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a[VIP] T1ol§f§r§f: im nor scammer§r
[16:10:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§2Guild > §a[VIP§6+§a] syeyoung §3[Vet]§f: §rIcan't beat bossfight myself§r
[16:10:33] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aAttempting to add you to the party...§r
[16:10:33] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §dDungeon Finder §r§f> §r§asyeyoung §r§ejoined the dungeon group! (§r§bMage Level 18§r§e)§r
[16:10:36] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §b[MVP§c+§b] llvn§f§r§f: Buying Hyperion With All Scrolls 400m /p m,e§r
[16:10:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §b[MVP§c+§b] llvn§f§r§f: Buying Hyperion With All Scrolls 400m /p m,e -=-=-=-=-=-=-=-=-=-=-=-=-=-=§r
[16:10:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:10:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a[VIP] Leung87§r§e warped the party to a SkyBlock dungeon!§r
[16:10:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §eExploring §r§cThe Catacombs §r§ewith §r§95/5 players §r§eon §r§6Floor III§r§e!§r
[16:10:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:10:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §7Sending to server mini560Q...§r
[16:10:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§f §r§f §r§1 §r§0 §r§2 §r§f §r§f §r§2 §r§0 §r§4 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r
[16:10:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§8 §r§8 §r§1 §r§3 §r§3 §r§7 §r§8 §r
[16:10:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aYour active Potion Effects have been paused and stored. They will be restored when you leave Dungeons! You are not allowed to use existing Potion Effects while in Dungeons.§r
[16:10:44] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aYou are playing on profile: §eBlueberry§r
[16:10:44] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Gear_Shift§r§a has started the dungeon countdown. The dungeon will begin in 1 minute.§r
[16:10:45] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §e[NPC] §bMort§f: §rTalk to me to change your class and ready up.§r
[16:10:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Gear_Shift§r§a is now ready!§r
[16:10:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§asyeyoung§r§a is now ready!§r
[16:10:48] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §cYou're already in this channel!§r
[16:10:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aLeung87§r§a is now ready!§r
[16:10:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aYou are now in the §r§6PARTY§r§a channel§r
[16:10:52] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§9Party §8> §a[VIP§6+§a] syeyoung§f: §rs or spee§r
[16:10:54] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§9Party §8> §a[VIP§6+§a] syeyoung§f: §r?§r
[16:10:55] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aIntouchs§r§a is now ready!§r
[16:10:57] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a[VIP] Leung87§f§r§f: s§r
[16:11:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Guided Sheep §r§ais now available!§r
[16:11:04] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aDungeon starts in 15 seconds.§r
[16:11:09] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aDungeon starts in 10 seconds.§r
[16:11:14] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7superlucky2005§r§a is now ready!§r
[16:11:14] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aDungeon starts in 4 seconds.§r
[16:11:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aDungeon starts in 3 seconds.§r
[16:11:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aDungeon starts in 2 seconds.§r
[16:11:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aDungeon starts in 1 second.§r
[16:11:18] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §e[NPC] §bMort§f: §rHere, I found this map when I first entered the dungeon.§r
[16:11:21] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §e[NPC] §bMort§f: §rYou should find it useful if you get lost.§r
[16:11:21] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c267,007 §r§7damage.§r
[16:11:21] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lMage Milestone §r§e❶§r§7: You have dealt §r§c150000§r§7 Total Damage so far! §r§a00m 02s§r
[16:11:21] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c741,686 §r§7damage.§r
[16:11:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §e[NPC] §bMort§f: §rGood luck.§r
[16:11:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c6 §r§7enemies for §r§c1,181,339.7 §r§7damage.§r
[16:11:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c284,181.6 §r§7damage.§r
[16:11:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c17,476.9 §r§7damage.§r
[16:11:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c17,784.4 §r§7damage.§r
[16:11:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c20,406.9 §r§7damage.§r
[16:11:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lMage Milestone §r§e❷§r§7: You have dealt §r§c750000§r§7 Total Damage so far! §r§a00m 06s§r
[16:11:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c20,795.1 §r§7damage.§r
[16:11:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c4 §r§7enemies for §r§c1,008,693 §r§7damage.§r
[16:11:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c23,082.4 §r§7damage.§r
[16:11:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c26,462.5 §r§7damage.§r
[16:11:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c31,252.4 §r§7damage.§r
[16:11:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Gear_Shift§r§7 §r§ehas obtained §r§dBlessing of Wisdom§r§e!§r
[16:11:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§7Gear_Shift §r§ffound a §r§dBlessing of Wisdom V§r§f! (§r§a00m 08s§r§f)§r
[16:11:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Granted you §r§a1,233.7 §r§b✎ Intelligence §r§7and §r§a+24 §r§f✦ Speed§r§7.§r
[16:11:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP] Leung87§r§f §r§ehas obtained §r§9Superboom TNT§r§e!§r
[16:11:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP§r§6+§r§a] syeyoung§r§f §r§ehas obtained §r§8Wither Key§r§e!§r
[16:11:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lRIGHT CLICK §r§7on §r§7a §r§8WITHER §r§7door§r§7 to open it. This key can only be used to open §r§a1§r§7 door!§r
[16:11:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c267,007 §r§7damage.§r
[16:11:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Guided Sheep §r§ais now available!§r
[16:11:32] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c7 §r§7enemies for §r§c1,748,152.7 §r§7damage.§r
[16:11:35] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c368,373.2 §r§7damage.§r
[16:11:36] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c6 §r§7enemies for §r§c1,367,447.2 §r§7damage.§r
[16:11:36] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c389,308.8 §r§7damage.§r
[16:11:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c448,116.8 §r§7damage.§r
[16:11:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§aIntouchs §r§ffound a §r§dBlessing of Stone I§r§f!§r
[16:11:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Granted you §r§a545.5 §r§a❈ Defense §r§7and §r§a+7.2 §r§c❁ Damage§r§7.§r
[16:11:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:11:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aLeung87§r§a opened a §r§8§lWITHER §r§adoor!§r
[16:11:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c491,881.3 §r§7damage.§r
[16:11:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§eA §r§dBlessing of Wisdom§r§e was picked up!§r
[16:11:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§fA §r§dBlessing of Wisdom V§r§f was found! (§r§a00m 27s§r§f)§r
[16:11:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Granted you §r§a1,233.7 §r§b✎ Intelligence §r§7and §r§a+24 §r§f✦ Speed§r§7.§r
[16:11:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§aIntouchs §r§ffound a §r§dBlessing of Life II§r§f!§r
[16:11:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Grants you §r§a+996.7 HP §r§7and §r§a+0.07% §r§7health regeneration.§r
[16:11:54] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThe Tripwire Trap hit you for 1,312.7 damage!§r
[16:11:56] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c ☠ §r§7superlucky2005§r§7 was killed by Skeletor§r§7 and became a ghost§r§7.§r
[16:11:57] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a ❣ §r§7superlucky2005 §r§7is reviving §r§7superlucky2005§r§7!§r
[16:11:57] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c327,832.2 §r§7damage.§r
[16:11:58] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lMage Milestone §r§e❸§r§7: You have dealt §r§c3000000§r§7 Total Damage so far! §r§a00m 39s§r
[16:11:58] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c254,980.6 §r§7damage.§r
[16:12:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a ❣ §r§7superlucky2005§r§a was revived by §r§7superlucky2005§r§a!§r
[16:12:04] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c254,980.6 §r§7damage.§r
[16:12:04] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c345,721 §r§7damage.§r
[16:12:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c345,721 §r§7damage.§r
[16:12:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c345,721 §r§7damage.§r
[16:12:10] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:12:14] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c509,961.1 §r§7damage.§r
[16:12:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c151,018 §r§7damage.§r
[16:12:18] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c364,257.9 §r§7damage.§r
[16:12:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Gear_Shift§r§7 §r§ehas obtained §r§9Superboom TNT§r§e!§r
[16:12:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Gear_Shift§r§7 §r§ehas obtained §r§dBlessing of Power§r§e!§r
[16:12:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§7Gear_Shift §r§ffound a §r§dBlessing of Power V§r§f! (§r§a01m 05s§r§f)§r
[16:12:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Granted you §r§a171.3 §r§c❁ Strength §r§7and §r§a129.7 §r§9☠ Crit Damage§r§7.§r
[16:12:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThe Arrow Trap hit you for 1,962.5 damage!§r
[16:12:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:12:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c151,018 §r§7damage.§r
[16:12:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c210,268.4 §r§7damage.§r
[16:12:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c327,832.2 §r§7damage.§r
[16:12:44] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§aIntouchs §r§ffound a §r§dBlessing of Wisdom I§r§f!§r
[16:12:44] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Granted you §r§a851.6 §r§b✎ Intelligence §r§7and §r§a+4.8 §r§f✦ Speed§r§7.§r
[16:12:44] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c151,018 §r§7damage.§r
[16:12:44] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c210,268.4 §r§7damage.§r
[16:12:44] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§aIntouchs §r§ffound a §r§dBlessing of Stone I§r§f!§r
[16:12:44] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Granted you §r§a545.3 §r§a❈ Defense §r§7and §r§a+7.2 §r§c❁ Damage§r§7.§r
[16:13:08] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c ☠ §r§7Gear_Shift§r§7 died to a trap and became a ghost§r§7.§r
[16:13:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:13:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have the key for this door!§r
[16:13:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have the key for this door!§r
[16:13:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have the key for this door!§r
[16:13:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have the key for this door!§r
[16:13:18] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have the key for this door!§r
[16:13:18] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have the key for this door!§r
[16:13:21] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have the key for this door!§r
[16:13:21] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have the key for this door!§r
[16:13:21] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have the key for this door!§r
[16:13:21] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have the key for this door!§r
[16:13:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have the key for this door!§r
[16:13:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have the key for this door!§r
[16:13:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have the key for this door!§r
[16:13:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have the key for this door!§r
[16:13:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a ❣ §r§7superlucky2005 §r§7is reviving §r§7Gear_Shift§r§7!§r
[16:13:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have the key for this door!§r
[16:13:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have the key for this door!§r
[16:13:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[SKULL] §r§7Wither Skull§r§7:§r If you didn't find the Wither Key yet, it probably means you need to go back!§r
[16:13:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[SKULL] §r§7Wither Skull§r§7:§r Monsters with a star next to their name have Wither §rKeys...sometimes§r.§r
[16:13:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[SKULL] §r§7Wither Skull§r§7:§r You need a Wither Key to open this door!§r
[16:13:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[SKULL] §r§7Wither Skull§r§7:§r This is the way.§r
[16:13:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[SKULL] §r§7Wither Skull§r§7:§r This is the way.§r
[16:13:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[SKULL] §r§7Wither Skull§r§7:§r Death awaits you on this path, and everywhere else to be fair.§r
[16:13:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[SKULL] §r§7Wither Skull§r§7:§r Monsters with a star next to their name have Wither §rKeys...sometimes§r.§r
[16:13:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[SKULL] §r§7Wither Skull§r§7:§r That's a door, and I keep the §rdoor...there§r.§r
[16:13:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[SKULL] §r§7Wither Skull§r§7:§r You need a Wither Key to open this door!§r
[16:13:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[SKULL] §r§7Wither Skull§r§7:§r This is the way.§r
[16:13:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have the key for this door!§r
[16:13:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have the key for this door!§r
[16:13:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have the key for this door!§r
[16:13:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have the key for this door!§r
[16:13:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a ❣ §r§7Gear_Shift§r§a was revived by §r§7superlucky2005§r§a!§r
[16:13:36] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Guided Sheep §r§ais now available!§r
[16:13:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:13:48] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c5 §r§7enemies for §r§c989,289.9 §r§7damage.§r
[16:13:48] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c4 §r§7enemies for §r§c1,459,106.4 §r§7damage.§r
[16:13:49] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c333,883.5 §r§7damage.§r
[16:13:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c714,828.4 §r§7damage.§r
[16:13:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c40,389.8 §r§7damage.§r
[16:13:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c40,975.8 §r§7damage.§r
[16:13:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c41,570.3 §r§7damage.§r
[16:13:52] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c42,173.4 §r§7damage.§r
[16:13:52] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c42,785.2 §r§7damage.§r
[16:13:52] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c43,406 §r§7damage.§r
[16:13:52] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c44,035.7 §r§7damage.§r
[16:13:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c44,674.6 §r§7damage.§r
[16:13:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c45,322.7 §r§7damage.§r
[16:13:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c45,980.2 §r§7damage.§r
[16:13:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c46,647.3 §r§7damage.§r
[16:13:54] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c47,324.1 §r§7damage.§r
[16:13:54] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c48,010.6 §r§7damage.§r
[16:13:54] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c48,707.2 §r§7damage.§r
[16:13:54] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c49,413.8 §r§7damage.§r
[16:13:55] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c50,130.7 §r§7damage.§r
[16:13:55] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c50,858 §r§7damage.§r
[16:13:55] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c51,595.8 §r§7damage.§r
[16:13:55] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c52,344.4 §r§7damage.§r
[16:13:56] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP§r§6+§r§a] syeyoung§r§f §r§ehas obtained §r§dBlessing of Stone§r§e!§r
[16:13:56] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§fYou found a §r§dBlessing of Stone V§r§f! (§r§a02m 37s§r§f)§r
[16:13:56] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Granted you §r§a797.1 §r§a❈ Defense §r§7and §r§a+36 §r§c❁ Damage§r§7.§r
[16:13:57] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP§r§6+§r§a] syeyoung§r§f §r§ehas obtained §r§8Wither Key§r§e!§r
[16:13:57] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lRIGHT CLICK §r§7on §r§7a §r§8WITHER §r§7door§r§7 to open it. This key can only be used to open §r§a1§r§7 door!§r
[16:13:57] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP] Leung87§r§f §r§ehas obtained §r§9Superboom TNT§r§e!§r
[16:14:02] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThe Tripwire Trap hit you for 1,181.7 damage!§r
[16:14:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThis ability is on cooldown for 4s.§r
[16:14:06] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a§lYou healed yourself for 327 health!§r
[16:14:07] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a§lYou healed yourself for 327 health!§r
[16:14:09] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a§lPUZZLE SOLVED! §r§7Gear_Shift §r§ewasn't fooled by §r§cWinona§r§e! §r§4G§r§co§r§6o§r§ed§r§a §r§2j§r§bo§r§3b§r§5!§r
[16:14:10] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§7Gear_Shift §r§ffound a §r§dBlessing of Power V§r§f!§r
[16:14:10] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Granted you §r§a172.2 §r§c❁ Strength §r§7and §r§a129.7 §r§9☠ Crit Damage§r§7.§r
[16:14:10] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§asyeyoung§r§a opened a §r§8§lWITHER §r§adoor!§r
[16:14:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:14:13] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c5 §r§7enemies for §r§c1,095,171.5 §r§7damage.§r
[16:14:14] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c220,301 §r§7damage.§r
[16:14:14] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c259,687.2 §r§7damage.§r
[16:14:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lMage Milestone §r§e❹§r§7: You have dealt §r§c7500000§r§7 Total Damage so far! §r§a02m 57s§r
[16:14:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c6 §r§7enemies for §r§c1,606,726.7 §r§7damage.§r
[16:14:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c4 §r§7enemies for §r§c1,328,266.6 §r§7damage.§r
[16:14:18] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c19,880.6 §r§7damage.§r
[16:14:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c20,090.6 §r§7damage.§r
[16:14:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c20,336.2 §r§7damage.§r
[16:14:20] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c20,584.8 §r§7damage.§r
[16:14:20] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c20,803.4 §r§7damage.§r
[16:14:20] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c21,057.7 §r§7damage.§r
[16:14:20] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c21,315.1 §r§7damage.§r
[16:14:21] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c21,575.7 §r§7damage.§r
[16:14:21] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c21,806.4 §r§7damage.§r
[16:14:21] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c22,073 §r§7damage.§r
[16:14:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c22,342.8 §r§7damage.§r
[16:14:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c22,615.9 §r§7damage.§r
[16:14:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c22,859.4 §r§7damage.§r
[16:14:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c23,138.8 §r§7damage.§r
[16:14:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c23,421.7 §r§7damage.§r
[16:14:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c283,395.1 §r§7damage.§r
[16:14:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c23,997.8 §r§7damage.§r
[16:14:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c24,258.2 §r§7damage.§r
[16:14:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c24,554.7 §r§7damage.§r
[16:14:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c24,854.9 §r§7damage.§r
[16:14:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c25,158.7 §r§7damage.§r
[16:14:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c25,433.2 §r§7damage.§r
[16:14:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c25,744.1 §r§7damage.§r
[16:14:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c26,058.8 §r§7damage.§r
[16:14:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c26,377.4 §r§7damage.§r
[16:14:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP§r§6+§r§a] syeyoung§r§f §r§ehas obtained §r§9Superboom TNT§r§e!§r
[16:14:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP§r§6+§r§a] syeyoung§r§f §r§ehas obtained §r§8Wither Key§r§e!§r
[16:14:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lRIGHT CLICK §r§7on §r§7a §r§8WITHER §r§7door§r§7 to open it. This key can only be used to open §r§a1§r§7 door!§r
[16:14:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Guided Sheep §r§ais now available!§r
[16:14:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c259,687.2 §r§7damage.§r
[16:14:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c352,102.5 §r§7damage.§r
[16:14:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP§r§6+§r§a] syeyoung§r§f §r§ehas obtained §r§6Clean Zombie Soldier Boots§r§e!§r
[16:14:36] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c24,380.6 §r§7damage.§r
[16:14:36] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c24,505.7 §r§7damage.§r
[16:14:36] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c24,664.7 §r§7damage.§r
[16:14:36] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c24,824.7 §r§7damage.§r
[16:14:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c24,985.8 §r§7damage.§r
[16:14:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c25,114.9 §r§7damage.§r
[16:14:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c25,277.8 §r§7damage.§r
[16:14:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c25,441.8 §r§7damage.§r
[16:14:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cLost Adventurer §r§aused §r§6Dragon's Breath §r§aon you!§r
[16:14:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c25,606.8 §r§7damage.§r
[16:14:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c25,740 §r§7damage.§r
[16:14:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c25,907 §r§7damage.§r
[16:14:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c26,075 §r§7damage.§r
[16:14:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c26,244.2 §r§7damage.§r
[16:14:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c26,381.4 §r§7damage.§r
[16:14:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c26,552.6 §r§7damage.§r
[16:14:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c26,724.9 §r§7damage.§r
[16:14:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c26,865.2 §r§7damage.§r
[16:14:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c27,039.5 §r§7damage.§r
[16:14:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c27,214.9 §r§7damage.§r
[16:14:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:14:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c27,391.5 §r§7damage.§r
[16:14:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c27,536.2 §r§7damage.§r
[16:14:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c27,714.8 §r§7damage.§r
[16:14:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c27,894.6 §r§7damage.§r
[16:14:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c28,042.6 §r§7damage.§r
[16:14:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c28,224.5 §r§7damage.§r
[16:14:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c28,407.6 §r§7damage.§r
[16:14:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c28,558.9 §r§7damage.§r
[16:14:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c28,744.2 §r§7damage.§r
[16:14:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c28,930.7 §r§7damage.§r
[16:14:44] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c29,118.4 §r§7damage.§r
[16:14:44] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c29,274.3 §r§7damage.§r
[16:14:44] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c29,464.2 §r§7damage.§r
[16:14:45] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c29,655.4 §r§7damage.§r
[16:14:45] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c29,814.7 §r§7damage.§r
[16:14:45] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c30,008.2 §r§7damage.§r
[16:14:45] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c30,202.8 §r§7damage.§r
[16:14:45] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c30,398.8 §r§7damage.§r
[16:14:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c30,596 §r§7damage.§r
[16:14:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:14:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:14:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:14:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:14:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c27,460.9 §r§7damage.§r
[16:14:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c27,606.1 §r§7damage.§r
[16:14:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:14:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:14:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:14:48] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c27,785.2 §r§7damage.§r
[16:14:48] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:14:49] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Guided Sheep hit §r§c1 §r§7enemy for §r§c11,891.9 §r§7damage.§r
[16:14:54] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cLost Adventurer §r§aused §r§6Dragon's Breath §r§aon you!§r
[16:14:56] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP§r§6+§r§a] syeyoung§r§f §r§ehas obtained §r§dBlessing of Life§r§e!§r
[16:14:56] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§fYou found a §r§dBlessing of Life V§r§f! (§r§a03m 37s§r§f)§r
[16:14:56] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Grants you §r§a+1,253.4 HP §r§7and §r§a+0.18% §r§7health regeneration.§r
[16:14:56] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP§r§6+§r§a] syeyoung§r§f §r§ehas obtained §r§9Superboom TNT§r§e!§r
[16:15:07] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Guided Sheep §r§ais now available!§r
[16:15:08] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§asyeyoung§r§a opened a §r§8§lWITHER §r§adoor!§r
[16:15:10] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c681,678.8 §r§7damage.§r
[16:15:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:15:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c5 §r§7enemies for §r§c996,286.9 §r§7damage.§r
[16:15:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c399,181 §r§7damage.§r
[16:15:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c413,492.7 §r§7damage.§r
[16:15:12] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c717,303.5 §r§7damage.§r
[16:15:12] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c333,883.5 §r§7damage.§r
[16:15:13] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c13,911.8 §r§7damage.§r
[16:15:13] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c389,308.5 §r§7damage.§r
[16:15:13] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c503,003.6 §r§7damage.§r
[16:15:13] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c503,003.6 §r§7damage.§r
[16:15:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP§r§6+§r§a] syeyoung§r§f §r§ehas obtained §r§8Wither Key§r§e!§r
[16:15:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lRIGHT CLICK §r§7on §r§7a §r§8WITHER §r§7door§r§7 to open it. This key can only be used to open §r§a1§r§7 door!§r
[16:15:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP§r§6+§r§a] syeyoung§r§f §r§ehas obtained §r§9Superboom TNT§r§e!§r
[16:15:20] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c259,687.2 §r§7damage.§r
[16:15:20] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c352,102.5 §r§7damage.§r
[16:15:21] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c352,102.5 §r§7damage.§r
[16:15:21] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c352,102.5 §r§7damage.§r
[16:15:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§asyeyoung§r§a opened a §r§8§lWITHER §r§adoor!§r
[16:15:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Guided Sheep §r§ais now available!§r
[16:15:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c681,678.8 §r§7damage.§r
[16:15:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c7 §r§7enemies for §r§c1,798,823.4 §r§7damage.§r
[16:15:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c4 §r§7enemies for §r§c1,091,501.5 §r§7damage.§r
[16:15:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c456,186.5 §r§7damage.§r
[16:15:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,509.3 §r§7damage.§r
[16:15:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c263,222.7 §r§7damage.§r
[16:15:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lMage Milestone §r§e❺§r§7: You have dealt §r§c15000000§r§7 Total Damage so far! §r§a04m 11s§r
[16:15:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c708,427 §r§7damage.§r
[16:15:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c506,592.1 §r§7damage.§r
[16:15:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,615.3 §r§7damage.§r
[16:15:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,642.3 §r§7damage.§r
[16:15:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c506,673.1 §r§7damage.§r
[16:15:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c506,700.5 §r§7damage.§r
[16:15:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP§r§6+§r§a] syeyoung§r§f §r§ehas obtained §r§cBlood Key§r§e!§r
[16:15:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lRIGHT CLICK §r§7on §r§7the §r§cBLOOD DOOR§r§7 to open it. This key can only be used to open §r§a1§r§7 door!§r
[16:15:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP§r§6+§r§a] syeyoung§r§f §r§ehas obtained §r§9Superboom TNT§r§e!§r
[16:15:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThe §r§c§lBLOOD DOOR§r§c has been opened!§r
[16:15:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§5A shiver runs down your spine...§r
[16:15:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: So you made it this far... interesting.§r
[16:15:36] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c259,687.2 §r§7damage.§r
[16:15:36] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c355,827 §r§7damage.§r
[16:15:36] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c355,854.8 §r§7damage.§r
[16:15:36] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c355,882.8 §r§7damage.§r
[16:15:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c355,911.1 §r§7damage.§r
[16:15:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,837 §r§7damage.§r
[16:15:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,865.6 §r§7damage.§r
[16:15:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,894.5 §r§7damage.§r
[16:15:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,923.6 §r§7damage.§r
[16:15:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,952.9 §r§7damage.§r
[16:15:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: You are much stronger than I was expecting.§r
[16:15:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,982.4 §r§7damage.§r
[16:15:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,012.1 §r§7damage.§r
[16:15:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,042.1 §r§7damage.§r
[16:15:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,072.3 §r§7damage.§r
[16:15:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,102.7 §r§7damage.§r
[16:15:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,133.3 §r§7damage.§r
[16:15:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,164.2 §r§7damage.§r
[16:15:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,195.3 §r§7damage.§r
[16:15:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,226.6 §r§7damage.§r
[16:15:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,258.2 §r§7damage.§r
[16:15:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,289.9 §r§7damage.§r
[16:15:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,397.2 §r§7damage.§r
[16:15:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:15:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a§lBUFF! §fYou have gained §r§cHealing V§r§f!§r
[16:15:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,254.5 §r§7damage.§r
[16:15:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aYou earned §r§2593 GEXP §r§afrom playing SkyBlock!§r
[16:15:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,286.6 §r§7damage.§r
[16:15:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,144.6 §r§7damage.§r
[16:15:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a§lBUFF! §fYou have gained §r§cHealing V§r§f!§r
[16:15:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a§lBUFF! §fYou have gained §r§cHealing V§r§f!§r
[16:15:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,004 §r§7damage.§r
[16:15:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Not to worry, I recently added a very fine piece to my collection!§r
[16:15:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,034.3 §r§7damage.§r
[16:15:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,064.8 §r§7damage.§r
[16:15:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,101.1 §r§7damage.§r
[16:15:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,132.1 §r§7damage.§r
[16:15:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,163.4 §r§7damage.§r
[16:15:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,194.9 §r§7damage.§r
[16:15:44] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,232.2 §r§7damage.§r
[16:15:44] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,264.2 §r§7damage.§r
[16:15:44] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,296.5 §r§7damage.§r
[16:15:44] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,329 §r§7damage.§r
[16:15:45] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,361.8 §r§7damage.§r
[16:15:45] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,394.7 §r§7damage.§r
[16:15:45] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,428 §r§7damage.§r
[16:15:45] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,461.5 §r§7damage.§r
[16:15:45] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:15:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,495.3 §r§7damage.§r
[16:15:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:15:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:15:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:15:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,529.3 §r§7damage.§r
[16:15:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Hmmm... this one!§r
[16:15:48] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a§lBUFF! §fYou have gained §r§cHealing V§r§f!§r
[16:15:48] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a§lBUFF! §fYou have gained §r§cHealing V§r§f!§r
[16:15:49] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a§lBUFF! §fYou have gained §r§cHealing V§r§f!§r
[16:15:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Go, fight!§r
[16:15:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Guided Sheep §r§ais now available!§r
[16:15:54] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Guided Sheep hit §r§c1 §r§7enemy for §r§c1,209.3 §r§7damage.§r
[16:15:56] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Let's see how you can handle this.§r
[16:16:04] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c2,742.1 §r§7damage.§r
[16:16:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c5,548.3 §r§7damage.§r
[16:16:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c5,666.9 §r§7damage.§r
[16:16:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c5,788.1 §r§7damage.§r
[16:16:06] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §rUnknown command. Type "/help" for help.§r
[16:16:08] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Hmmm... this one!§r
[16:16:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:16:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.config.guiconfig.GuiParameterValueEdit:updateClassSelection:90]: kr.syeyoung.dungeonsguide.roomedit.valueedit.ValueEditBoolean$Generator@7a42261
[16:16:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.config.guiconfig.GuiParameterValueEdit:updateClassSelection:92]: kr.syeyoung.dungeonsguide.roomedit.valueedit.ValueEditBoolean@90be7f6
[16:16:13] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Guided Sheep §r§ais now available!§r
[16:16:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c5,911.9 §r§7damage.§r
[16:16:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c6,038.4 §r§7damage.§r
[16:16:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c6,167.6 §r§7damage.§r
[16:16:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c6,299.6 §r§7damage.§r
[16:16:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c6,434.5 §r§7damage.§r
[16:16:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c6,572.2 §r§7damage.§r
[16:16:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c6,713 §r§7damage.§r
[16:16:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c6,856.7 §r§7damage.§r
[16:16:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c7,140.8 §r§7damage.§r
[16:16:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c7,245.3 §r§7damage.§r
[16:16:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c7,315.6 §r§7damage.§r
[16:16:18] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c7,343.5 §r§7damage.§r
[16:16:18] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Very nice.§r
[16:16:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c5,484.3 §r§7damage.§r
[16:16:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c5,601 §r§7damage.§r
[16:16:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c5,720.2 §r§7damage.§r
[16:16:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c5,841.9 §r§7damage.§r
[16:16:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c5,966.3 §r§7damage.§r
[16:16:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c45,854.4 §r§7damage.§r
[16:16:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c44,253 §r§7damage.§r
[16:16:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c49,560.6 §r§7damage.§r
[16:16:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c4 §r§7enemies for §r§c54,404.9 §r§7damage.§r
[16:16:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c53,726.7 §r§7damage.§r
[16:16:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: This guy looks like a fighter.§r
[16:16:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c4 §r§7enemies for §r§c58,812.1 §r§7damage.§r
[16:16:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c4 §r§7enemies for §r§c61,188.8 §r§7damage.§r
[16:16:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c59,877.7 §r§7damage.§r
[16:16:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c60,025 §r§7damage.§r
[16:16:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c7,190.6 §r§7damage.§r
[16:16:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,608 §r§7damage.§r
[16:16:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,652.6 §r§7damage.§r
[16:16:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,652.6 §r§7damage.§r
[16:16:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,652.6 §r§7damage.§r
[16:16:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,000.5 §r§7damage.§r
[16:16:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,068.8 §r§7damage.§r
[16:16:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,138.6 §r§7damage.§r
[16:16:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: That one was weak anyway.§r
[16:16:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,210.1 §r§7damage.§r
[16:16:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,283.1 §r§7damage.§r
[16:16:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,357.9 §r§7damage.§r
[16:16:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,434.3 §r§7damage.§r
[16:16:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,512.5 §r§7damage.§r
[16:16:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Aw, I liked that one.§r
[16:16:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,592.4 §r§7damage.§r
[16:16:32] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,652.6 §r§7damage.§r
[16:16:33] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Very nice.§r
[16:16:35] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c2,742.1 §r§7damage.§r
[16:16:35] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: I'm impressed.§r
[16:16:35] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c2,806.2 §r§7damage.§r
[16:16:35] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c2,871.7 §r§7damage.§r
[16:16:36] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c5,680.9 §r§7damage.§r
[16:16:36] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,007.3 §r§7damage.§r
[16:16:36] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c5,882.1 §r§7damage.§r
[16:16:36] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,149.4 §r§7damage.§r
[16:16:36] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,222.9 §r§7damage.§r
[16:16:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c2,868.4 §r§7damage.§r
[16:16:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c2,933.7 §r§7damage.§r
[16:16:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,298.2 §r§7damage.§r
[16:16:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:16:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:16:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c6,375.6 §r§7damage.§r
[16:16:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:16:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:16:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:16:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:16:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,453.9 §r§7damage.§r
[16:16:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Guided Sheep hit §r§c2 §r§7enemies for §r§c1,812 §r§7damage.§r
[16:16:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:16:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cMute silenced you!§r
[16:16:48] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Very nice.§r
[16:16:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Go and live again!§r
[16:16:54] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aFriend > §r§brioho §r§ejoined.§r
[16:16:58] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Hmmm... this one!§r
[16:16:59] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Guided Sheep §r§ais now available!§r
[16:17:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Hmmm... this one!§r
[16:17:07] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: I'm impressed.§r
[16:17:09] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Go and live again!§r
[16:17:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:17:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: That will be enough for now.§r
[16:17:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: You have proven yourself. You may pass.§r
[16:17:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThere are blocks in the way!§r
[16:17:32] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Professor§r§f: I was burdened with terrible news recently...§r
[16:17:36] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a[VIP] Intouchs§f§r§f: bruh§r
[16:17:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§eA §r§dBlessing of Life§r§e was picked up!§r
[16:17:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§fA §r§dBlessing of Life V§r§f was found! (§r§a06m 19s§r§f)§r
[16:17:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Grants you §r§a+1,433.6 HP §r§7and §r§a+0.18% §r§7health regeneration.§r
[16:17:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§eA §r§dBlessing of Power§r§e was picked up!§r
[16:17:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§fA §r§dBlessing of Power V§r§f was found! (§r§a06m 19s§r§f)§r
[16:17:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Granted you §r§a170 §r§c❁ Strength §r§7and §r§a129.7 §r§9☠ Crit Damage§r§7.§r
[16:17:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Professor§r§f: My most talented student...§r
[16:17:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:17:45] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Professor§r§f: I'll show you real power!§r
[16:17:49] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c⚠ The §r§4Laser Guardian§r§c is charging up their §r§e§lFocus Beam§r§c! ⚠§r
[16:17:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c39,761.1 §r§7damage.§r
[16:17:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c40,198.6 §r§7damage.§r
[16:17:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c40,640.8 §r§7damage.§r
[16:17:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c41,087.9 §r§7damage.§r
[16:17:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c41,540 §r§7damage.§r
[16:17:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c41,997 §r§7damage.§r
[16:17:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c42,459 §r§7damage.§r
[16:17:52] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c42,926.2 §r§7damage.§r
[16:17:52] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c43,398.4 §r§7damage.§r
[16:17:52] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c43,875.9 §r§7damage.§r
[16:17:52] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c44,358.6 §r§7damage.§r
[16:17:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c44,846.6 §r§7damage.§r
[16:17:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c⚡ WARNING! The §r§4Chaos Guardian§r§c is preparing to use §r§e§lDischarge§r§c! Move away! ⚡§r
[16:17:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c45,340 §r§7damage.§r
[16:17:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c45,838.9 §r§7damage.§r
[16:17:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c46,343.2 §r§7damage.§r
[16:17:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c46,853 §r§7damage.§r
[16:17:54] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c47,368.5 §r§7damage.§r
[16:17:54] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c87,650.7 §r§7damage.§r
[16:17:54] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c93,427 §r§7damage.§r
[16:17:54] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c48,949.2 §r§7damage.§r
[16:17:54] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c49,487.7 §r§7damage.§r
[16:17:55] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c50,032.2 §r§7damage.§r
[16:17:55] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c50,582.6 §r§7damage.§r
[16:17:55] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c52,436.6 §r§7damage.§r
[16:17:55] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Professor§r§f: You took one of them down, but that won't be enough!§r
[16:17:57] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c⚡ WARNING! The §r§4Chaos Guardian§r§c is preparing to use §r§e§lDischarge§r§c! Move away! ⚡§r
[16:17:58] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c40,161.6 §r§7damage.§r
[16:17:58] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c40,698.3 §r§7damage.§r
[16:17:58] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c41,235.6 §r§7damage.§r
[16:17:58] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c41,780 §r§7damage.§r
[16:17:59] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c42,338.1 §r§7damage.§r
[16:17:59] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Professor§r§f: My barrier is weakening, but it still holds strong!§r
[16:17:59] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c42,897 §r§7damage.§r
[16:18:00] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c43,463.4 §r§7damage.§r
[16:18:00] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c44,043.7 §r§7damage.§r
[16:18:00] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c44,625.1 §r§7damage.§r
[16:18:00] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c45,214.3 §r§7damage.§r
[16:18:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c45,811.2 §r§7damage.§r
[16:18:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c46,416 §r§7damage.§r
[16:18:02] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c47,035.3 §r§7damage.§r
[16:18:02] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c47,656.3 §r§7damage.§r
[16:18:02] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c48,285.5 §r§7damage.§r
[16:18:02] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c48,922.9 §r§7damage.§r
[16:18:02] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c49,575.3 §r§7damage.§r
[16:18:02] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Guided Sheep §r§ais now available!§r
[16:18:02] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c50,527.4 §r§7damage.§r
[16:18:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c51,201 §r§7damage.§r
[16:18:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Professor§r§f: What?! Nobody has managed to take three of my Guardians down before!§r
[16:18:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c52,908.4 §r§7damage.§r
[16:18:04] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Professor§r§f: Oh? You found my Guardians one weakness?§r
[16:18:07] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Professor§r§f: Even if you took my barrier down, I can still fight.§r
[16:18:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Professor§r§f: This time I'll be your opponent!§r
[16:18:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:18:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c39,761.1 §r§7damage.§r
[16:18:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c39,936.1 §r§7damage.§r
[16:18:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c80,607.4 §r§7damage.§r
[16:18:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c41,026 §r§7damage.§r
[16:18:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c41,206.5 §r§7damage.§r
[16:18:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c41,387.9 §r§7damage.§r
[16:18:18] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c41,873.8 §r§7damage.§r
[16:18:18] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c42,058.1 §r§7damage.§r
[16:18:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c85,584.2 §r§7damage.§r
[16:18:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c43,388.5 §r§7damage.§r
[16:18:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c45,183.7 §r§7damage.§r
[16:18:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c43,712.7 §r§7damage.§r
[16:18:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c48,166.3 §r§7damage.§r
[16:18:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c51,345.8 §r§7damage.§r
[16:18:20] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c98,072.8 §r§7damage.§r
[16:18:21] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c46,847.2 §r§7damage.§r
[16:18:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c47,588.7 §r§7damage.§r
[16:18:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c48,363 §r§7damage.§r
[16:18:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c48,723.5 §r§7damage.§r
[16:18:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c49,239.1 §r§7damage.§r
[16:18:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Professor§r§f: I see. You have forced me to use my ultimate technique.§r
[16:18:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Professor§r§f: These Guardians aren't just for show I'm afraid!§r
[16:18:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Professor§r§f: The process is irreversible, but I'll be stronger than a Wither now!§r
[16:18:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c ☠ §r§7superlucky2005§r§7 was killed by Rogue Guardian§r§7 and became a ghost§r§7.§r
[16:18:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c4 §r§7enemies for §r§c134,705.2 §r§7damage.§r
[16:18:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c4 §r§7enemies for §r§c139,987.8 §r§7damage.§r
[16:18:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c4 §r§7enemies for §r§c175,474.4 §r§7damage.§r
[16:18:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a ❣ §r§7superlucky2005 §r§7is reviving §r§7superlucky2005§r§7!§r
[16:18:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c4 §r§7enemies for §r§c184,375.7 §r§7damage.§r
[16:18:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c4 §r§7enemies for §r§c194,199.9 §r§7damage.§r
[16:18:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c4 §r§7enemies for §r§c202,724.2 §r§7damage.§r
[16:18:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c4 §r§7enemies for §r§c202,917.1 §r§7damage.§r
[16:18:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c4 §r§7enemies for §r§c203,749.1 §r§7damage.§r
[16:18:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c4 §r§7enemies for §r§c203,907 §r§7damage.§r
[16:18:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c45,215.2 §r§7damage.§r
[16:18:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c45,982.8 §r§7damage.§r
[16:18:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c46,185.1 §r§7damage.§r
[16:18:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c46,725.1 §r§7damage.§r
[16:18:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c46,930.7 §r§7damage.§r
[16:18:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c47,188.9 §r§7damage.§r
[16:18:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c47,396.6 §r§7damage.§r
[16:18:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c47,609.1 §r§7damage.§r
[16:18:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c47,863.7 §r§7damage.§r
[16:18:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c48,074.8 §r§7damage.§r
[16:18:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:18:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c48,737.8 §r§7damage.§r
[16:18:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c48,935.6 §r§7damage.§r
[16:18:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c ☠ §r§aLeung87§r§7 was killed by The Professor§r§7 and became a ghost§r§7.§r
[16:18:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c49,445.1 §r§7damage.§r
[16:18:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c49,663.1 §r§7damage.§r
[16:18:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c50,192.2 §r§7damage.§r
[16:18:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c50,681.5 §r§7damage.§r
[16:18:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c51,487.6 §r§7damage.§r
[16:18:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c51,714.1 §r§7damage.§r
[16:18:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c52,366.5 §r§7damage.§r
[16:18:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Professor§r§f: What?! My Guardian power is unbeatable!§r
[16:18:44] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a ❣ §r§7superlucky2005§r§a was revived by §r§7superlucky2005§r§a!§r
[16:18:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Professor§r§f: How could you... I needed more power...§r
[16:18:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Professor§r§f: I can't let my Master hear about this.. he'll kill m-§r
[16:18:52] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§4[BOSS] Necron§r§c: That is enough, fool!§r
[16:18:56] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§4[BOSS] Necron§r§c: Adventurers! Be careful of who you are messing with..§r
[16:18:59] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§4[BOSS] Necron§r§c: Before I have to deal with you myself.§r
[16:19:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a§l▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬§r
[16:19:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§cThe Catacombs §r§8- §r§eFloor III§r
[16:19:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r
[16:19:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§fTeam Score: §r§a241 §r§f(§r§aA§r§f)§r
[16:19:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§c☠ §r§eDefeated §r§cThe Professor §r§ein §r§a07m 42s§r
[16:19:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§r §6> §e§lEXTRA STATS §6<
§6§r
[16:19:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§8+§r§3373.6 Catacombs Experience§r
[16:19:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§8+§r§3388.5 Mage Experience§r
[16:19:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§8+§r§397.1 Berserk Experience §r§b(Team Bonus)§r
[16:19:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§8+§r§397.1 Healer Experience §r§b(Team Bonus)§r
[16:19:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a§l▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬§r
[16:19:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§d§l▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬§r
[16:19:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§5§lBOSS COLLECTION LEVEL UP §dThe Professor §dI§r
[16:19:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r
[16:19:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§a§lREWARD§r
[16:19:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§9Suspicious Vial§r
[16:19:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§d§l▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬§r
[16:19:09] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Guided Sheep §r§ais now available!§r
[16:19:12] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:19:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:19:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §7Gear_Shift §r§ehas left the party.§r
[16:19:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:19:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:19:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a[VIP] Intouchs §r§ehas left the party.§r
[16:19:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:19:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:19:45] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:19:45] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a[VIP] Leung87 §r§ehas disbanded the party!§r
[16:19:45] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:20:12] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:20:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cWarning! §r§eThis Dungeon will §r§cclose §r§ein §r§a90s§r§e.§r
[16:20:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:20:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aYou earned §r§2695 GEXP §r§afrom playing SkyBlock!§r
[16:21:07] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.dungeon.FeatureInstaCloseChest:onGuiOpen:44]: Emerald Chest
[16:21:09] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.dungeon.FeatureInstaCloseChest:onGuiOpen:44]: Diamond Chest
[16:21:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.dungeon.FeatureInstaCloseChest:onGuiOpen:44]: Gold Chest
[16:21:12] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:21:14] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThere are blocks in the way!§r
[16:21:18] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §7Sending to server mini279W...§r
[16:21:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§f §r§f §r§1 §r§0 §r§2 §r§f §r§f §r§2 §r§0 §r§4 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r
[16:21:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§8 §r§8 §r§1 §r§3 §r§3 §r§7 §r§8 §r
[16:21:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aYou are playing on profile: §eBlueberry§r
[16:21:36] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §b[MVP§6+§b] Andipro§f§r§f: selling bonemerang /p me§r
[16:21:59] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a[VIP] Brandowitnoskin§f§r§f: paying 6 mil for a floor 7 carry p me§r
[16:22:18] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a[VIP] Brandowitnoskin§f§r§f: o solid cab you carry i will pay§r
[16:22:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a[VIP] Nytelllka§f§r§f: Who can carry F5 for 350k? /p me§r
[16:23:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aAttempting to add you to the party...§r
[16:23:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §dDungeon Finder §r§f> §r§asyeyoung §r§ejoined the dungeon group! (§r§bMage Level 18§r§e)§r
[16:23:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §dDungeon Finder §r§f> §r§bDarkbrine159 §r§ejoined the dungeon group! (§r§bMage Level 14§r§e)§r
[16:23:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:23:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §eYou left the party.§r
[16:23:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:23:21] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§eSelected: §r§bFloor II§r
[16:23:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aAttempting to add you to the party...§r
[16:23:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §dDungeon Finder §r§f> §r§cThis group is full!§r
[16:23:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aAttempting to add you to the party...§r
[16:23:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §dDungeon Finder §r§f> §r§asyeyoung §r§ejoined the dungeon group! (§r§bMage Level 18§r§e)§r
[16:23:32] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §dDungeon Finder §r§f> §r§7MrTree15 §r§ejoined the dungeon group! (§r§bMage Level 1§r§e)§r
[16:23:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:23:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a[VIP] eeepc§r§e warped the party to a SkyBlock dungeon!§r
[16:23:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §eExploring §r§cThe Catacombs §r§ewith §r§95/5 players §r§eon §r§6Floor II§r§e!§r
[16:23:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:23:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §7Sending to server mini257A...§r
[16:23:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§f §r§f §r§1 §r§0 §r§2 §r§f §r§f §r§2 §r§0 §r§4 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r
[16:23:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§8 §r§8 §r§1 §r§3 §r§3 §r§7 §r§8 §r
[16:23:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aYour active Potion Effects have been paused and stored. They will be restored when you leave Dungeons! You are not allowed to use existing Potion Effects while in Dungeons.§r
[16:23:45] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aYou are playing on profile: §eBlueberry§r
[16:23:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§asyeyoung§r§a has started the dungeon countdown. The dungeon will begin in 1 minute.§r
[16:23:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §e[NPC] §bMort§f: §rTalk to me to change your class and ready up.§r
[16:23:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§asyeyoung§r§a is now ready!§r
[16:23:49] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§bjasperminm§r§a is now ready!§r
[16:23:52] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aeeepc§r§a is now ready!§r
[16:23:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aBigChillyJack§r§a is now ready!§r
[16:23:55] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7MrTree15§r§a is now ready!§r
[16:23:55] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aDungeon starts in 4 seconds.§r
[16:23:56] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aDungeon starts in 3 seconds.§r
[16:23:57] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aDungeon starts in 2 seconds.§r
[16:23:58] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aDungeon starts in 1 second.§r
[16:23:59] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §e[NPC] §bMort§f: §rHere, I found this map when I first entered the dungeon.§r
[16:24:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §e[NPC] §bMort§f: §rYou should find it useful if you get lost.§r
[16:24:02] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lMage Milestone §r§e❶§r§7: You have dealt §r§c100000§r§7 Total Damage so far! §r§a00m 02s§r
[16:24:02] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c5 §r§7enemies for §r§c1,311,702.1 §r§7damage.§r
[16:24:02] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c609,924.6 §r§7damage.§r
[16:24:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c402,252.5 §r§7damage.§r
[16:24:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §e[NPC] §bMort§f: §rGood luck.§r
[16:24:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c207,672.1 §r§7damage.§r
[16:24:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c296,674.4 §r§7damage.§r
[16:24:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c402,252.5 §r§7damage.§r
[16:24:04] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c402,252.5 §r§7damage.§r
[16:24:04] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c404,979.7 §r§7damage.§r
[16:24:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c2,783.9 §r§7damage.§r
[16:24:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c2,841.7 §r§7damage.§r
[16:24:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c2,900.8 §r§7damage.§r
[16:24:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c2,961 §r§7damage.§r
[16:24:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lMage Milestone §r§e❷§r§7: You have dealt §r§c500000§r§7 Total Damage so far! §r§a00m 06s§r
[16:24:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c126,021 §r§7damage.§r
[16:24:06] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,085.3 §r§7damage.§r
[16:24:06] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,149.4 §r§7damage.§r
[16:24:07] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,214.9 §r§7damage.§r
[16:24:07] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c596,630.5 §r§7damage.§r
[16:24:07] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,349.8 §r§7damage.§r
[16:24:08] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,419.4 §r§7damage.§r
[16:24:08] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,490.5 §r§7damage.§r
[16:24:08] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,414.9 §r§7damage.§r
[16:24:09] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,337.7 §r§7damage.§r
[16:24:09] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,476.6 §r§7damage.§r
[16:24:10] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,551.3 §r§7damage.§r
[16:24:10] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,627.6 §r§7damage.§r
[16:24:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,705.5 §r§7damage.§r
[16:24:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,785.1 §r§7damage.§r
[16:24:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§b[MVP§r§a+§r§b] jasperminm§r§f §r§ehas obtained §r§9Superboom TNT§r§e!§r
[16:24:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:24:12] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§b[MVP§r§a+§r§b] jasperminm§r§f §r§ehas obtained §r§8Wither Key§r§e!§r
[16:24:12] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lRIGHT CLICK §r§7on §r§7a §r§8WITHER §r§7door§r§7 to open it. This key can only be used to open §r§a1§r§7 door!§r
[16:24:12] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c ☠ §r§7MrTree15§r§7 was killed by Skeleton Master§r§7 and became a ghost§r§7.§r
[16:24:13] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§b[MVP§r§a+§r§b] jasperminm§r§f §r§ehas obtained §r§dBlessing of Power§r§e!§r
[16:24:13] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§bjasperminm §r§ffound a §r§dBlessing of Power V§r§f! (§r§a00m 13s§r§f)§r
[16:24:13] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Granted you §r§a66.1 §r§c❁ Strength §r§7and §r§a53 §r§9☠ Crit Damage§r§7.§r
[16:24:13] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a ❣ §r§aBigChillyJack §r§7is reviving §r§7MrTree15§r§7!§r
[16:24:14] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c16,799.8 §r§7damage.§r
[16:24:14] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c17,056.9 §r§7damage.§r
[16:24:14] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c17,317.9 §r§7damage.§r
[16:24:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:24:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c17,582.9 §r§7damage.§r
[16:24:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c17,851.9 §r§7damage.§r
[16:24:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:24:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c18,125.1 §r§7damage.§r
[16:24:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:24:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:24:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:24:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:24:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c18,402.4 §r§7damage.§r
[16:24:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:24:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:24:18] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Guided Sheep hit §r§c1 §r§7enemy for §r§c6,500 §r§7damage.§r
[16:24:18] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Livid Dagger hit §r§c1 §r§7enemy for §r§c21,587.2 §r§7damage.§r
[16:24:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a ❣ §r§7MrTree15§r§a was revived by §r§aBigChillyJack§r§a!§r
[16:24:21] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cLost Adventurer§r§a struck you for §r§c330.3§r§a damage!§r
[16:24:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP§r§6+§r§a] syeyoung§r§f §r§ehas obtained §r§dBlessing of Life§r§e!§r
[16:24:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§fYou found a §r§dBlessing of Life V§r§f! (§r§a00m 24s§r§f)§r
[16:24:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Grants you §r§a+494.8 HP §r§7and §r§a+0.15% §r§7health regeneration.§r
[16:24:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP§r§6+§r§a] syeyoung§r§f §r§ehas obtained §r§9Superboom TNT§r§e!§r
[16:24:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c ☠ §r§aeeepc§r§7 was killed by Crypt Lurker§r§7 and became a ghost§r§7.§r
[16:24:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c ☠ §r§7MrTree15§r§7 was killed by Crypt Dreadlord§r§7 and became a ghost§r§7.§r
[16:24:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c ☠ §r§aeeepc§r§7 disconnected from the Dungeon and became a ghost§r§7.§r
[16:24:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:24:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §eThe party leader, §r§a[VIP] eeepc §r§ehas disconnected, they have §r§c5 §r§eminutes to rejoin before the party is disbanded.§r
[16:24:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:24:35] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c765,491.7 §r§7damage.§r
[16:24:36] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c474,679.1 §r§7damage.§r
[16:24:36] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c207,672.1 §r§7damage.§r
[16:24:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c801,020.9 §r§7damage.§r
[16:24:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Guided Sheep §r§ais now available!§r
[16:24:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c267,007 §r§7damage.§r
[16:24:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c122,998.5 §r§7damage.§r
[16:24:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lMage Milestone §r§e❸§r§7: You have dealt §r§c2000000§r§7 Total Damage so far! §r§a00m 39s§r
[16:24:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c12 §r§7enemies for §r§c2,538,822.1 §r§7damage.§r
[16:24:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c9 §r§7enemies for §r§c2,750,586.4 §r§7damage.§r
[16:24:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c2,776.8 §r§7damage.§r
[16:24:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c2,827.3 §r§7damage.§r
[16:24:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c2,878.7 §r§7damage.§r
[16:24:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c2,931 §r§7damage.§r
[16:24:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c2,984.3 §r§7damage.§r
[16:24:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:25:06] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:25:06] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a[VIP] eeepc§r§e has promoted §r§b[MVP§r§a+§r§b] jasperminm §r§eto Party Moderator§r
[16:25:06] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:25:07] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:25:07] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a[VIP] eeepc§r§e has promoted §r§b[MVP§r§a+§r§b] jasperminm §r§eto Party Leader§r
[16:25:07] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a[VIP] eeepc §r§eis now a Party Moderator§r
[16:25:07] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:25:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:25:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:25:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §eParty Leader, §r§b[MVP§r§a+§r§b] jasperminm§r§e, summoned you to their server.§r
[16:25:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:25:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c ☠ §r§aeeepc reconnected§r§7.§r
[16:25:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c296,674.4 §r§7damage.§r
[16:25:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c402,252.5 §r§7damage.§r
[16:25:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§b[MVP§r§a+§r§b] jasperminm§r§f §r§ehas obtained §r§9Superboom TNT §r§8x2§r§e!§r
[16:25:33] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§asyeyoung§r§a opened a §r§8§lWITHER §r§adoor!§r
[16:25:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c11,431.6 §r§7damage.§r
[16:25:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c207,672.1 §r§7damage.§r
[16:25:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c801,020.9 §r§7damage.§r
[16:25:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c267,007 §r§7damage.§r
[16:25:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c267,007 §r§7damage.§r
[16:25:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a ❣ §r§aBigChillyJack §r§7is reviving §r§aeeepc§r§7!§r
[16:25:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:25:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c11,431.6 §r§7damage.§r
[16:25:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c134,430 §r§7damage.§r
[16:25:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c474,679.1 §r§7damage.§r
[16:25:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a ❣ §r§aeeepc§r§a was revived by §r§aBigChillyJack§r§a!§r
[16:25:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c122,998.5 §r§7damage.§r
[16:25:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c426,953.2 §r§7damage.§r
[16:25:52] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Guided Sheep §r§ais now available!§r
[16:25:54] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP§r§6+§r§a] syeyoung§r§f §r§ehas obtained §r§dBlessing of Wisdom§r§e!§r
[16:25:54] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§fYou found a §r§dBlessing of Wisdom V§r§f! (§r§a01m 54s§r§f)§r
[16:25:54] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Granted you §r§a398 §r§b✎ Intelligence §r§7and §r§a+20 §r§f✦ Speed§r§7.§r
[16:25:54] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP§r§6+§r§a] syeyoung§r§f §r§ehas obtained §r§9Superboom TNT§r§e!§r
[16:25:55] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP§r§6+§r§a] syeyoung§r§f §r§ehas obtained §r§8Wither Key§r§e!§r
[16:25:55] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lRIGHT CLICK §r§7on §r§7a §r§8WITHER §r§7door§r§7 to open it. This key can only be used to open §r§a1§r§7 door!§r
[16:26:02] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§b[MVP§r§a+§r§b] jasperminm§r§f §r§ehas obtained §r§9Superboom TNT§r§e!§r
[16:26:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a ❣ §r§7MrTree15§r§a was revived!§r
[16:26:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:26:14] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§asyeyoung§r§a opened a §r§8§lWITHER §r§adoor!§r
[16:26:18] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c779,560.5 §r§7damage.§r
[16:26:20] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c5 §r§7enemies for §r§c1,166,290.1 §r§7damage.§r
[16:26:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c654,373.1 §r§7damage.§r
[16:26:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c7 §r§7enemies for §r§c1,482,581.9 §r§7damage.§r
[16:26:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c16,463.7 §r§7damage.§r
[16:26:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c341,554.3 §r§7damage.§r
[16:26:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c457,426.1 §r§7damage.§r
[16:26:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c457,738.9 §r§7damage.§r
[16:26:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c17,618.3 §r§7damage.§r
[16:26:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c324,816.9 §r§7damage.§r
[16:26:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c458,352.2 §r§7damage.§r
[16:26:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c18,271.8 §r§7damage.§r
[16:26:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cLost Adventurer §r§aused §r§6Dragon's Breath §r§aon you!§r
[16:26:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c18,578.7 §r§7damage.§r
[16:26:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c18,920.1 §r§7damage.§r
[16:26:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c19,267.8 §r§7damage.§r
[16:26:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lMage Milestone §r§e❹§r§7: You have dealt §r§c5000000§r§7 Total Damage so far! §r§a02m 28s§r
[16:26:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c19,593 §r§7damage.§r
[16:26:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c19,953.1 §r§7damage.§r
[16:26:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c345,136.7 §r§7damage.§r
[16:26:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c461,103.3 §r§7damage.§r
[16:26:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c463,573.6 §r§7damage.§r
[16:26:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c464,033.8 §r§7damage.§r
[16:26:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP§r§6+§r§a] syeyoung§r§f §r§ehas obtained §r§cBlood Key§r§e!§r
[16:26:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lRIGHT CLICK §r§7on §r§7the §r§cBLOOD DOOR§r§7 to open it. This key can only be used to open §r§a1§r§7 door!§r
[16:26:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP] eeepc§r§f §r§ehas obtained §r§dBlessing of Wisdom§r§e!§r
[16:26:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§aeeepc §r§ffound a §r§dBlessing of Wisdom V§r§f! (§r§a02m 31s§r§f)§r
[16:26:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Granted you §r§a398 §r§b✎ Intelligence §r§7and §r§a+20 §r§f✦ Speed§r§7.§r
[16:26:33] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Guided Sheep §r§ais now available!§r
[16:26:33] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c352,959.4 §r§7damage.§r
[16:26:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c478,567.7 §r§7damage.§r
[16:26:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThe §r§c§lBLOOD DOOR§r§c has been opened!§r
[16:26:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§5A shiver runs down your spine...§r
[16:26:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Ah, we meet again...§r
[16:26:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.dungeon.FeatureInstaCloseChest:onGuiOpen:44]: SkyBlock Menu
[16:26:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:26:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.dungeon.FeatureInstaCloseChest:onGuiOpen:44]: Spirit Leap
[16:26:44] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: I have done some experiments to develop new abilities for my Skulls.§r
[16:26:44] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aYou have teleported to §r§bjasperminm§r§a!§r
[16:26:48] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Lets see how you handle this!§r
[16:26:48] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§b[MVP§r§a+§r§b] jasperminm§r§f §r§ehas obtained §r§dBlessing of Power§r§e!§r
[16:26:48] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§bjasperminm §r§ffound a §r§dBlessing of Power V§r§f! (§r§a02m 49s§r§f)§r
[16:26:48] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Granted you §r§a49.7 §r§c❁ Strength §r§7and §r§a39.2 §r§9☠ Crit Damage§r§7.§r
[16:26:49] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§aBigChillyJack §r§ffound a §r§dBlessing of Power II§r§f!§r
[16:26:49] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Granted you §r§a19.9 §r§c❁ Strength §r§7and §r§a15.7 §r§9☠ Crit Damage§r§7.§r
[16:26:49] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP] eeepc§r§f §r§ehas obtained §r§9Superboom TNT§r§e!§r
[16:26:49] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§b[MVP§r§a+§r§b] jasperminm§r§f §r§ehas obtained §r§9Superboom TNT§r§e!§r
[16:26:52] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c635,326.9 §r§7damage.§r
[16:26:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c247,071.6 §r§7damage.§r
[16:26:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: You'll do.§r
[16:26:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c317,663.4 §r§7damage.§r
[16:26:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c430,710.9 §r§7damage.§r
[16:26:56] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c917,694.4 §r§7damage.§r
[16:26:56] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c478,567.7 §r§7damage.§r
[16:26:56] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c9 §r§7enemies for §r§c2,232,179.9 §r§7damage.§r
[16:26:56] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Go and live again!§r
[16:26:56] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c478,567.7 §r§7damage.§r
[16:26:56] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c478,567.7 §r§7damage.§r
[16:26:57] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c917,694.4 §r§7damage.§r
[16:26:57] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c478,567.7 §r§7damage.§r
[16:26:57] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c478,567.7 §r§7damage.§r
[16:26:58] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c478,567.7 §r§7damage.§r
[16:26:58] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c478,567.7 §r§7damage.§r
[16:26:58] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c478,567.7 §r§7damage.§r
[16:26:59] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Guided Sheep §r§ais now available!§r
[16:26:59] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c494,143.1 §r§7damage.§r
[16:26:59] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: You'll do.§r
[16:27:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP§r§6+§r§a] syeyoung§r§f §r§ehas obtained §r§9Superboom TNT§r§e!§r
[16:27:02] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: This guy looks like a fighter.§r
[16:27:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c4 §r§7enemies for §r§c187,812.9 §r§7damage.§r
[16:27:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c635,326.9 §r§7damage.§r
[16:27:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c146,333.7 §r§7damage.§r
[16:27:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Let's see how you can handle this.§r
[16:27:07] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c13,811.5 §r§7damage.§r
[16:27:08] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c635,326.9 §r§7damage.§r
[16:27:09] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c317,663.4 §r§7damage.§r
[16:27:09] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c5 §r§7enemies for §r§c1,416,987.4 §r§7damage.§r
[16:27:10] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c190,518.1 §r§7damage.§r
[16:27:12] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:27:13] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c4 §r§7enemies for §r§c966,801.7 §r§7damage.§r
[16:27:14] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Go, fight!§r
[16:27:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThe Stormy Scared Skeleton§r§c struck you for 424.5 damage!§r
[16:27:18] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c670,622.8 §r§7damage.§r
[16:27:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c5 §r§7enemies for §r§c1,749,221.4 §r§7damage.§r
[16:27:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c4 §r§7enemies for §r§c1,753,366.5 §r§7damage.§r
[16:27:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c957,135.4 §r§7damage.§r
[16:27:20] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c957,135.4 §r§7damage.§r
[16:27:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Aw, I liked that one.§r
[16:27:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,151.5 §r§7damage.§r
[16:27:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,192.4 §r§7damage.§r
[16:27:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,233.8 §r§7damage.§r
[16:27:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,275.8 §r§7damage.§r
[16:27:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,318.3 §r§7damage.§r
[16:27:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c356,320.7 §r§7damage.§r
[16:27:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c481,972.7 §r§7damage.§r
[16:27:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c482,016.9 §r§7damage.§r
[16:27:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,493.9 §r§7damage.§r
[16:27:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,539.3 §r§7damage.§r
[16:27:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,585.2 §r§7damage.§r
[16:27:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,631.7 §r§7damage.§r
[16:27:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,678.8 §r§7damage.§r
[16:27:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,726.6 §r§7damage.§r
[16:27:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,774.9 §r§7damage.§r
[16:27:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,823.9 §r§7damage.§r
[16:27:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,873.5 §r§7damage.§r
[16:27:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,923.8 §r§7damage.§r
[16:27:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,974.7 §r§7damage.§r
[16:27:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,026.3 §r§7damage.§r
[16:27:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a§lBUFF! §fYou have gained §r§cHealing V§r§f!§r
[16:27:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,904.7 §r§7damage.§r
[16:27:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,955.3 §r§7damage.§r
[16:27:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a§lBUFF! §fYou have gained §r§cHealing V§r§f!§r
[16:27:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Go, fight!§r
[16:27:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,832.8 §r§7damage.§r
[16:27:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a§lBUFF! §fYou have gained §r§cHealing V§r§f!§r
[16:27:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,708.6 §r§7damage.§r
[16:27:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,756.7 §r§7damage.§r
[16:27:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,805.5 §r§7damage.§r
[16:27:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,854.9 §r§7damage.§r
[16:27:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,904.9 §r§7damage.§r
[16:27:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c ☠ §r§aeeepc§r§7 was killed by Tear§r§7 and became a ghost§r§7.§r
[16:27:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,955.6 §r§7damage.§r
[16:27:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,006.9 §r§7damage.§r
[16:27:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,058.9 §r§7damage.§r
[16:27:32] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,111.6 §r§7damage.§r
[16:27:32] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a ❣ §r§aBigChillyJack §r§7is reviving §r§aeeepc§r§7!§r
[16:27:32] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,164.9 §r§7damage.§r
[16:27:32] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,218.9 §r§7damage.§r
[16:27:33] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,273.7 §r§7damage.§r
[16:27:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP§r§6+§r§a] syeyoung§r§f §r§ehas obtained §r§dBlessing of Stone§r§e!§r
[16:27:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§fYou found a §r§dBlessing of Stone V§r§f! (§r§a03m 35s§r§f)§r
[16:27:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Granted you §r§a261.4 §r§a❈ Defense §r§7and §r§a+30 §r§c❁ Damage§r§7.§r
[16:27:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP§r§6+§r§a] syeyoung§r§f §r§ehas obtained §r§6Revive Stone§r§e!§r
[16:27:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a ❣ §r§aeeepc§r§a was revived by §r§aBigChillyJack§r§a!§r
[16:27:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.dungeon.FeatureInstaCloseChest:onGuiOpen:44]: Spirit Leap
[16:27:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aYou have teleported to §r§7MrTree15§r§a!§r
[16:27:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:28:04] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Not bad.§r
[16:28:06] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: You'll do.§r
[16:28:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: That one was weak anyway.§r
[16:28:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:28:20] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Go and live again!§r
[16:28:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: This guy looks like a fighter.§r
[16:28:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c7,423.7 §r§7damage.§r
[16:28:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c7,764.9 §r§7damage.§r
[16:28:32] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c8,029.2 §r§7damage.§r
[16:28:32] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c8,304.3 §r§7damage.§r
[16:28:33] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c11,913.1 §r§7damage.§r
[16:28:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c9,082.2 §r§7damage.§r
[16:28:35] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: That will be enough for now.§r
[16:28:36] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,477.1 §r§7damage.§r
[16:28:36] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,599.1 §r§7damage.§r
[16:28:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,933.8 §r§7damage.§r
[16:28:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,534.9 §r§7damage.§r
[16:28:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,541.1 §r§7damage.§r
[16:28:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,541.1 §r§7damage.§r
[16:28:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,541.1 §r§7damage.§r
[16:28:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: You have proven yourself. You may pass.§r
[16:28:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP] eeepc§r§f §r§ehas obtained §r§dBlessing of Power§r§e!§r
[16:28:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§aeeepc §r§ffound a §r§dBlessing of Power V§r§f! (§r§a04m 42s§r§f)§r
[16:28:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Granted you §r§a66.3 §r§c❁ Strength §r§7and §r§a53 §r§9☠ Crit Damage§r§7.§r
[16:28:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§eA §r§dBlessing of Life§r§e was picked up!§r
[16:28:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§fA §r§dBlessing of Life V§r§f was found! (§r§a04m 51s§r§f)§r
[16:28:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Grants you §r§a+551.8 HP §r§7and §r§a+0.15% §r§7health regeneration.§r
[16:28:54] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Scarf§r§f: This is where the journey ends for you, Adventurers.§r
[16:28:57] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:28:58] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aYou earned §r§2560 GEXP §r§afrom playing SkyBlock!§r
[16:28:58] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Scarf§r§f: The last few who tried fighting me are now in those Crypts.§r
[16:29:04] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Scarf§r§f: If you can beat my Undeads, I'll personally grant you the privilege to replace them.§r
[16:29:04] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Guided Sheep §r§ais now available!§r
[16:29:09] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Scarf§r§f: ARISE, MY CREATIONS!§r
[16:29:13] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c34,666.7 §r§7damage.§r
[16:29:13] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c35,392.5 §r§7damage.§r
[16:29:13] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Scarf§r§f: This should be interesting.§r
[16:29:13] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c36,133.4 §r§7damage.§r
[16:29:13] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c36,910.8 §r§7damage.§r
[16:29:14] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c37,694 §r§7damage.§r
[16:29:14] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c38,483.1 §r§7damage.§r
[16:29:14] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c39,288.7 §r§7damage.§r
[16:29:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c40,111.2 §r§7damage.§r
[16:29:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c40,950.9 §r§7damage.§r
[16:29:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c41,808.2 §r§7damage.§r
[16:29:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c47,121.1 §r§7damage.§r
[16:29:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Scarf§r§f: RIP Priest. F§r
[16:29:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c ☠ §r§7MrTree15§r§7 was killed by §r§4§lUndead Warrior§r§7 and became a ghost§r§7.§r
[16:29:20] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a ❣ §r§aBigChillyJack §r§7is reviving §r§7MrTree15§r§7!§r
[16:29:21] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c34,753.3 §r§7damage.§r
[16:29:21] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lMage Milestone §r§e❺§r§7: You have dealt §r§c10000000§r§7 Total Damage so far! §r§a05m 21s§r
[16:29:21] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c35,626.3 §r§7damage.§r
[16:29:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c36,521.3 §r§7damage.§r
[16:29:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c39,225 §r§7damage.§r
[16:29:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c40,210.3 §r§7damage.§r
[16:29:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c41,249.6 §r§7damage.§r
[16:29:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c42,285.9 §r§7damage.§r
[16:29:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c43,348.2 §r§7damage.§r
[16:29:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c44,437.2 §r§7damage.§r
[16:29:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c45,553.5 §r§7damage.§r
[16:29:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a ❣ §r§7MrTree15§r§a was revived by §r§aBigChillyJack§r§a!§r
[16:29:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c20,033.4 §r§7damage.§r
[16:29:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c20,347.9 §r§7damage.§r
[16:29:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c20,667.4 §r§7damage.§r
[16:29:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c20,991.9 §r§7damage.§r
[16:29:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:29:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7The Mage's Tsunami hit you for §r§c950§r§7 damage.§r
[16:29:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7The Mage's Tsunami hit you for §r§c950§r§7 damage.§r
[16:29:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Scarf§r§f: Oh, you killed my Warrior? No problem.§r
[16:29:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c21,321.5 §r§7damage.§r
[16:29:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c21,656.3 §r§7damage.§r
[16:29:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c21,996.3 §r§7damage.§r
[16:29:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c22,341.7 §r§7damage.§r
[16:29:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c22,692.4 §r§7damage.§r
[16:29:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c23,048.7 §r§7damage.§r
[16:29:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c23,410.6 §r§7damage.§r
[16:29:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c23,778.2 §r§7damage.§r
[16:29:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c24,151.5 §r§7damage.§r
[16:29:32] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c24,530.7 §r§7damage.§r
[16:29:32] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c24,915.9 §r§7damage.§r
[16:29:32] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c25,307.1 §r§7damage.§r
[16:29:33] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c25,704.5 §r§7damage.§r
[16:29:33] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c26,108 §r§7damage.§r
[16:29:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Scarf§r§f: Those toys are not strong enough I see.§r
[16:29:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Scarf§r§f: Don't get too excited though.§r
[16:29:38] [Timer-0/INFO] [STDOUT/skyblock_dungeons_guide]: [kr.syeyoung.dungeonsguide.utils.AhUtils:loadAuctions:55]: I think i'm loading ah
[16:29:39] [Timer-0/INFO] [STDERR/skyblock_dungeons_guide]: [kr.syeyoung.dungeonsguide.utils.AhUtils:loadAuctions:70]: java.io.IOException: Server returned HTTP response code: 403 for URL: https://dungeonsguide.kro.kr/resource/keys
[16:29:39] [Timer-0/INFO] [STDERR/skyblock_dungeons_guide]: [kr.syeyoung.dungeonsguide.utils.AhUtils:loadAuctions:70]: at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1900)
[16:29:39] [Timer-0/INFO] [STDERR/skyblock_dungeons_guide]: [kr.syeyoung.dungeonsguide.utils.AhUtils:loadAuctions:70]: at sun.net.www.protocol.http.HttpURLConnection.access$200(HttpURLConnection.java:92)
[16:29:39] [Timer-0/INFO] [STDERR/skyblock_dungeons_guide]: [kr.syeyoung.dungeonsguide.utils.AhUtils:loadAuctions:70]: at sun.net.www.protocol.http.HttpURLConnection$9.run(HttpURLConnection.java:1490)
[16:29:39] [Timer-0/INFO] [STDERR/skyblock_dungeons_guide]: [kr.syeyoung.dungeonsguide.utils.AhUtils:loadAuctions:70]: at sun.net.www.protocol.http.HttpURLConnection$9.run(HttpURLConnection.java:1488)
[16:29:39] [Timer-0/INFO] [STDERR/skyblock_dungeons_guide]: [kr.syeyoung.dungeonsguide.utils.AhUtils:loadAuctions:70]: at java.security.AccessController.doPrivileged(Native Method)
[16:29:39] [Timer-0/INFO] [STDERR/skyblock_dungeons_guide]: [kr.syeyoung.dungeonsguide.utils.AhUtils:loadAuctions:70]: at java.security.AccessController.doPrivilegedWithCombiner(AccessController.java:784)
[16:29:39] [Timer-0/INFO] [STDERR/skyblock_dungeons_guide]: [kr.syeyoung.dungeonsguide.utils.AhUtils:loadAuctions:70]: at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1487)
[16:29:39] [Timer-0/INFO] [STDERR/skyblock_dungeons_guide]: [kr.syeyoung.dungeonsguide.utils.AhUtils:loadAuctions:70]: at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:268)
[16:29:39] [Timer-0/INFO] [STDERR/skyblock_dungeons_guide]: [kr.syeyoung.dungeonsguide.utils.AhUtils:loadAuctions:70]: at kr.syeyoung.dungeonsguide.b.d(b.java:214)
[16:29:39] [Timer-0/INFO] [STDERR/skyblock_dungeons_guide]: [kr.syeyoung.dungeonsguide.utils.AhUtils:loadAuctions:70]: at kr.syeyoung.dungeonsguide.utils.AhUtils.loadAuctions(AhUtils.java:59)
[16:29:39] [Timer-0/INFO] [STDERR/skyblock_dungeons_guide]: [kr.syeyoung.dungeonsguide.utils.AhUtils:loadAuctions:70]: at kr.syeyoung.dungeonsguide.utils.AhUtils$1.run(AhUtils.java:30)
[16:29:39] [Timer-0/INFO] [STDERR/skyblock_dungeons_guide]: [kr.syeyoung.dungeonsguide.utils.AhUtils:loadAuctions:70]: at java.util.TimerThread.mainLoop(Timer.java:555)
[16:29:39] [Timer-0/INFO] [STDERR/skyblock_dungeons_guide]: [kr.syeyoung.dungeonsguide.utils.AhUtils:loadAuctions:70]: at java.util.TimerThread.run(Timer.java:505)
[16:29:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§9Party §8> §a[VIP] eeepc§f: §rcome to the tunnel§r
[16:29:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Scarf§r§f: Did you forget? I was taught by the best! Let's dance.§r
[16:29:45] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7The Warrior's Charge struck you for §r§c2,250§r§7 damage.§r
[16:29:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c34,666.7 §r§7damage.§r
[16:29:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c69,333.5 §r§7damage.§r
[16:29:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Scarf§r§f: That was nothing my Priest can't heal!§r
[16:29:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c35,755.3 §r§7damage.§r
[16:29:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c70,639.8 §r§7damage.§r
[16:29:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c71,973.5 §r§7damage.§r
[16:29:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c73,335.1 §r§7damage.§r
[16:29:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c74,725.4 §r§7damage.§r
[16:29:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c76,144.9 §r§7damage.§r
[16:29:48] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c77,837.3 §r§7damage.§r
[16:29:48] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c41,409.2 §r§7damage.§r
[16:29:48] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c37,914.2 §r§7damage.§r
[16:29:49] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c42,449.5 §r§7damage.§r
[16:29:49] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c38,390.4 §r§7damage.§r
[16:29:49] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c73,539.4 §r§7damage.§r
[16:29:49] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c112,553.9 §r§7damage.§r
[16:29:49] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c114,589.8 §r§7damage.§r
[16:29:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Scarf§r§f: Oof§r
[16:29:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c79,205 §r§7damage.§r
[16:29:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c118,790.3 §r§7damage.§r
[16:29:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c40,984.9 §r§7damage.§r
[16:29:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c41,122.9 §r§7damage.§r
[16:29:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c80,283.6 §r§7damage.§r
[16:29:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c81,238.9 §r§7damage.§r
[16:29:52] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c82,590.2 §r§7damage.§r
[16:29:52] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c83,964.9 §r§7damage.§r
[16:29:52] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c43,380 §r§7damage.§r
[16:29:52] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c43,924.9 §r§7damage.§r
[16:29:52] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c44,476.7 §r§7damage.§r
[16:29:52] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:29:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:29:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:29:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c86,642.9 §r§7damage.§r
[16:29:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:29:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:29:54] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:29:54] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have enough mana to do this!§r
[16:29:54] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Scarf§r§f: I'll make you take the Warrior's place!§r
[16:29:55] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Guided Sheep hit §r§c1 §r§7enemy for §r§c9,400 §r§7damage.§r
[16:29:58] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:29:59] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Scarf's Soul Sand Blizzard hit you for §r§c215.6§r§7 true damage.§r
[16:30:00] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c ☠ §r§7MrTree15§r§7 was killed by Scarf§r§7 and became a ghost§r§7.§r
[16:30:00] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Scarf§r§f: I'll make you take the Archer's place!§r
[16:30:08] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Scarf§r§f: Back off!§r
[16:30:12] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Scarf§r§f: RIP Priest. F§r
[16:30:12] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c44,456.2 §r§7damage.§r
[16:30:13] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c45,670.2 §r§7damage.§r
[16:30:13] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c46,243.9 §r§7damage.§r
[16:30:13] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c46,824.7 §r§7damage.§r
[16:30:13] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Scarf§r§f: Whatever...§r
[16:30:14] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Guided Sheep §r§ais now available!§r
[16:30:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Scarf§r§f: You'll never beat my teacher..§r
[16:30:20] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aBigChillyJack's §r§6Wish §r§ehealed you for §r§a0 §r§ehealth and granted you an absorption shield with §r§a991 §r§ehealth!§r
[16:30:21] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Scarf§r§f: His technique.. is too advanced..§r
[16:30:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a§l▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬§r
[16:30:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§cThe Catacombs §r§8- §r§eFloor II§r
[16:30:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r
[16:30:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§fTeam Score: §r§a218 §r§f(§r§eB§r§f)§r
[16:30:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§c☠ §r§eDefeated §r§cScarf §r§ein §r§a06m 22s§r
[16:30:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§r §6> §e§lEXTRA STATS §6<
§6§r
[16:30:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§8+§r§3132.3 Catacombs Experience§r
[16:30:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§8+§r§3137.5 Mage Experience§r
[16:30:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§8+§r§334.4 Archer Experience §r§b(Team Bonus)§r
[16:30:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§8+§r§334.4 Berserk Experience §r§b(Team Bonus)§r
[16:30:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§8+§r§334.4 Healer Experience §r§b(Team Bonus)§r
[16:30:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a§l▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬§r
[16:30:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:30:35] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§l» §aeeepc §eis traveling to §aDungeons Hub §e§lFOLLOW§r
[16:30:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§l» §7MrTree15 §eis traveling to §aDungeons Hub §e§lFOLLOW§r
[16:30:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§l» §bjasperminm §eis traveling to §aDungeons Hub §e§lFOLLOW§r
[16:30:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§l» §aBigChillyJack §eis traveling to §aDungeons Hub §e§lFOLLOW§r
[16:30:58] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:31:06] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§l» §7MrTree15 §eis traveling to §aSkyBlock Hub §e§lFOLLOW§r
[16:31:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §b-----------------------------------------------------§r
[16:31:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a[VIP] Policeop §r§ewas kicked from the guild by §r§b[MVP§r§2+§r§b] Hobiezilla§r§e!§r
[16:31:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §b-----------------------------------------------------§r
[16:31:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §7Sending to server mini41B...§r
[16:31:20] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§f §r§f §r§1 §r§0 §r§2 §r§f §r§f §r§2 §r§0 §r§4 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r
[16:31:20] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§8 §r§8 §r§1 §r§3 §r§3 §r§7 §r§8 §r
[16:31:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aYou are playing on profile: §eBlueberry§r
[16:31:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:31:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §b[MVP§r§a+§r§b] jasperminm§r§e has promoted §r§a[VIP] eeepc §r§eto Party Leader§r
[16:31:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §b[MVP§r§a+§r§b] jasperminm §r§eis now a Party Moderator§r
[16:31:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:31:32] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:31:32] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §eYou left the party.§r
[16:31:32] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:31:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aRefreshing...§r
[16:31:38] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§eSelected: §r§bFloor I§r
[16:31:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aAttempting to add you to the party...§r
[16:31:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §dDungeon Finder §r§f> §r§asyeyoung §r§ejoined the dungeon group! (§r§bMage Level 18§r§e)§r
[16:31:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------
§r§b[MVP§r§2+§r§b] john1120§r§f §r§eentered §r§cThe Catacombs§r§e, §r§eFloor I§r§e!
§r§9§m-----------------------------§r
[16:31:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:31:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §b[MVP§r§2+§r§b] john1120§r§e warped the party to a SkyBlock dungeon!§r
[16:31:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §eExploring §r§cThe Catacombs §r§ewith §r§94/5 players §r§eon §r§6Floor I§r§e!§r
[16:31:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:31:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §7Sending to server mini125T...§r
[16:31:48] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§f §r§f §r§1 §r§0 §r§2 §r§f §r§f §r§2 §r§0 §r§4 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r
[16:31:48] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§8 §r§8 §r§1 §r§3 §r§3 §r§7 §r§8 §r
[16:31:48] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aYour active Potion Effects have been paused and stored. They will be restored when you leave Dungeons! You are not allowed to use existing Potion Effects while in Dungeons.§r
[16:31:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aYou are playing on profile: §eBlueberry§r
[16:31:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§bcrazywil§r§a has started the dungeon countdown. The dungeon will begin in 1 minute.§r
[16:31:52] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§bcrazywil§r§a is now ready!§r
[16:31:52] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §e[NPC] §bMort§f: §rTalk to me to change your class and ready up.§r
[16:31:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§asyeyoung§r§a is now ready!§r
[16:32:00] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a___yunho___§r§a is now ready!§r
[16:32:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:32:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §b[MVP§r§2+§r§b] crazywil §r§ehas left the party.§r
[16:32:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:32:07] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aDungeon starts in 15 seconds.§r
[16:32:10] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§bjohn1120§r§a is now ready!§r
[16:32:10] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aDungeon starts in 4 seconds.§r
[16:32:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aDungeon starts in 3 seconds.§r
[16:32:12] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aDungeon starts in 2 seconds.§r
[16:32:13] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aDungeon starts in 1 second.§r
[16:32:14] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §e[NPC] §bMort§f: §rHere, I found this map when I first entered the dungeon.§r
[16:32:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §e[NPC] §bMort§f: §rYou should find it useful if you get lost.§r
[16:32:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lMage Milestone §r§e❶§r§7: You have dealt §r§c60000§r§7 Total Damage so far! §r§a00m 02s§r
[16:32:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c657,012.4 §r§7damage.§r
[16:32:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:32:18] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c267,007 §r§7damage.§r
[16:32:18] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §e[NPC] §bMort§f: §rGood luck.§r
[16:32:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c538,342.6 §r§7damage.§r
[16:32:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c483,831.9 §r§7damage.§r
[16:32:20] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lMage Milestone §r§e❷§r§7: You have dealt §r§c300000§r§7 Total Damage so far! §r§a00m 05s§r
[16:32:20] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c4 §r§7enemies for §r§c668,069.3 §r§7damage.§r
[16:32:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have the key for this door!§r
[16:32:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou do not have the key for this door!§r
[16:32:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c302,835.4 §r§7damage.§r
[16:32:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§b[MVP§r§2+§r§b] john1120§r§f §r§ehas obtained §r§8Wither Key§r§e!§r
[16:32:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lRIGHT CLICK §r§7on §r§7a §r§8WITHER §r§7door§r§7 to open it. This key can only be used to open §r§a1§r§7 door!§r
[16:32:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§b[MVP§r§2+§r§b] john1120§r§f §r§ehas obtained §r§9Superboom TNT§r§e!§r
[16:32:27] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§asyeyoung§r§a opened a §r§8§lWITHER §r§adoor!§r
[16:32:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c122,998.5 §r§7damage.§r
[16:32:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c207,672.1 §r§7damage.§r
[16:32:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c489,248.8 §r§7damage.§r
[16:32:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c2,910 §r§7damage.§r
[16:32:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Guided Sheep §r§ais now available!§r
[16:32:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c207,672.1 §r§7damage.§r
[16:32:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,056.3 §r§7damage.§r
[16:32:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,209.9 §r§7damage.§r
[16:32:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c207,672.1 §r§7damage.§r
[16:32:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,515.2 §r§7damage.§r
[16:32:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,694.6 §r§7damage.§r
[16:32:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,883.2 §r§7damage.§r
[16:32:44] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c4 §r§7enemies for §r§c751,699.7 §r§7damage.§r
[16:32:45] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP§r§6+§r§a] syeyoung§r§f §r§ehas obtained §r§9Superboom TNT§r§e!§r
[16:32:45] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP§r§6+§r§a] syeyoung§r§f §r§ehas obtained §r§8Wither Key§r§e!§r
[16:32:45] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lRIGHT CLICK §r§7on §r§7a §r§8WITHER §r§7door§r§7 to open it. This key can only be used to open §r§a1§r§7 door!§r
[16:32:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:32:49] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c4 §r§7enemies for §r§c914,429.2 §r§7damage.§r
[16:32:49] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c413,309.4 §r§7damage.§r
[16:32:49] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c402,252.5 §r§7damage.§r
[16:32:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c476,943.9 §r§7damage.§r
[16:32:59] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c269,916.9 §r§7damage.§r
[16:32:59] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c4 §r§7enemies for §r§c616,099.1 §r§7damage.§r
[16:33:00] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,170.5 §r§7damage.§r
[16:33:00] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lMage Milestone §r§e❸§r§7: You have dealt §r§c1200000§r§7 Total Damage so far! §r§a00m 45s§r
[16:33:00] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c5 §r§7enemies for §r§c1,191,026.3 §r§7damage.§r
[16:33:00] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,299.3 §r§7damage.§r
[16:33:00] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,433.3 §r§7damage.§r
[16:33:00] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,572.7 §r§7damage.§r
[16:33:00] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,717.7 §r§7damage.§r
[16:33:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,868.7 §r§7damage.§r
[16:33:02] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§bjohn1120§r§a opened a §r§8§lWITHER §r§adoor!§r
[16:33:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c267,007 §r§7damage.§r
[16:33:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c207,672.1 §r§7damage.§r
[16:33:04] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP§r§6+§r§a] syeyoung§r§f §r§ehas obtained §r§9Superboom TNT§r§e!§r
[16:33:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§eA §r§dBlessing of Power§r§e was picked up!§r
[16:33:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§fA §r§dBlessing of Power V§r§f was found! (§r§a00m 56s§r§f)§r
[16:33:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Granted you §r§a66.3 §r§c❁ Strength §r§7and §r§a53 §r§9☠ Crit Damage§r§7.§r
[16:33:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:33:20] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c306,387.6 §r§7damage.§r
[16:33:20] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c402,252.5 §r§7damage.§r
[16:33:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c6 §r§7enemies for §r§c1,578,279.4 §r§7damage.§r
[16:33:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c402,252.5 §r§7damage.§r
[16:33:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c402,252.5 §r§7damage.§r
[16:33:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§b[MVP§r§2+§r§b] john1120§r§f §r§ehas obtained §r§8Wither Key§r§e!§r
[16:33:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lRIGHT CLICK §r§7on §r§7a §r§8WITHER §r§7door§r§7 to open it. This key can only be used to open §r§a1§r§7 door!§r
[16:33:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c534,013.9 §r§7damage.§r
[16:33:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§b[MVP§r§2+§r§b] john1120§r§f §r§ehas obtained §r§dBlessing of Stone§r§e!§r
[16:33:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§bjohn1120 §r§ffound a §r§dBlessing of Stone V§r§f! (§r§a01m 09s§r§f)§r
[16:33:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Granted you §r§a261.6 §r§a❈ Defense §r§7and §r§a+30 §r§c❁ Damage§r§7.§r
[16:33:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c14,999.8 §r§7damage.§r
[16:33:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c15,266 §r§7damage.§r
[16:33:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c15,536.9 §r§7damage.§r
[16:33:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c15,812.6 §r§7damage.§r
[16:33:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c16,093.2 §r§7damage.§r
[16:33:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cLost Adventurer §r§aused §r§6Dragon's Breath §r§aon you!§r
[16:33:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c16,378.7 §r§7damage.§r
[16:33:41] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c16,669.3 §r§7damage.§r
[16:33:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c16,965.1 §r§7damage.§r
[16:33:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c17,266.2 §r§7damage.§r
[16:33:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c17,572.5 §r§7damage.§r
[16:33:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c17,884.4 §r§7damage.§r
[16:33:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c18,201.7 §r§7damage.§r
[16:33:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c18,524.7 §r§7damage.§r
[16:33:44] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c18,853.4 §r§7damage.§r
[16:33:44] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c19,187.9 §r§7damage.§r
[16:33:45] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c19,528.4 §r§7damage.§r
[16:33:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c19,874.9 §r§7damage.§r
[16:33:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c17,588.1 §r§7damage.§r
[16:33:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c17,900.2 §r§7damage.§r
[16:33:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c18,217.8 §r§7damage.§r
[16:33:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c18,541.1 §r§7damage.§r
[16:33:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c18,870.1 §r§7damage.§r
[16:33:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c19,204.9 §r§7damage.§r
[16:33:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c19,545.7 §r§7damage.§r
[16:33:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:33:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c19,892.5 §r§7damage.§r
[16:33:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c20,245.5 §r§7damage.§r
[16:33:48] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP§r§6+§r§a] syeyoung§r§f §r§ehas obtained §r§dBlessing of Wisdom§r§e!§r
[16:33:48] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§fYou found a §r§dBlessing of Wisdom V§r§f! (§r§a01m 33s§r§f)§r
[16:33:48] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Granted you §r§a398 §r§b✎ Intelligence §r§7and §r§a+20 §r§f✦ Speed§r§7.§r
[16:33:48] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a[VIP§r§6+§r§a] syeyoung§r§f §r§ehas obtained §r§9Superboom TNT§r§e!§r
[16:33:58] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§asyeyoung§r§a opened a §r§8§lWITHER §r§adoor!§r
[16:34:00] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c227,371.8 §r§7damage.§r
[16:34:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c8 §r§7enemies for §r§c1,556,718.7 §r§7damage.§r
[16:34:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c880,820.2 §r§7damage.§r
[16:34:04] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c1,108,192 §r§7damage.§r
[16:34:04] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c880,820.2 §r§7damage.§r
[16:34:04] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c880,820.2 §r§7damage.§r
[16:34:07] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§b[MVP§r§2+§r§b] crazywil§r§f §r§ehas obtained §r§cBlood Key§r§e!§r
[16:34:07] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lRIGHT CLICK §r§7on §r§7the §r§cBLOOD DOOR§r§7 to open it. This key can only be used to open §r§a1§r§7 door!§r
[16:34:07] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§b[MVP§r§2+§r§b] crazywil§r§f §r§ehas obtained §r§9Superboom TNT§r§e!§r
[16:34:07] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThe §r§c§lBLOOD DOOR§r§c has been opened!§r
[16:34:07] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§5A shiver runs down your spine...§r
[16:34:08] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Ah, you've finally arrived.§r
[16:34:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: I have been watching you closely since we last met.§r
[16:34:14] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: I don't know if you are ready for what's behind this door.§r
[16:34:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Guided Sheep §r§ais now available!§r
[16:34:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:34:18] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: So I will decide if you are strong enough.§r
[16:34:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aFriend > §r§aJoe_Is_Real §r§ejoined.§r
[16:34:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Hmmm... this one!§r
[16:34:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Let's see how you can handle this.§r
[16:34:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: I'm impressed.§r
[16:34:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Hmmm... this one!§r
[16:34:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §b-----------------------------------------------------§r
[16:34:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a[VIP] Policeop §r§ejoined the guild!§r
[16:34:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §b-----------------------------------------------------§r
[16:34:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:34:48] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c6,286.6 §r§7damage.§r
[16:34:49] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c6,714.1 §r§7damage.§r
[16:34:49] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c7,170.6 §r§7damage.§r
[16:34:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: I'm impressed.§r
[16:34:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c8,373.8 §r§7damage.§r
[16:34:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c8,634.1 §r§7damage.§r
[16:34:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c8,843.9 §r§7damage.§r
[16:34:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,829.1 §r§7damage.§r
[16:34:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,089.5 §r§7damage.§r
[16:34:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c8,843.9 §r§7damage.§r
[16:34:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,299.3 §r§7damage.§r
[16:34:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,299.3 §r§7damage.§r
[16:34:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,299.3 §r§7damage.§r
[16:34:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,299.3 §r§7damage.§r
[16:34:54] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Hmmm... this one!§r
[16:34:55] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §b-----------------------------------------------------§r
[16:34:55] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a[VIP] Policeop §r§awas demoted from Member to Peasants§r
[16:34:55] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §b-----------------------------------------------------§r
[16:34:56] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,143.3 §r§7damage.§r
[16:34:57] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,345.2 §r§7damage.§r
[16:34:57] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §b-----------------------------------------------------§r
[16:34:57] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a[VIP] Policeop §r§eleft the guild!§r
[16:34:57] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §b-----------------------------------------------------§r
[16:34:57] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,560 §r§7damage.§r
[16:34:57] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,788.6 §r§7damage.§r
[16:34:58] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,143.3 §r§7damage.§r
[16:34:58] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,031.9 §r§7damage.§r
[16:34:58] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,370.4 §r§7damage.§r
[16:34:59] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,290.8 §r§7damage.§r
[16:34:59] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,299.3 §r§7damage.§r
[16:34:59] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,613.9 §r§7damage.§r
[16:34:59] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,299.3 §r§7damage.§r
[16:35:00] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,875 §r§7damage.§r
[16:35:00] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,155 §r§7damage.§r
[16:35:00] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Aw, I liked that one.§r
[16:35:00] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,299.3 §r§7damage.§r
[16:35:00] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,299.3 §r§7damage.§r
[16:35:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,299.3 §r§7damage.§r
[16:35:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,143.3 §r§7damage.§r
[16:35:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,385.6 §r§7damage.§r
[16:35:04] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,646.5 §r§7damage.§r
[16:35:04] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c3,927.5 §r§7damage.§r
[16:35:04] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,230.1 §r§7damage.§r
[16:35:04] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,299.3 §r§7damage.§r
[16:35:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Aw, I liked that one.§r
[16:35:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,299.3 §r§7damage.§r
[16:35:10] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: This guy looks like a fighter.§r
[16:35:13] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: I'm impressed.§r
[16:35:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:35:18] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§a___yunho___ §r§ffound a §r§dBlessing of Life I§r§f!§r
[16:35:18] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Grants you §r§a+109.9 HP §r§7and §r§a+0.03% §r§7health regeneration.§r
[16:35:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: I'm impressed.§r
[16:35:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: That will be enough for now.§r
[16:35:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: You have proven yourself. You may pass.§r
[16:35:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThere are blocks in the way!§r
[16:35:36] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Bonzo§r§f: Gratz for making it this far, but I’m basically unbeatable.§r
[16:35:40] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Bonzo§r§f: I don’t even need to fight, this is the life!§r
[16:35:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§eA §r§dBlessing of Power§r§e was picked up!§r
[16:35:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§fA §r§dBlessing of Power V§r§f was found! (§r§a03m 27s§r§f)§r
[16:35:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Granted you §r§a65.6 §r§c❁ Strength §r§7and §r§a53 §r§9☠ Crit Damage§r§7.§r
[16:35:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§eA §r§dBlessing of Life§r§e was picked up!§r
[16:35:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§fA §r§dBlessing of Life V§r§f was found! (§r§a03m 27s§r§f)§r
[16:35:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Grants you §r§a+551 HP §r§7and §r§a+0.15% §r§7health regeneration.§r
[16:35:44] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Bonzo§r§f: I can summon lots of undead! Check this out.§r
[16:35:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:35:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c31,433.2 §r§7damage.§r
[16:35:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Bonzo§r§f: Oh noes, you got me.. what ever will I do?!§r
[16:35:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c32,886.6 §r§7damage.§r
[16:35:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c34,407.2 §r§7damage.§r
[16:35:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Bonzo§r§f: Lame.§r
[16:35:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c31,433.2 §r§7damage.§r
[16:35:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c70,133.4 §r§7damage.§r
[16:35:55] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c39,044.8 §r§7damage.§r
[16:35:55] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c42,992.5 §r§7damage.§r
[16:35:55] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c42,992.5 §r§7damage.§r
[16:35:56] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Bonzo§r§f: Oh I'm dead!§r
[16:36:00] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Bonzo§r§f: Sike§r
[16:36:02] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c31,448.6 §r§7damage.§r
[16:36:02] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c32,902.7 §r§7damage.§r
[16:36:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c41,284.7 §r§7damage.§r
[16:36:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Bonzo§r§f: Alright, maybe I'm just weak after all..§r
[16:36:07] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Bonzo§r§f: But my masters are a lot stronger..§r
[16:36:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Bonzo§r§f: Just you wait...§r
[16:36:12] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a§l▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬§r
[16:36:12] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§cThe Catacombs §r§8- §r§eFloor I§r
[16:36:12] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r
[16:36:12] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§fTeam Score: §r§a214 §r§f(§r§eB§r§f)§r
[16:36:12] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§c☠ §r§eDefeated §r§cBonzo §r§ein §r§a03m 57s§r
[16:36:12] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§r §6> §e§lEXTRA STATS §6<
§6§r
[16:36:12] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§8+§r§364.2 Catacombs Experience§r
[16:36:12] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§8+§r§366.8 Mage Experience§r
[16:36:12] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§8+§r§316.7 Berserk Experience §r§b(Team Bonus)§r
[16:36:12] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a§l▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬§r
[16:36:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:36:45] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§9Party §8> §a[VIP] ___yunho___§f: §rzzzzzzzzzzzzzzzzzzzzzzzzzz§r
[16:36:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§9Party §8> §a[VIP] ___yunho___§f: §rzzzzzzzzzzzzzzzzzzzzzzzzzz§r
[16:36:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:36:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§9Party §8> §a[VIP] ___yunho___§f: §rzzzzzzzzzzzzzzzzzzzzzzzzzz§r
[16:36:48] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aYou earned §r§2563 GEXP §r§afrom playing SkyBlock!§r
[16:36:59] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§l» §a___yunho___ §eis traveling to §aDungeons Hub §e§lFOLLOW§r
[16:37:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aFriend > §r§axk4nny §r§ejoined.§r
[16:37:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§9Party §8> §b[MVP§2+§b] john1120§f: §rzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz§r
[16:37:04] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§l» §a___yunho___ §eis traveling to §aSkyBlock Hub §e§lFOLLOW§r
[16:37:12] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§9Party §8> §a[VIP] ___yunho___§f: §rzzzzzzzzzzzzzzzzzzzzzzzzzz§r
[16:37:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:37:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §cYou are not allowed to invite players.§r
[16:37:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:37:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:37:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:37:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §eYou left the party.§r
[16:37:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:37:42] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cWarning! §r§eThis Dungeon will §r§cclose §r§ein §r§a90s§r§e.§r
[16:37:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aFriend > §r§axk4nny §r§eleft.§r
[16:37:47] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:37:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aFriend > §r§axk4nny §r§ejoined.§r
[16:37:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThere are blocks in the way!§r
[16:37:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThere are blocks in the way!§r
[16:37:55] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aFriend > §r§axk4nny §r§eleft.§r
[16:37:57] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §7Sending to server mini2N...§r
[16:37:58] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§f §r§f §r§1 §r§0 §r§2 §r§f §r§f §r§2 §r§0 §r§4 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r
[16:37:58] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§8 §r§8 §r§1 §r§3 §r§3 §r§7 §r§8 §r
[16:37:58] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a[VIP§6+§a] 2_slow§f§r§f: selling t3 wart hoe recom. turbo wart4 blessed can screen share give me ur offers/visit me§r
[16:38:00] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §7BeegYosh1§7§r§7: can someone carry me f5 for 450k§r
[16:38:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aYou are playing on profile: §eBlueberry§r
[16:38:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §7Brand4o0§7§r§7: i will invite you to a party§r
[16:38:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §7BeegYosh1§7§r§7: alright§r
[16:38:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a[VIP§6+§a] uwusophiee§f§r§f: selling all essence, /p me§r
[16:38:32] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aFriend > §r§bRoyaleRush §r§ejoined.§r
[16:38:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §7Brand4o0§7§r§7: we do carry f5 for 200k§r
[16:38:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §7BeegYosh1§7§r§7: oh nice§r
[16:39:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThere are blocks in the way!§r
[16:39:06] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §7BeegYosh1§7§r§7: tryna use this livid dagger§r
[16:39:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aFriend > §r§axk4nny §r§ejoined.§r
[16:39:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aFriend > §r§aJoe_Is_Real §r§eleft.§r
[16:39:53] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §a[VIP§6+§a] IdoNotFound§f§r§f: Buying floor 5 or 6 carry /p IdoNotFound§r
[16:39:56] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aAttempting to add you to the party...§r
[16:39:56] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §dDungeon Finder §r§f> §r§asyeyoung §r§ejoined the dungeon group! (§r§bMage Level 18§r§e)§r
[16:40:00] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------
§r§7Max_Wheat§r§7 §r§eentered §r§cThe Catacombs§r§e, §r§eFloor I§r§e!
§r§9§m-----------------------------§r
[16:40:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:40:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §7Max_Wheat§r§e warped the party to a SkyBlock dungeon!§r
[16:40:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §ePlundering §r§cThe Catacombs §r§ewith §r§95/5 players §r§eon §r§6Floor I§r§e!§r
[16:40:01] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:40:02] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §7Sending to server mini703M...§r
[16:40:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§f §r§f §r§1 §r§0 §r§2 §r§f §r§f §r§2 §r§0 §r§4 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§9 §r§2 §r§0 §r§0 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r§3 §r§6 §r
[16:40:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§8 §r§8 §r§1 §r§3 §r§3 §r§7 §r§8 §r
[16:40:03] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aYour active Potion Effects have been paused and stored. They will be restored when you leave Dungeons! You are not allowed to use existing Potion Effects while in Dungeons.§r
[16:40:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aYou are playing on profile: §eBlueberry§r
[16:40:05] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Toxic__city§r§a has started the dungeon countdown. The dungeon will begin in 1 minute.§r
[16:40:06] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §e[NPC] §bMort§f: §rTalk to me to change your class and ready up.§r
[16:40:07] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Toxic__city§r§a is now ready!§r
[16:40:07] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Mythical_Bass§r§a is now ready!§r
[16:40:09] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§asyeyoung§r§a is now ready!§r
[16:40:10] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Max_Wheat§r§a is now ready!§r
[16:40:13] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Kajire50§r§a is now ready!§r
[16:40:13] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aDungeon starts in 4 seconds.§r
[16:40:14] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aDungeon starts in 3 seconds.§r
[16:40:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aDungeon starts in 2 seconds.§r
[16:40:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§aDungeon starts in 1 second.§r
[16:40:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §e[NPC] §bMort§f: §rHere, I found this map when I first entered the dungeon.§r
[16:40:19] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §e[NPC] §bMort§f: §rYou should find it useful if you get lost.§r
[16:40:20] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c474,679.1 §r§7damage.§r
[16:40:21] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §e[NPC] §bMort§f: §rGood luck.§r
[16:40:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThe Arrow Trap hit you for 1,816.5 damage!§r
[16:40:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lMage Milestone §r§e❶§r§7: You have dealt §r§c60000§r§7 Total Damage so far! §r§a00m 08s§r
[16:40:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c597,677.5 §r§7damage.§r
[16:40:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c593,348.8 §r§7damage.§r
[16:40:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c804,505 §r§7damage.§r
[16:40:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Max_Wheat§r§7 §r§ehas obtained §r§8Wither Key§r§e!§r
[16:40:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lRIGHT CLICK §r§7on §r§7a §r§8WITHER §r§7door§r§7 to open it. This key can only be used to open §r§a1§r§7 door!§r
[16:40:31] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Max_Wheat§r§7 §r§ehas obtained §r§9Superboom TNT§r§e!§r
[16:40:32] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:40:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Max_Wheat§r§a opened a §r§8§lWITHER §r§adoor!§r
[16:40:44] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Max_Wheat§r§7 §r§ehas obtained §r§9Superboom TNT§r§e!§r
[16:40:44] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Max_Wheat§r§7 §r§ehas obtained §r§8Wither Key§r§e!§r
[16:40:44] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lRIGHT CLICK §r§7on §r§7a §r§8WITHER §r§7door§r§7 to open it. This key can only be used to open §r§a1§r§7 door!§r
[16:40:45] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§7Mythical_Bass §r§ffound a §r§dBlessing of Life I§r§f!§r
[16:40:45] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Grants you §r§a+109.9 HP §r§7and §r§a+0.03% §r§7health regeneration.§r
[16:40:54] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Max_Wheat§r§a opened a §r§8§lWITHER §r§adoor!§r
[16:41:02] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:41:07] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§fYou found a §r§dBlessing of Life V§r§f!§r
[16:41:07] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Grants you §r§a+551.5 HP §r§7and §r§a+0.15% §r§7health regeneration.§r
[16:41:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Max_Wheat§r§7 §r§ehas obtained §r§dBlessing of Wisdom§r§e!§r
[16:41:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§7Max_Wheat §r§ffound a §r§dBlessing of Wisdom V§r§f! (§r§a00m 58s§r§f)§r
[16:41:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Granted you §r§a398 §r§b✎ Intelligence §r§7and §r§a+20 §r§f✦ Speed§r§7.§r
[16:41:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Max_Wheat§r§7 §r§ehas obtained §r§cBlood Key§r§e!§r
[16:41:16] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lRIGHT CLICK §r§7on §r§7the §r§cBLOOD DOOR§r§7 to open it. This key can only be used to open §r§a1§r§7 door!§r
[16:41:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Max_Wheat§r§7 §r§ehas obtained §r§9Superboom TNT§r§e!§r
[16:41:18] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c292,335.2 §r§7damage.§r
[16:41:20] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cThe §r§c§lBLOOD DOOR§r§c has been opened!§r
[16:41:20] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§5A shiver runs down your spine...§r
[16:41:20] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Ah, you've finally arrived.§r
[16:41:21] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§e§lMage Milestone §r§e❷§r§7: You have dealt §r§c300000§r§7 Total Damage so far! §r§a01m 03s§r
[16:41:21] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c5 §r§7enemies for §r§c1,152,272.9 §r§7damage.§r
[16:41:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c4 §r§7enemies for §r§c1,112,923.1 §r§7damage.§r
[16:41:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c134,666.1 §r§7damage.§r
[16:41:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: I have been watching you closely since we last met.§r
[16:41:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: I don't know if you are ready for what's behind this door.§r
[16:41:30] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: So I will decide if you are strong enough.§r
[16:41:32] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:41:36] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Go and live again!§r
[16:41:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: This guy looks like a fighter.§r
[16:41:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Max_Wheat§r§7 §r§ehas obtained §r§dBlessing of Wisdom§r§e!§r
[16:41:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§7Max_Wheat §r§ffound a §r§dBlessing of Wisdom V§r§f! (§r§a01m 24s§r§f)§r
[16:41:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Granted you §r§a287.6 §r§b✎ Intelligence §r§7and §r§a+20 §r§f✦ Speed§r§7.§r
[16:41:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Max_Wheat§r§7 §r§ehas obtained §r§6Revive Stone§r§e!§r
[16:41:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Hmmm... this one!§r
[16:41:46] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Let's see how you can handle this.§r
[16:41:54] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: This guy looks like a fighter.§r
[16:42:02] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:42:11] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Go, fight!§r
[16:42:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Max_Wheat§r§7 §r§ehas obtained §r§dBlessing of Life§r§e!§r
[16:42:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§7Max_Wheat §r§ffound a §r§dBlessing of Life V§r§f! (§r§a01m 58s§r§f)§r
[16:42:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Grants you §r§a+561.2 HP §r§7and §r§a+0.15% §r§7health regeneration.§r
[16:42:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Max_Wheat§r§7 §r§ehas obtained §r§9Superboom TNT§r§e!§r
[16:42:20] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§fYou found a §r§dBlessing of Power V§r§f!§r
[16:42:20] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Granted you §r§a74.1 §r§c❁ Strength §r§7and §r§a43.1 §r§9☠ Crit Damage§r§7.§r
[16:42:20] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Hmmm... this one!§r
[16:42:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: That one was weak anyway.§r
[16:42:26] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Not bad.§r
[16:42:28] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Very nice.§r
[16:42:32] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:42:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Hmmm... this one!§r
[16:42:37] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Very nice.§r
[16:42:39] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Aw, I liked that one.§r
[16:42:43] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: Not bad.§r
[16:42:49] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c6,781.6 §r§7damage.§r
[16:42:49] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c7,180.2 §r§7damage.§r
[16:42:49] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c7,572.3 §r§7damage.§r
[16:42:49] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c7,985.8 §r§7damage.§r
[16:42:49] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: That will be enough for now.§r
[16:42:49] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c7,621.7 §r§7damage.§r
[16:42:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c12,242.5 §r§7damage.§r
[16:42:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c9,037.8 §r§7damage.§r
[16:42:50] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c13,177 §r§7damage.§r
[16:42:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c3 §r§7enemies for §r§c13,422.7 §r§7damage.§r
[16:42:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c2 §r§7enemies for §r§c9,083.5 §r§7damage.§r
[16:42:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,632.8 §r§7damage.§r
[16:42:51] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c4,632.8 §r§7damage.§r
[16:42:52] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] The Watcher§r§f: You have proven yourself. You may pass.§r
[16:42:59] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Toxic__city§r§7 §r§ehas obtained §r§dBlessing of Life§r§e!§r
[16:42:59] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§7Toxic__city §r§ffound a §r§dBlessing of Life V§r§f! (§r§a02m 41s§r§f)§r
[16:42:59] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Grants you §r§a+494.8 HP §r§7and §r§a+0.15% §r§7health regeneration.§r
[16:42:59] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Toxic__city§r§7 §r§ehas obtained §r§dBlessing of Power§r§e!§r
[16:42:59] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6§lDUNGEON BUFF! §r§7Toxic__city §r§ffound a §r§dBlessing of Power V§r§f! (§r§a02m 41s§r§f)§r
[16:42:59] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§7Granted you §r§a65.9 §r§c❁ Strength §r§7and §r§a53 §r§9☠ Crit Damage§r§7.§r
[16:43:00] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Bonzo§r§f: Gratz for making it this far, but I’m basically unbeatable.§r
[16:43:02] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:43:04] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Bonzo§r§f: I don’t even need to fight, this is the life!§r
[16:43:08] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Bonzo§r§f: I can summon lots of undead! Check this out.§r
[16:43:13] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Bonzo§r§f: Oh noes, you got me.. what ever will I do?!§r
[16:43:14] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c35,065.5 §r§7damage.§r
[16:43:14] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c37,087 §r§7damage.§r
[16:43:14] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c39,210.1 §r§7damage.§r
[16:43:14] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c41,699.7 §r§7damage.§r
[16:43:14] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c44,054.5 §r§7damage.§r
[16:43:15] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aFriend > §r§axMaark §r§eleft.§r
[16:43:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Bonzo§r§f: Fight my Undeads instead.§r
[16:43:17] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c35,376.3 §r§7damage.§r
[16:43:18] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Bonzo§r§f: Oh I'm dead!§r
[16:43:22] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Bonzo§r§f: Sike§r
[16:43:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c33,766.7 §r§7damage.§r
[16:43:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c35,791.9 §r§7damage.§r
[16:43:23] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c37,927.2 §r§7damage.§r
[16:43:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c39,832.8 §r§7damage.§r
[16:43:24] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c41,834.2 §r§7damage.§r
[16:43:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c43,936 §r§7damage.§r
[16:43:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§7Your Spirit Sceptre hit §r§c1 §r§7enemy for §r§c46,143.5 §r§7damage.§r
[16:43:25] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Bonzo§r§f: Alright, maybe I'm just weak after all..§r
[16:43:29] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Bonzo§r§f: But my masters are a lot stronger..§r
[16:43:32] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:43:33] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§c[BOSS] Bonzo§r§f: Just you wait...§r
[16:43:33] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:43:33] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §7Toxic__city §r§ehas left the party.§r
[16:43:33] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§m-----------------------------§r
[16:43:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §aFriend > §r§aJoe_Is_Real §r§ejoined.§r
[16:43:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a§l▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬§r
[16:43:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§cThe Catacombs §r§8- §r§eFloor I§r
[16:43:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r
[16:43:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§fTeam Score: §r§a232 §r§f(§r§aA§r§f)§r
[16:43:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§c☠ §r§eDefeated §r§cBonzo §r§ein §r§a03m 17s§r
[16:43:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§r §6> §e§lEXTRA STATS §6<
§6§r
[16:43:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§8+§r§334.8 Catacombs Experience§r
[16:43:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§8+§r§336.2 Mage Experience§r
[16:43:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§8+§r§39 Archer Experience §r§b(Team Bonus)§r
[16:43:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r §r§8+§r§39 Berserk Experience §r§b(Team Bonus)§r
[16:43:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§a§l▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬§r
[16:43:34] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§cYou received reduced experience as you only reached Class Milestone ❷! :/§r
[16:43:52] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§l» §7Max_Wheat §eis traveling to §aDungeons Hub §e§lFOLLOW§r
[16:44:02] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §r§6Thunderstorm§r§a is ready to use! Press §r§6§lDROP§r§a to activate it!§r
[16:44:08] [Client thread/INFO] [STDOUT/]: [kr.syeyoung.dungeonsguide.features.impl.etc.FeatureDisableMessage:onChat:60]: §9§l» §7Mythical_Bass §eis traveling to §aDungeons Hub §e§lFOLLOW§r
[16:44:09] [Client thread/DEBUG] [FML/]: Reverting to frozen data state.
[16:44:09] [Client thread/TRACE] [mcp/mcp]: Sending event FMLModIdMappingEvent to mod mcp
[16:44:09] [Client thread/TRACE] [mcp/mcp]: Sent event FMLModIdMappingEvent to mod mcp
[16:44:09] [Client thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Coder Pack took 0.001s
[16:44:09] [Client thread/TRACE] [FML/FML]: Sending event FMLModIdMappingEvent to mod FML
[16:44:09] [Client thread/TRACE] [FML/FML]: Sent event FMLModIdMappingEvent to mod FML
[16:44:09] [Client thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Forge Mod Loader took 0.001s
[16:44:09] [Client thread/TRACE] [Forge/Forge]: Sending event FMLModIdMappingEvent to mod Forge
[16:44:09] [Client thread/TRACE] [Forge/Forge]: Sent event FMLModIdMappingEvent to mod Forge
[16:44:09] [Client thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Forge took 0.002s
[16:44:09] [Client thread/TRACE] [skyblock_dungeons_guide/skyblock_dungeons_guide]: Sending event FMLModIdMappingEvent to mod skyblock_dungeons_guide
[16:44:09] [Client thread/TRACE] [skyblock_dungeons_guide/skyblock_dungeons_guide]: Sent event FMLModIdMappingEvent to mod skyblock_dungeons_guide
[16:44:09] [Client thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Skyblock Dungeons Guide took 0.000s
[16:44:09] [Client thread/DEBUG] [FML/]: Bar Finished: ModIdMapping took 0.003s
[16:44:09] [Client thread/INFO] [FML/]: Applying holder lookups
[16:44:09] [Client thread/INFO] [FML/]: Holder lookups applied
[16:44:09] [Client thread/DEBUG] [FML/]: Frozen state restored.
|