aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/Danker/DankersSkyblockMod.java
blob: 12a806642ee9ca4a5cae5572e2577b2ece883c4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
package me.Danker;

import com.google.gson.JsonObject;
import me.Danker.commands.*;
import me.Danker.gui.*;
import me.Danker.handlers.*;
import me.Danker.utils.TicTacToeUtils;
import me.Danker.utils.Utils;
import net.minecraft.block.Block;
import net.minecraft.block.state.IBlockState;
import net.minecraft.client.Minecraft;
import net.minecraft.client.entity.EntityPlayerSP;
import net.minecraft.client.gui.*;
import net.minecraft.client.gui.inventory.GuiChest;
import net.minecraft.client.settings.GameSettings;
import net.minecraft.client.settings.KeyBinding;
import net.minecraft.command.ICommand;
import net.minecraft.entity.Entity;
import net.minecraft.entity.item.EntityArmorStand;
import net.minecraft.entity.item.EntityItemFrame;
import net.minecraft.entity.monster.EntityCreeper;
import net.minecraft.entity.monster.EntitySpider;
import net.minecraft.entity.monster.EntityZombie;
import net.minecraft.entity.passive.EntityWolf;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.event.ClickEvent;
import net.minecraft.event.ClickEvent.Action;
import net.minecraft.event.HoverEvent;
import net.minecraft.init.Blocks;
import net.minecraft.init.Items;
import net.minecraft.inventory.Container;
import net.minecraft.inventory.ContainerChest;
import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.Slot;
import net.minecraft.item.Item;
import net.minecraft.item.ItemMap;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.util.*;
import net.minecraft.world.World;
import net.minecraft.world.storage.MapData;
import net.minecraftforge.client.ClientCommandHandler;
import net.minecraftforge.client.GuiIngameForge;
import net.minecraftforge.client.event.*;
import net.minecraftforge.client.event.sound.PlaySoundEvent;
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.event.entity.EntityJoinWorldEvent;
import net.minecraftforge.event.entity.player.*;
import net.minecraftforge.event.world.WorldEvent;
import net.minecraftforge.fml.client.registry.ClientRegistry;
import net.minecraftforge.fml.common.Loader;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.Mod.EventHandler;
import net.minecraftforge.fml.common.event.FMLInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPostInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
import net.minecraftforge.fml.common.eventhandler.EventPriority;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
import net.minecraftforge.fml.common.gameevent.InputEvent.KeyInputEvent;
import net.minecraftforge.fml.common.gameevent.TickEvent;
import net.minecraftforge.fml.common.gameevent.TickEvent.Phase;
import net.minecraftforge.fml.common.network.FMLNetworkEvent.ClientConnectedToServerEvent;
import net.minecraftforge.fml.common.versioning.DefaultArtifactVersion;
import org.apache.commons.lang3.time.StopWatch;
import org.lwjgl.input.Keyboard;
import org.lwjgl.input.Mouse;
import org.lwjgl.opengl.GL11;

import java.awt.*;
import java.text.NumberFormat;
import java.util.List;
import java.util.*;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

@Mod(modid = DankersSkyblockMod.MODID, version = DankersSkyblockMod.VERSION, clientSideOnly = true)
public class DankersSkyblockMod {
    public static final String MODID = "Danker's Skyblock Mod";
    public static final String VERSION = "1.8.5";
    static double checkItemsNow = 0;
    static double itemsChecked = 0;
    public static Map<String, String> t6Enchants = new HashMap<>();
    public static Pattern t6EnchantPattern = Pattern.compile("");
    static Pattern petPattern = Pattern.compile("\\[Lvl [\\d]{1,3}]");
    static boolean updateChecked = false;
    public static int titleTimer = -1;
    public static boolean showTitle = false;
    public static String titleText = "";
    public static int SKILL_TIME;
    public static int skillTimer = -1;
    public static boolean showSkill = false;
    public static String skillText = "";
    static int tickAmount = 1;
    static String lastMaddoxCommand = "/cb placeholder";
    static double lastMaddoxTime = 0;
    static KeyBinding[] keyBindings = new KeyBinding[3];
    static boolean usingLabymod = false;
    static boolean usingOAM = false;
    static boolean OAMWarning = false;
    public static String guiToOpen = null;
    static boolean foundLivid = false;
    static Entity livid = null;
    public static double cakeTime;
    public static double nextBonzoUse = 0;
    public static boolean firstLaunch = false;

    public static final ResourceLocation CAKE_ICON = new ResourceLocation("dsm", "icons/cake.png");
    public static final ResourceLocation BONZO_ICON = new ResourceLocation("dsm", "icons/bonzo.png");

    static String[] riddleSolutions = {"The reward is not in my chest!", "At least one of them is lying, and the reward is not in",
            "My chest doesn't have the reward. We are all telling the truth", "My chest has the reward and I'm telling the truth",
            "The reward isn't in any of our chests", "Both of them are telling the truth."};
    static BlockPos riddleChest = null;
    static Map<String, String[]> triviaSolutions = new HashMap<>();
    static String[] triviaAnswers = null;
    static Entity highestBlaze = null;
    static Entity lowestBlaze = null;
    // Among Us colours
    static final int[] CREEPER_COLOURS = {0x50EF39, 0xC51111, 0x132ED1, 0x117F2D, 0xED54BA, 0xEF7D0D, 0xF5F557, 0xD6E0F0, 0x6B2FBB, 0x39FEDC};
    static boolean drawCreeperLines = false;
    static Vec3 creeperLocation = new Vec3(0, 0, 0);
    static List<Vec3[]> creeperLines = new ArrayList<>();
    static boolean prevInWaterRoom = false;
    static boolean inWaterRoom = false;
    static String waterAnswers = null;
    static AxisAlignedBB correctTicTacToeButton = null;
    static Pattern startsWithTerminalPattern = Pattern.compile("[A-Z]{2,}");
    static Slot[] clickInOrderSlots = new Slot[36];
    static int lastChronomatronRound = 0;
    static List<String> chronomatronPattern = new ArrayList<>();
    static int chronomatronMouseClicks = 0;
    static int lastUltraSequencerClicked = 0;
    static ItemStack[] experimentTableSlots = new ItemStack[54];
    static int pickBlockBind;
    static boolean pickBlockBindSwapped = false;
    static String terminalColorNeeded;
    static int[] terminalNumberNeeded = new int[4];

    static double dungeonStartTime = 0;
    static double bloodOpenTime = 0;
    static double watcherClearTime = 0;
    static double bossClearTime = 0;
    static int witherDoors = 0;
    static int dungeonDeaths = 0;
    static int puzzleFails = 0;

    static String lastSkill = "Farming";
    public static boolean showSkillTracker;
    public static StopWatch skillStopwatch = new StopWatch();
	static double farmingXP = 0;
	public static double farmingXPGained = 0;
	static double miningXP = 0;
	public static double miningXPGained = 0;
	static double combatXP = 0;
	public static double combatXPGained = 0;
	static double foragingXP = 0;
	public static double foragingXPGained = 0;
	static double fishingXP = 0;
	public static double fishingXPGained = 0;
	static double enchantingXP = 0;
	public static double enchantingXPGained = 0;
	static double alchemyXP = 0;
	public static double alchemyXPGained = 0;
	static double xpLeft = 0;
	static double timeSinceGained = 0;
    
    public static String MAIN_COLOUR;
    public static String SECONDARY_COLOUR;
    public static String ERROR_COLOUR;
    public static String DELIMITER_COLOUR;
    public static String TYPE_COLOUR;
    public static String VALUE_COLOUR;
    public static String SKILL_AVERAGE_COLOUR;
    public static String ANSWER_COLOUR;
    public static String SKILL_50_COLOUR;
    public static String COORDS_COLOUR;
    public static String CAKE_COLOUR;
    public static String SKILL_TRACKER_COLOUR;
    public static String TRIVIA_WRONG_ANSWER_COLOUR;
    public static String BONZO_COLOR;
    public static int LOWEST_BLAZE_COLOUR;
    public static int HIGHEST_BLAZE_COLOUR;
    public static int PET_1_TO_9;
    public static int PET_10_TO_19;
    public static int PET_20_TO_29;
    public static int PET_30_TO_39;
    public static int PET_40_TO_49;
    public static int PET_50_TO_59;
    public static int PET_60_TO_69;
    public static int PET_70_TO_79;
    public static int PET_80_TO_89;
    public static int PET_90_TO_99;
    public static int PET_100;
    public static int ULTRASEQUENCER_NEXT;
    public static int ULTRASEQUENCER_NEXT_TO_NEXT;
    public static int CHRONOMATRON_NEXT;
    public static int CHRONOMATRON_NEXT_TO_NEXT;
    public static int CLICK_IN_ORDER_NEXT;
    public static int CLICK_IN_ORDER_NEXT_TO_NEXT;

    @EventHandler
    public void init(FMLInitializationEvent event) {
        MinecraftForge.EVENT_BUS.register(this);
        MinecraftForge.EVENT_BUS.register(new PacketHandler());

        ConfigHandler.reloadConfig();

        // For golden enchants
        t6Enchants.put("9Angler VI", "6Angler VI");
        t6Enchants.put("9Bane of Arthropods VI", "6Bane of Arthropods VI");
        t6Enchants.put("9Caster VI", "6Caster VI");
        t6Enchants.put("9Compact X", "6Compact X");
        t6Enchants.put("9Critical VI", "6Critical VI");
        t6Enchants.put("9Dragon Hunter V", "6Dragon Hunter V");
        t6Enchants.put("9Efficiency VI", "6Efficiency VI");
        t6Enchants.put("9Ender Slayer VI", "6Ender Slayer VI");
        t6Enchants.put("9Experience IV", "6Experience IV");
        t6Enchants.put("9Expertise X", "6Expertise X");
        t6Enchants.put("9Feather Falling X", "6Feather Falling X");
        t6Enchants.put("9Frail VI", "6Frail VI");
        t6Enchants.put("9Giant Killer VI", "6Giant Killer VI");
        t6Enchants.put("9Growth VI", "6Growth VI");
        t6Enchants.put("9Infinite Quiver X", "6Infinite Quiver X");
        t6Enchants.put("9Lethality VI", "6Lethality VI");
        t6Enchants.put("9Life Steal IV", "6Life Steal IV");
        t6Enchants.put("9Looting IV", "6Looting IV");
        t6Enchants.put("9Luck VI", "6Luck VI");
        t6Enchants.put("9Luck of the Sea VI", "6Luck of the Sea VI");
        t6Enchants.put("9Lure VI", "6Lure VI");
        t6Enchants.put("9Magnet VI", "6Magnet VI");
        t6Enchants.put("9Overload V", "6Overload V");
        t6Enchants.put("9Power VI", "6Power VI");
        t6Enchants.put("9Protection VI", "6Protection VI");
        t6Enchants.put("9Scavenger IV", "6Scavenger IV");
        t6Enchants.put("9Scavenger V", "6Scavenger V");
        t6Enchants.put("9Sharpness VI", "6Sharpness VI");
        t6Enchants.put("9Smite VI", "6Smite VI");
        t6Enchants.put("9Spiked Hook VI", "6Spiked Hook VI");
        t6Enchants.put("9Thunderlord VI", "6Thunderlord VI");
        t6Enchants.put("9Vampirism VI", "6Vampirism VI");

        triviaSolutions.put("What is the status of The Watcher?", new String[]{"Stalker"});
        triviaSolutions.put("What is the status of Bonzo?", new String[]{"New Necromancer"});
        triviaSolutions.put("What is the status of Scarf?", new String[]{"Apprentice Necromancer"});
        triviaSolutions.put("What is the status of The Professor?", new String[]{"Professor"});
        triviaSolutions.put("What is the status of Thorn?", new String[]{"Shaman Necromancer"});
        triviaSolutions.put("What is the status of Livid?", new String[]{"Master Necromancer"});
        triviaSolutions.put("What is the status of Sadan?", new String[]{"Necromancer Lord"});
        triviaSolutions.put("What is the status of Maxor?", new String[]{"Young Wither"});
        triviaSolutions.put("What is the status of Goldor?", new String[]{"Wither Soldier"});
        triviaSolutions.put("What is the status of Storm?", new String[]{"Elementalist"});
        triviaSolutions.put("What is the status of Necron?", new String[]{"Wither Lord"});
        triviaSolutions.put("How many total Fairy Souls are there?", new String[]{"220 Fairy Souls"});
        triviaSolutions.put("How many Fairy Souls are there in Spider's Den?", new String[]{"17 Fairy Souls"});
        triviaSolutions.put("How many Fairy Souls are there in The End?", new String[]{"12 Fairy Souls"});
        triviaSolutions.put("How many Fairy Souls are there in The Barn?", new String[]{"7 Fairy Souls"});
        triviaSolutions.put("How many Fairy Souls are there in Mushroom Desert?", new String[]{"8 Fairy Souls"});
        triviaSolutions.put("How many Fairy Souls are there in Blazing Fortress?", new String[]{"19 Fairy Souls"});
        triviaSolutions.put("How many Fairy Souls are there in The Park?", new String[]{"11 Fairy Souls"});
        triviaSolutions.put("How many Fairy Souls are there in Jerry's Workshop?", new String[]{"5 Fairy Souls"});
        triviaSolutions.put("How many Fairy Souls are there in Hub?", new String[]{"79 Fairy Souls"});
        triviaSolutions.put("How many Fairy Souls are there in The Hub?", new String[]{"79 Fairy Souls"});
        triviaSolutions.put("How many Fairy Souls are there in Deep Caverns?", new String[]{"21 Fairy Souls"});
        triviaSolutions.put("How many Fairy Souls are there in Gold Mine?", new String[]{"12 Fairy Souls"});
        triviaSolutions.put("How many Fairy Souls are there in Dungeon Hub?", new String[]{"7 Fairy Souls"});
        triviaSolutions.put("Which brother is on the Spider's Den?", new String[]{"Rick"});
        triviaSolutions.put("What is the name of Rick's brother?", new String[]{"Pat"});
        triviaSolutions.put("What is the name of the Painter in the Hub?", new String[]{"Marco"});
        triviaSolutions.put("What is the name of the person that upgrades pets?", new String[]{"Kat"});
        triviaSolutions.put("What is the name of the lady of the Nether?", new String[]{"Elle"});
        triviaSolutions.put("Which villager in the Village gives you a Rogue Sword?", new String[]{"Jamie"});
        triviaSolutions.put("How many unique minions are there?", new String[]{"53 Minions"});
        triviaSolutions.put("Which of these enemies does not spawn in the Spider's Den?", new String[]{"Zombie Spider", "Cave Spider", "Wither Skeleton",
                "Dashing Spooder", "Broodfather", "Night Spider"});
        triviaSolutions.put("Which of these monsters only spawns at night?", new String[]{"Zombie Villager", "Ghast"});
        triviaSolutions.put("Which of these is not a dragon in The End?", new String[]{"Zoomer Dragon", "Weak Dragon", "Stonk Dragon", "Holy Dragon", "Boomer Dragon",
                "Booger Dragon", "Older Dragon", "Elder Dragon", "Stable Dragon", "Professor Dragon"});

        String patternString = "(" + String.join("|", t6Enchants.keySet()) + ")";
        t6EnchantPattern = Pattern.compile(patternString);

        keyBindings[0] = new KeyBinding("Open Maddox Menu", Keyboard.KEY_M, "Danker's Skyblock Mod");
        keyBindings[1] = new KeyBinding("Regular Ability", Keyboard.KEY_NUMPAD4, "Danker's Skyblock Mod");
        keyBindings[2] = new KeyBinding("Start/Stop Skill Tracker", Keyboard.KEY_NUMPAD5, "Danker's Skyblock Mod");

        for (KeyBinding keyBinding : keyBindings) {
            ClientRegistry.registerKeyBinding(keyBinding);
        }
    }

    @EventHandler
    public void preInit(final FMLPreInitializationEvent event) {
    	ClientCommandHandler.instance.registerCommand(new ToggleCommand());
    	ClientCommandHandler.instance.registerCommand(new SetkeyCommand());
    	ClientCommandHandler.instance.registerCommand(new GetkeyCommand());
    	ClientCommandHandler.instance.registerCommand(new LootCommand());
    	ClientCommandHandler.instance.registerCommand(new ReloadConfigCommand());
    	ClientCommandHandler.instance.registerCommand(new DisplayCommand());
    	ClientCommandHandler.instance.registerCommand(new MoveCommand());
    	ClientCommandHandler.instance.registerCommand(new SlayerCommand());
    	ClientCommandHandler.instance.registerCommand(new SkillsCommand());
    	ClientCommandHandler.instance.registerCommand(new GuildOfCommand());
    	ClientCommandHandler.instance.registerCommand(new DHelpCommand());
    	ClientCommandHandler.instance.registerCommand(new PetsCommand());
    	ClientCommandHandler.instance.registerCommand(new BankCommand());
    	ClientCommandHandler.instance.registerCommand(new ArmourCommand());
    	ClientCommandHandler.instance.registerCommand(new ImportFishingCommand());
    	ClientCommandHandler.instance.registerCommand(new ResetLootCommand());
    	ClientCommandHandler.instance.registerCommand(new ScaleCommand());
    	ClientCommandHandler.instance.registerCommand(new SkyblockPlayersCommand());
    	ClientCommandHandler.instance.registerCommand(new BlockSlayerCommand());
    	ClientCommandHandler.instance.registerCommand(new DungeonsCommand());
    	ClientCommandHandler.instance.registerCommand(new LobbySkillsCommand());
    	ClientCommandHandler.instance.registerCommand(new DankerGuiCommand());
		ClientCommandHandler.instance.registerCommand(new SkillTrackerCommand());
		ClientCommandHandler.instance.registerCommand(new FairySoulsCommand());
    }

    @EventHandler
    public void postInit(final FMLPostInitializationEvent event) {
		Package[] packages = Package.getPackages();
		for(Package p : packages){
			if(p.getName().startsWith("com.spiderfrog.gadgets") || p.getName().startsWith("com.spiderfrog.oldanimations")){
				usingOAM = true;
			}
		}
		System.out.println("OAM detection: " + usingOAM);

    	usingLabymod = Loader.isModLoaded("labymod");
    	System.out.println("LabyMod detection: " + usingLabymod);
    	
        if(!ClientCommandHandler.instance.getCommands().containsKey("reparty")) {
            ClientCommandHandler.instance.registerCommand(new RepartyCommand());
        } else if (ConfigHandler.getBoolean("commands", "reparty")) {
            for(Map.Entry<String, ICommand> entry : ClientCommandHandler.instance.getCommands().entrySet()) {
                if (entry.getKey().equals("reparty") || entry.getKey().equals("rp")) {
                    entry.setValue(new RepartyCommand());
                }
            }
        }

    }

    @SubscribeEvent
	public void onGuiOpenEvent(GuiOpenEvent event){
		if(event.gui instanceof GuiMainMenu && usingOAM && !OAMWarning){
			if(!(event.gui instanceof WarningGui)){
				event.gui = new WarningGuiRedirect(new WarningGui());
				OAMWarning = true;
			}
		}
	}

    // Update checker
    @SubscribeEvent
    public void onJoin(EntityJoinWorldEvent event) {

        if (firstLaunch) {
            firstLaunch = false;
            ConfigHandler.writeBooleanConfig("misc", "firstLaunch", false);

            IChatComponent chatComponent = new ChatComponentText(
                    EnumChatFormatting.GOLD + "Thank you for downloading Danker's Skyblock Mod.\n" +
                         "To get started, run the command " + EnumChatFormatting.GOLD + "/dsm" + EnumChatFormatting.RESET + " to view all the mod features."
            );
            chatComponent.setChatStyle(chatComponent.getChatStyle().setChatHoverEvent(new HoverEvent(HoverEvent.Action.SHOW_TEXT, new ChatComponentText("Click to open the DSM menu."))).setChatClickEvent(new ClickEvent(Action.RUN_COMMAND, "/dsm")));

            new Thread(() -> {
                while (true) {
                    if (Minecraft.getMinecraft().thePlayer == null) {
                        try {
                            Thread.sleep(500);
                        } catch (InterruptedException e) {
                            e.printStackTrace();
                        }
                        continue;
                    }
                    try {
                        Thread.sleep(2000);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                    Minecraft.getMinecraft().thePlayer.addChatMessage(chatComponent);
                    break;
                }
            }).start();
        }

        if (!updateChecked) {
            updateChecked = true;

            // MULTI THREAD DRIFTING
            new Thread(() -> {
                EntityPlayer player = Minecraft.getMinecraft().thePlayer;

                System.out.println("Checking for updates...");
                JsonObject latestRelease = APIHandler.getResponse("https://api.github.com/repos/bowser0000/SkyblockMod/releases/latest");

                String latestTag = latestRelease.get("tag_name").getAsString();
                DefaultArtifactVersion currentVersion = new DefaultArtifactVersion(VERSION);
                DefaultArtifactVersion latestVersion = new DefaultArtifactVersion(latestTag.substring(1));

                if (currentVersion.compareTo(latestVersion) < 0) {
                    String releaseURL = latestRelease.get("html_url").getAsString();

                    ChatComponentText update = new ChatComponentText(EnumChatFormatting.GREEN + "" + EnumChatFormatting.BOLD + "  [UPDATE]  ");
                    update.setChatStyle(update.getChatStyle().setChatClickEvent(new ClickEvent(Action.OPEN_URL, releaseURL)));

                    try {
                        Thread.sleep(2000);
                    } catch (InterruptedException ex) {
                        ex.printStackTrace();
                    }
                    player.addChatMessage(new ChatComponentText(ERROR_COLOUR + MODID + " is outdated. Please update to " + latestTag + ".\n").appendSibling(update));
                }
            }).start();
        }
    }

    @SubscribeEvent
    public void onWorldChange(WorldEvent.Load event) {
        riddleChest = null;
        foundLivid = false;
        livid = null;
        lowestBlaze = null;
        highestBlaze = null;
        nextBonzoUse = 0;
    }

    // It randomly broke, so I had to make it the highest priority
    @SubscribeEvent(priority = EventPriority.HIGHEST)
    public void onChat(ClientChatReceivedEvent event) {
    	String message = StringUtils.stripControlCodes(event.message.getUnformattedText());
        
        if (message.startsWith("Your new API key is ") && Utils.isOnHypixel()) {
            String apiKey = event.message.getSiblings().get(0).getChatStyle().getChatClickEvent().getValue();
            ConfigHandler.writeStringConfig("api", "APIKey", apiKey);
            Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText(DankersSkyblockMod.MAIN_COLOUR + "Set API key to " + DankersSkyblockMod.SECONDARY_COLOUR + apiKey));
        }

		// Reparty command
        // Getting party
        if (RepartyCommand.gettingParty) {
            if (message.contains("-----")) {
                switch(RepartyCommand.Delimiter) {
                    case 0:
                        System.out.println("Get Party Delimiter Cancelled");
                        RepartyCommand.Delimiter++;
                        event.setCanceled(true);
                        return;
                    case 1:
                        System.out.println("Done querying party");
                        RepartyCommand.gettingParty = false;
                        RepartyCommand.Delimiter = 0;
                        event.setCanceled(true);
                        return;
                }
            }else if (message.startsWith("Party M") || message.startsWith("Party Leader")){
                EntityPlayerSP player = Minecraft.getMinecraft().thePlayer;

                Pattern party_start_pattern = Pattern.compile("^Party Members \\((\\d+)\\)$");
                Pattern leader_pattern = Pattern.compile("^Party Leader: (?:\\[.+?] )?(\\w+) ●$");
                Pattern members_pattern = Pattern.compile(" (?:\\[.+?] )?(\\w+) ●");
                Matcher party_start = party_start_pattern.matcher(message);
                Matcher leader = leader_pattern.matcher(message);
                Matcher members = members_pattern.matcher(message);

                if (party_start.matches() && Integer.parseInt(party_start.group(1)) == 1) {
                    player.addChatMessage(new ChatComponentText(DankersSkyblockMod.ERROR_COLOUR + "You cannot reparty yourself."));
                    RepartyCommand.partyThread.interrupt();
                } else if (leader.matches() && !(leader.group(1).equals(player.getName()))) {
                    player.addChatMessage(new ChatComponentText(DankersSkyblockMod.ERROR_COLOUR + "You are not party leader."));
                    RepartyCommand.partyThread.interrupt();
                } else {
                    while (members.find()) {
                        String partyMember = members.group(1);
                        if (!partyMember.equals(player.getName())) {
                            RepartyCommand.party.add(partyMember);
                            System.out.println(partyMember);
                        }
                    }
                }
                event.setCanceled(true);
                return;
            }
        }
        // Disbanding party
        if (RepartyCommand.disbanding) {
            if (message.contains("-----")) {
                switch (RepartyCommand.Delimiter) {
                    case 0:
                        System.out.println("Disband Delimiter Cancelled");
                        RepartyCommand.Delimiter++;
                        event.setCanceled(true);
                        return;
                    case 1:
                        System.out.println("Done disbanding");
                        RepartyCommand.disbanding = false;
                        RepartyCommand.Delimiter = 0;
                        event.setCanceled(true);
                        return;
                }
            } else if (message.endsWith("has disbanded the party!")) {
                event.setCanceled(true);
                return;
            }
        }
        // Inviting
        if (RepartyCommand.inviting) {
            if (message.contains("-----")) {
                switch (RepartyCommand.Delimiter) {
                    case 1:
                        event.setCanceled(true);
                        RepartyCommand.Delimiter = 0;
                        System.out.println("Player Invited!");
                        RepartyCommand.inviting = false;
                        return;
                    case 0:
                        RepartyCommand.Delimiter++;
                        event.setCanceled(true);
                        return;
                }
            } else if (message.endsWith(" to the party! They have 60 seconds to accept.")) {
                Pattern invitePattern = Pattern.compile("(?:(?:\\[.+?] )?(?:\\w+) invited )(?:\\[.+?] )?(\\w+)");
                Matcher invitee = invitePattern.matcher(message);
                if (invitee.find()) {
                    System.out.println("" + invitee.group(1) + ": " + RepartyCommand.repartyFailList.remove(invitee.group(1)));
                }
                event.setCanceled(true);
                return;
            } else if (message.contains("Couldn't find a player") || message.contains("You cannot invite that player")) {
                event.setCanceled(true);
                return;
            }
        }
        // Fail Inviting
        if (RepartyCommand.failInviting) {
            if (message.contains("-----")) {
                switch (RepartyCommand.Delimiter) {
                    case 1:
                        event.setCanceled(true);
                        RepartyCommand.Delimiter = 0;
                        System.out.println("Player Invited!");
                        RepartyCommand.inviting = false;
                        return;
                    case 0:
                        RepartyCommand.Delimiter++;
                        event.setCanceled(true);
                        return;
                }
            } else if (message.endsWith(" to the party! They have 60 seconds to accept.")) {
                Pattern invitePattern = Pattern.compile("(?:(?:\\[.+?] )?(?:\\w+) invited )(?:\\[.+?] )?(\\w+)");
                Matcher invitee = invitePattern.matcher(message);
                if (invitee.find()) {
                    System.out.println("" + invitee.group(1) + ": " + RepartyCommand.repartyFailList.remove(invitee.group(1)));
                }
                event.setCanceled(true);
                return;
            } else if (message.contains("Couldn't find a player") || message.contains("You cannot invite that player")) {
                event.setCanceled(true);
                return;
            }
        }

    	if (!Utils.inSkyblock) return;
    	
    	// Action Bar
    	if (event.type == 2) {
			EntityPlayerSP player = Minecraft.getMinecraft().thePlayer;
			String[] actionBarSections = event.message.getUnformattedText().split(" {3,}");
			
			for (String section : actionBarSections) {
    			if (section.contains("+") && section.contains("/") && section.contains("(")) {
    				if (!section.contains("Runecrafting") && !section.contains("Carpentry")) {
						if (ToggleCommand.autoSkillTrackerToggled && System.currentTimeMillis() / 1000 - timeSinceGained <= 2) {
							if (skillStopwatch.isStarted() && skillStopwatch.isSuspended()) {
								skillStopwatch.resume();
							} else if (!skillStopwatch.isStarted()) {
								skillStopwatch.start();
							}
						}
						timeSinceGained = System.currentTimeMillis() / 1000;

                        int limit = section.contains("Farming") || section.contains("Enchanting") || section.contains("Mining") ? 60 : 50;
						double currentXP = Double.parseDouble(section.substring(section.indexOf("(") + 1, section.indexOf("/")).replace(",", ""));
    					int xpToLevelUp = Integer.parseInt(section.substring(section.indexOf("/") + 1, section.indexOf(")")).replaceAll(",", ""));
    					xpLeft = xpToLevelUp - currentXP;
    					int previousXP = Utils.getPastXpEarned(xpToLevelUp, limit);
						double totalXP = currentXP + previousXP;
						
    					String skill = section.substring(section.indexOf(" ") + 1, section.lastIndexOf(" "));
    					switch (skill) {
	    					case "Farming":
	    						lastSkill = "Farming";
	    						if (farmingXP != 0) {
	    							if (skillStopwatch.isStarted() && !skillStopwatch.isSuspended()) farmingXPGained += totalXP - farmingXP;
	    						}
								farmingXP = totalXP;
	    						break;
	    					case "Mining":
	    						lastSkill = "Mining";
	    						if (miningXP != 0) {
	    							if (skillStopwatch.isStarted() && !skillStopwatch.isSuspended()) miningXPGained += totalXP - miningXP;
	    						}
								miningXP = totalXP;
	    						break;
	    					case "Combat":
	    						lastSkill = "Combat";
	    						if (combatXP != 0) {
	    							if (skillStopwatch.isStarted() && !skillStopwatch.isSuspended()) combatXPGained += totalXP - combatXP;
	    						}
								combatXP = totalXP;
	    						break;
	    					case "Foraging":
	    						lastSkill = "Foraging";
	    						if (foragingXP != 0) {
	    							if (skillStopwatch.isStarted() && !skillStopwatch.isSuspended()) foragingXPGained += totalXP - foragingXP;
	    						}
								foragingXP = totalXP;
	    						break;
	    					case "Fishing":
	    						lastSkill = "Fishing";
	    						if (fishingXP != 0) {
	    							if (skillStopwatch.isStarted() && !skillStopwatch.isSuspended()) fishingXPGained += totalXP - fishingXP;
	    						}
								fishingXP = totalXP;
	    						break;
	    					case "Enchanting":
	    						lastSkill = "Enchanting";
	    						if (enchantingXP != 0) {
	    							if (skillStopwatch.isStarted() && !skillStopwatch.isSuspended()) enchantingXPGained += totalXP - enchantingXP;
	    						}
								enchantingXP = totalXP;
	    						break;
	    					case "Alchemy":
	    						lastSkill = "Alchemy";
	    						if (alchemyXP != 0) {
	    							if (skillStopwatch.isStarted() && !skillStopwatch.isSuspended()) alchemyXPGained += totalXP - alchemyXP;
	    						}
								alchemyXP = totalXP;
	    						break;
	    					default:
	    						System.err.println("Unknown skill.");
    					}
    				}
    				
    				if (ToggleCommand.skill50DisplayToggled && !section.contains("Runecrafting")) {
    					String xpGained = section.substring(section.indexOf("+"), section.indexOf("(") - 1);
    					double currentXp = Double.parseDouble(section.substring(section.indexOf("(") + 1, section.indexOf("/")).replace(",", ""));
    					int limit;
    					int totalXp;
                        if (section.contains("Farming") || section.contains("Enchanting") || section.contains("Mining")) {
    						limit = 60;
    						totalXp = 111672425;
    					} else {
    						limit = 50;
    						totalXp = 55172425;
    					}
    					int previousXp = Utils.getPastXpEarned(Integer.parseInt(section.substring(section.indexOf("/") + 1, section.indexOf(")")).replaceAll(",", "")), limit);
    					double percentage = Math.floor(((currentXp + previousXp) / totalXp) * 10000D) / 100D;
    					
    					NumberFormat nf = NumberFormat.getNumberInstance(Locale.US);
    					skillTimer = SKILL_TIME;
    					showSkill = true;
    					skillText = SKILL_50_COLOUR + xpGained + " (" + nf.format(currentXp + previousXp) + "/" + nf.format(totalXp) + ") " + percentage + "%";
    				}
    			}
    		}
    		return;
    	}
        
        if (ToggleCommand.bonzoTimerToggled && Utils.inDungeons && message.contains("Bonzo's Mask") && message.contains("saved your life!")) {
            double usedTime = System.currentTimeMillis() / 1000;
            Minecraft mc = Minecraft.getMinecraft();
            EntityPlayerSP player = mc.thePlayer;
            ItemStack bonzoMask = player.getCurrentArmor(3);
            if (bonzoMask != null && bonzoMask.getItem() == Items.skull) {
                int cooldownSeconds = 0;
                for (String line : Utils.getItemLore(bonzoMask)) {
                    String stripped = StringUtils.stripControlCodes(line);
                    if (stripped.startsWith("Cooldown: "))
                        cooldownSeconds = Integer.parseInt(stripped.replaceAll("[^\\d]", ""));
                }
                System.out.println("Parsed Bonzo Mask Cooldown: " + cooldownSeconds);
                if (cooldownSeconds > 0)
                    nextBonzoUse = usedTime + cooldownSeconds;
            }
        }

        // Dungeon chat spoken by an NPC, containing :
        if (ToggleCommand.threeManToggled && Utils.inDungeons && message.contains("[NPC]")) {
            for (String solution : riddleSolutions) {
                if (message.contains(solution)) {
                    Minecraft mc = Minecraft.getMinecraft();
                    String npcName = message.substring(message.indexOf("]") + 2, message.indexOf(":"));
                    mc.thePlayer.addChatMessage(new ChatComponentText(ANSWER_COLOUR + EnumChatFormatting.BOLD + StringUtils.stripControlCodes(npcName) + MAIN_COLOUR + " has the blessing."));
                    if (riddleChest == null) {
                        List<Entity> entities = mc.theWorld.getLoadedEntityList();
                        for (Entity entity : entities) {
                            if (entity == null || !entity.hasCustomName()) continue;
                            if (entity.getCustomNameTag().contains(npcName)) {
                                BlockPos npcLocation = new BlockPos(entity.posX, 69, entity.posZ);
                                if (mc.theWorld.getBlockState(npcLocation.north()).getBlock() == Blocks.chest) {
                                    riddleChest = npcLocation.north();
                                } else if (mc.theWorld.getBlockState(npcLocation.east()).getBlock() == Blocks.chest) {
                                    riddleChest = npcLocation.east();
                                } else if (mc.theWorld.getBlockState(npcLocation.south()).getBlock() == Blocks.chest) {
                                    riddleChest = npcLocation.south();
                                } else if (mc.theWorld.getBlockState(npcLocation.west()).getBlock() == Blocks.chest) {
                                    riddleChest = npcLocation.west();
                                } else {
                                    System.out.print("Could not find correct riddle chest.");
                                }
                                break;
                            }
                        }
                    }
                    break;
                }
            }
        }

        if (ToggleCommand.necronNotificationsToggled && Utils.inDungeons && message.contains("[BOSS] Necron:")) {
            Minecraft mc = Minecraft.getMinecraft();
            World world = mc.theWorld;
            if (message.contains("You tricked me!") || message.contains("That beam, it hurts! IT HURTS!!")) {
                Utils.createTitle(EnumChatFormatting.RED + "NECRON STUCK!", 2);
            } else if (message.contains("STOP USING MY FACTORY AGAINST ME!") || message.contains("OOF") || message.contains("ANOTHER TRAP!! YOUR TRICKS ARE FUTILE!") || message.contains("SERIOUSLY? AGAIN?!") || message.contains("STOP!!!!!")) {
                List<EntityArmorStand> necronLabels = world.getEntities(EntityArmorStand.class, (entity -> {
                    if (!entity.hasCustomName()) return false;
                    if (!entity.getCustomNameTag().contains("Necron")) return false;
                    return true;
                }));
                if (necronLabels.size() == 0) {
                    Utils.createTitle(EnumChatFormatting.WHITE + "NECRON STUNNED!", 2);
                } else {
                    EntityArmorStand necron = necronLabels.get(0);
                    double x = necron.posX;
                    double z = necron.posZ;

                    BlockPos blockPos = new BlockPos(x, 168, z);

                    IBlockState blockState = world.getBlockState(blockPos);
                    Block block = blockState.getBlock();

                    if (block != Blocks.stained_hardened_clay) {
                        Utils.createTitle(EnumChatFormatting.WHITE + "NECRON STUNNED!", 2);
                    } else {
                        switch (block.getDamageValue(world, blockPos)) {
                            case 4:
                                Utils.createTitle(EnumChatFormatting.YELLOW + "YELLOW PILLAR!", 2);
                                break;
                            case 5:
                                Utils.createTitle(EnumChatFormatting.DARK_GREEN + "GREEN PILLAR!", 2);
                                break;
                            case 11:
                                Utils.createTitle(EnumChatFormatting.DARK_PURPLE + "PURPLE PILLAR!", 2);
                                break;
                            default:
                                Utils.createTitle(EnumChatFormatting.WHITE + "NECRON STUNNED!", 2);
                        }
                    }

                }
            } else if (message.contains("I'VE HAD ENOUGH! YOU'RE NOT HITTING ME WITH ANY MORE PILLARS!")) {
                Utils.createTitle(EnumChatFormatting.RED + "RED PILLAR!", 2);
            } else if (message.contains("ARGH!")) {
                Utils.createTitle(EnumChatFormatting.RED + "EXPLOSION OVER!", 2);
            }
        }

        if (message.contains("[BOSS] The Watcher: You have proven yourself. You may pass.")) {
            watcherClearTime = System.currentTimeMillis() / 1000;
        }
        if (message.contains("[BOSS] The Watcher: That will be enough for now.")) {
            if (ToggleCommand.watcherReadyToggled) Utils.createTitle(EnumChatFormatting.RED + "WATCHER READY", 2);
        }
        if (message.contains("PUZZLE FAIL! ") || message.contains("chose the wrong answer! I shall never forget this moment")) {
            puzzleFails++;
        }

        if (message.contains(":")) return;

        // Spirit Sceptre
        if (!ToggleCommand.sceptreMessages && message.contains("Your Spirit Sceptre hit ")) {
            event.setCanceled(true);
            return;
        }
        // Midas Staff
        if (!ToggleCommand.midasStaffMessages && message.contains("Your Molten Wave hit ")) {
            event.setCanceled(true);
            return;
        }
        // Heals
        if (!ToggleCommand.healMessages && message.contains(" health!") && (message.contains("You healed ") || message.contains(" healed you for "))) {
            event.setCanceled(true);
            return;
        }
        // Ability Cooldown
        if (!ToggleCommand.cooldownMessages && message.contains("This ability is on cooldown for ")) {
          event.setCanceled(true);
          return;
        }
        // Out of mana messages
        if (!ToggleCommand.manaMessages && message.contains("You do not have enough mana to do this!")) {
          event.setCanceled(true);
          return;
        }
        // Implosion
        if (!ToggleCommand.implosionMessages) {
            if (message.contains("Your Implosion hit ") || message.contains("There are blocks in the way")) {
                event.setCanceled(true);
                return;
            }
        }
  
        if (ToggleCommand.oruoToggled && Utils.inDungeons) {
        	if (message.contains("What SkyBlock year is it?")) {
                double currentTime = System.currentTimeMillis() /1000L;

                double diff = Math.floor(currentTime - 1560276000);

                int year = (int) (diff / 446400 + 1);
                triviaAnswers = new String[]{"Year " + year};
            } else {
                for (String question : triviaSolutions.keySet()) {
                    if (message.contains(question)) {
                        triviaAnswers = triviaSolutions.get(question);
                        break;
                    }
                }
            }
        	
        	// Set wrong answers to red and remove click events
        	if (triviaAnswers != null && (message.contains("ⓐ") || message.contains("ⓑ") || message.contains("ⓒ"))) {
        		boolean isSolution = false;
        		for (String solution : triviaAnswers) {
        			if (message.contains(solution)) {
        				isSolution = true;
        				break;
					}
        		}
        		if (!isSolution) {
        			char letter = message.charAt(5);
        			String option = message.substring(6);
        			event.message = new ChatComponentText("     " + EnumChatFormatting.GOLD + letter + TRIVIA_WRONG_ANSWER_COLOUR + option);
        			return;
        		}
        	}
        }
    	
		if (ToggleCommand.gpartyToggled) {
			if (message.contains(" has invited all members of ")) {
				try {
					final SystemTray tray = SystemTray.getSystemTray();
					final Image image = Toolkit.getDefaultToolkit().createImage("icon.png");
					final TrayIcon trayIcon = new TrayIcon(image, "Guild Party Notifier");
					trayIcon.setImageAutoSize(true);
					trayIcon.setToolTip("Guild Party Notifier");
					tray.add(trayIcon);
					trayIcon.displayMessage("Guild Party", message, TrayIcon.MessageType.INFO);
					tray.remove(trayIcon);
				} catch (Exception ex) {
					ex.printStackTrace();
				}
			}
		}

		if (ToggleCommand.golemAlertToggled) {
			if (message.contains("The ground begins to shake as an Endstone Protector rises from below!")) {
				Utils.createTitle(EnumChatFormatting.RED + "GOLEM SPAWNING!", 3);
			}
		}
		
		if (message.contains("Yum! You gain +") && message.contains(" for 48 hours!")) {
			cakeTime = System.currentTimeMillis() / 1000 + 172800; // Add 48 hours
			ConfigHandler.writeDoubleConfig("misc", "cakeTime", cakeTime);
		}
		
		boolean wolfRNG = false;
		boolean spiderRNG = false;
		boolean zombieRNG = false;
		// T6 books
		if (message.contains("VERY RARE DROP!  (Enchanted Book)") || message.contains("CRAZY RARE DROP!  (Enchanted Book)")) {
			// Loop through scoreboard to see what boss you're doing
			List<String> scoreboard = ScoreboardHandler.getSidebarLines();
			for (String s : scoreboard) {
				String sCleaned = ScoreboardHandler.cleanSB(s);
				if (sCleaned.contains("Sven Packmaster")) {
					LootCommand.wolfBooks++;
					ConfigHandler.writeIntConfig("wolf", "book", LootCommand.wolfBooks);
				} else if (sCleaned.contains("Tarantula Broodfather")) {
					LootCommand.spiderBooks++;
					ConfigHandler.writeIntConfig("spider", "book", LootCommand.spiderBooks);
				} else if (sCleaned.contains("Revenant Horror")) {
					LootCommand.zombieBooks++;
					ConfigHandler.writeIntConfig("zombie", "book", LootCommand.zombieBooks);
				}
			}
		}

		// Wolf
		if (message.contains("Talk to Maddox to claim your Wolf Slayer XP!")) {
			LootCommand.wolfSvens++;
			LootCommand.wolfSvensSession++;
			if (LootCommand.wolfBosses != -1) {
				LootCommand.wolfBosses++;
			}
			if (LootCommand.wolfBossesSession != -1) {
				LootCommand.wolfBossesSession++;
			}
			ConfigHandler.writeIntConfig("wolf", "svens", LootCommand.wolfSvens);
			ConfigHandler.writeIntConfig("wolf", "bossRNG", LootCommand.wolfBosses);
		} else if (message.contains("RARE DROP! (Hamster Wheel)")) {
			LootCommand.wolfWheelsDrops++;
			LootCommand.wolfWheelsDropsSession++;
			ConfigHandler.writeIntConfig("wolf", "wheelDrops", LootCommand.wolfWheelsDrops);
		} else if (message.contains("VERY RARE DROP!  (") && message.contains(" Spirit Rune I)")) { // Removing the unicode here *should* fix rune drops not counting
			LootCommand.wolfSpirits++;
			LootCommand.wolfSpiritsSession++;
			ConfigHandler.writeIntConfig("wolf", "spirit", LootCommand.wolfSpirits);
		} else if (message.contains("CRAZY RARE DROP!  (Red Claw Egg)")) {
			wolfRNG = true;
			LootCommand.wolfEggs++;
			LootCommand.wolfEggsSession++;
			ConfigHandler.writeIntConfig("wolf", "egg", LootCommand.wolfEggs);
			if (ToggleCommand.rngesusAlerts) Utils.createTitle(EnumChatFormatting.DARK_RED + "RED CLAW EGG!", 3);
		} else if (message.contains("CRAZY RARE DROP!  (") && message.contains(" Couture Rune I)")) {
			wolfRNG = true;
			LootCommand.wolfCoutures++;
			LootCommand.wolfCouturesSession++;
			ConfigHandler.writeIntConfig("wolf", "couture", LootCommand.wolfCoutures);
			if (ToggleCommand.rngesusAlerts) Utils.createTitle(EnumChatFormatting.GOLD + "COUTURE RUNE!", 3);
		} else if (message.contains("CRAZY RARE DROP!  (Grizzly Bait)") || message.contains("CRAZY RARE DROP! (Rename Me)")) { // How did Skyblock devs even manage to make this item Rename Me
			wolfRNG = true;
			LootCommand.wolfBaits++;
			LootCommand.wolfBaitsSession++;
			ConfigHandler.writeIntConfig("wolf", "bait", LootCommand.wolfBaits);
			if (ToggleCommand.rngesusAlerts) Utils.createTitle(EnumChatFormatting.AQUA + "GRIZZLY BAIT!", 3);
		} else if (message.contains("CRAZY RARE DROP!  (Overflux Capacitor)")) {
			wolfRNG = true;
			LootCommand.wolfFluxes++;
			LootCommand.wolfFluxesSession++;
			ConfigHandler.writeIntConfig("wolf", "flux", LootCommand.wolfFluxes);
			if (ToggleCommand.rngesusAlerts) Utils.createTitle(EnumChatFormatting.DARK_PURPLE + "OVERFLUX CAPACITOR!", 5);
		} else if (message.contains("Talk to Maddox to claim your Spider Slayer XP!")) { // Spider
			LootCommand.spiderTarantulas++;
			LootCommand.spiderTarantulasSession++;
			if (LootCommand.spiderBosses != -1) {
				LootCommand.spiderBosses++;
			}
			if (LootCommand.spiderBossesSession != -1) {
				LootCommand.spiderBossesSession++;
			}
			ConfigHandler.writeIntConfig("spider", "tarantulas", LootCommand.spiderTarantulas);
			ConfigHandler.writeIntConfig("spider", "bossRNG", LootCommand.spiderBosses);
		} else if (message.contains("RARE DROP! (Toxic Arrow Poison)")) {
			LootCommand.spiderTAPDrops++;
			LootCommand.spiderTAPDropsSession++;
			ConfigHandler.writeIntConfig("spider", "tapDrops", LootCommand.spiderTAPDrops);
		} else if (message.contains("VERY RARE DROP!  (") && message.contains(" Bite Rune I)")) {
			LootCommand.spiderBites++;
			LootCommand.spiderBitesSession++;
			ConfigHandler.writeIntConfig("spider", "bite", LootCommand.spiderBites);
		} else if (message.contains("VERY RARE DROP!  (Spider Catalyst)")) {
			LootCommand.spiderCatalysts++;
			LootCommand.spiderCatalystsSession++;
			ConfigHandler.writeIntConfig("spider", "catalyst", LootCommand.spiderCatalysts);
		} else if (message.contains("CRAZY RARE DROP!  (Fly Swatter)")) {
			spiderRNG = true;
			LootCommand.spiderSwatters++;
			LootCommand.spiderSwattersSession++;
			ConfigHandler.writeIntConfig("spider", "swatter", LootCommand.spiderSwatters);
			if (ToggleCommand.rngesusAlerts) Utils.createTitle(EnumChatFormatting.LIGHT_PURPLE + "FLY SWATTER!", 3);
		} else if (message.contains("CRAZY RARE DROP!  (Tarantula Talisman")) {
			spiderRNG = true;
			LootCommand.spiderTalismans++;
			LootCommand.spiderTalismansSession++;
			ConfigHandler.writeIntConfig("spider", "talisman", LootCommand.spiderTalismans);
			if (ToggleCommand.rngesusAlerts) Utils.createTitle(EnumChatFormatting.DARK_PURPLE + "TARANTULA TALISMAN!", 3);
		} else if (message.contains("CRAZY RARE DROP!  (Digested Mosquito)")) {
			spiderRNG = true;
			LootCommand.spiderMosquitos++;
			LootCommand.spiderMosquitosSession++;
			ConfigHandler.writeIntConfig("spider", "mosquito", LootCommand.spiderMosquitos);
			if (ToggleCommand.rngesusAlerts) Utils.createTitle(EnumChatFormatting.GOLD + "DIGESTED MOSQUITO!", 5);
		} else if (message.contains("Talk to Maddox to claim your Zombie Slayer XP!")) { // Zombie
			LootCommand.zombieRevs++;
			LootCommand.zombieRevsSession++;
			if (LootCommand.zombieBosses != -1) {
				LootCommand.zombieBosses++;
			}
			if (LootCommand.zombieBossesSession != 1) {
				LootCommand.zombieBossesSession++;
			}
			ConfigHandler.writeIntConfig("zombie", "revs", LootCommand.zombieRevs);
			ConfigHandler.writeIntConfig("zombie", "bossRNG", LootCommand.zombieBosses);
		} else if (message.contains("RARE DROP! (Foul Flesh)")) {
			LootCommand.zombieFoulFleshDrops++;
			LootCommand.zombieFoulFleshDropsSession++;
			ConfigHandler.writeIntConfig("zombie", "foulFleshDrops", LootCommand.zombieFoulFleshDrops);
		} else if (message.contains("VERY RARE DROP!  (Revenant Catalyst)")) {
			LootCommand.zombieRevCatas++;
			LootCommand.zombieRevCatasSession++;
			ConfigHandler.writeIntConfig("zombie", "revCatalyst", LootCommand.zombieRevCatas);
		} else if (message.contains("VERY RARE DROP!  (") && message.contains(" Pestilence Rune I)")) {
			LootCommand.zombiePestilences++;
			LootCommand.zombiePestilencesSession++;
			ConfigHandler.writeIntConfig("zombie", "pestilence", LootCommand.zombiePestilences);
		} else if (message.contains("VERY RARE DROP!  (Undead Catalyst)")) {
			LootCommand.zombieUndeadCatas++;
			LootCommand.zombieUndeadCatasSession++;
			ConfigHandler.writeIntConfig("zombie", "undeadCatalyst", LootCommand.zombieUndeadCatas);
		} else if (message.contains("CRAZY RARE DROP!  (Beheaded Horror)")) {
			zombieRNG = true;
			LootCommand.zombieBeheadeds++;
			LootCommand.zombieBeheadedsSession++;
			ConfigHandler.writeIntConfig("zombie", "beheaded", LootCommand.zombieBeheadeds);
			if (ToggleCommand.rngesusAlerts) Utils.createTitle(EnumChatFormatting.DARK_PURPLE + "BEHEADED HORROR!", 3);
		} else if (message.contains("CRAZY RARE DROP!  (") && message.contains(" Snake Rune I)")) {
			zombieRNG = true;
			LootCommand.zombieSnakes++;
			LootCommand.zombieSnakesSession++;
			ConfigHandler.writeIntConfig("zombie", "snake", LootCommand.zombieSnakes);
			if (ToggleCommand.rngesusAlerts) Utils.createTitle(EnumChatFormatting.DARK_GREEN + "SNAKE RUNE!", 3);
		} else if (message.contains("CRAZY RARE DROP!  (Scythe Blade)")) {
			zombieRNG = true;
			LootCommand.zombieScythes++;
			LootCommand.zombieScythesSession++;
			ConfigHandler.writeIntConfig("zombie", "scythe", LootCommand.zombieScythes);
			if (ToggleCommand.rngesusAlerts) Utils.createTitle(EnumChatFormatting.GOLD + "SCYTHE BLADE!", 5);
		} else if (message.contains("GOOD CATCH!")) { // Fishing
			LootCommand.goodCatches++;
			LootCommand.goodCatchesSession++;
			ConfigHandler.writeIntConfig("fishing", "goodCatch", LootCommand.goodCatches);
		} else if (message.contains("GREAT CATCH!")) {
			LootCommand.greatCatches++;
			LootCommand.greatCatchesSession++;
			ConfigHandler.writeIntConfig("fishing", "greatCatch", LootCommand.greatCatches);
		} else if (message.contains("A Squid appeared")) {
			LootCommand.squids++;
			LootCommand.squidsSession++;
			ConfigHandler.writeIntConfig("fishing", "squid", LootCommand.squids);
			increaseSeaCreatures();
		} else if (message.contains("You caught a Sea Walker")) {
			LootCommand.seaWalkers++;
			LootCommand.seaWalkersSession++;
			ConfigHandler.writeIntConfig("fishing", "seaWalker", LootCommand.seaWalkers);
			increaseSeaCreatures();
		} else if (message.contains("Pitch darkness reveals a Night Squid")) {
			LootCommand.nightSquids++;
			LootCommand.nightSquidsSession++;
			ConfigHandler.writeIntConfig("fishing", "nightSquid", LootCommand.nightSquids);
			increaseSeaCreatures();
		} else if (message.contains("You stumbled upon a Sea Guardian")) {
			LootCommand.seaGuardians++;
			LootCommand.seaGuardiansSession++;
			ConfigHandler.writeIntConfig("fishing", "seaGuardian", LootCommand.seaGuardians);
			increaseSeaCreatures();
		} else if (message.contains("It looks like you've disrupted the Sea Witch's brewing session. Watch out, she's furious")) {
			LootCommand.seaWitches++;
			LootCommand.seaWitchesSession++;
			ConfigHandler.writeIntConfig("fishing", "seaWitch", LootCommand.seaWitches);
			increaseSeaCreatures();
		} else if (message.contains("You reeled in a Sea Archer")) {
			LootCommand.seaArchers++;
			LootCommand.seaArchersSession++;
			ConfigHandler.writeIntConfig("fishing", "seaArcher", LootCommand.seaArchers);
			increaseSeaCreatures();
		} else if (message.contains("The Monster of the Deep has emerged")) {
			LootCommand.monsterOfTheDeeps++;
			LootCommand.monsterOfTheDeepsSession++;
			ConfigHandler.writeIntConfig("fishing", "monsterOfDeep", LootCommand.monsterOfTheDeeps);
			increaseSeaCreatures();
		} else if (message.contains("Huh? A Catfish")) {
			LootCommand.catfishes++;
			LootCommand.catfishesSession++;
			ConfigHandler.writeIntConfig("fishing", "catfish", LootCommand.catfishes);
			increaseSeaCreatures();
		} else if (message.contains("Is this even a fish? It's the Carrot King")) {
			LootCommand.carrotKings++;
			LootCommand.carrotKingsSession++;
			ConfigHandler.writeIntConfig("fishing", "carrotKing", LootCommand.carrotKings);
			increaseSeaCreatures();
		} else if (message.contains("Gross! A Sea Leech")) {
			LootCommand.seaLeeches++;
			LootCommand.seaLeechesSession++;
			ConfigHandler.writeIntConfig("fishing", "seaLeech", LootCommand.seaLeeches);
			increaseSeaCreatures();
		} else if (message.contains("You've discovered a Guardian Defender of the sea")) {
			LootCommand.guardianDefenders++;
			LootCommand.guardianDefendersSession++;
			ConfigHandler.writeIntConfig("fishing", "guardianDefender", LootCommand.guardianDefenders);
			increaseSeaCreatures();
		} else if (message.contains("You have awoken the Deep Sea Protector, prepare for a battle")) {
			LootCommand.deepSeaProtectors++;
			LootCommand.deepSeaProtectorsSession++;
			ConfigHandler.writeIntConfig("fishing", "deepSeaProtector", LootCommand.deepSeaProtectors);
			increaseSeaCreatures();
		} else if (message.contains("The Water Hydra has come to test your strength")) {
			LootCommand.hydras++;
			LootCommand.hydrasSession++;
			ConfigHandler.writeIntConfig("fishing", "hydra", LootCommand.hydras);
			increaseSeaCreatures();
		} else if (message.contains("The Sea Emperor arises from the depths")) {
			increaseSeaCreatures();
			
			LootCommand.seaEmperors++;
			LootCommand.empTime = System.currentTimeMillis() / 1000;
			LootCommand.empSCs = 0;
			LootCommand.seaEmperorsSession++;
			LootCommand.empTimeSession = System.currentTimeMillis() / 1000;
			LootCommand.empSCsSession = 0;
			ConfigHandler.writeIntConfig("fishing", "seaEmperor", LootCommand.seaEmperors);
			ConfigHandler.writeDoubleConfig("fishing", "empTime", LootCommand.empTime);
			ConfigHandler.writeIntConfig("fishing", "empSC", LootCommand.empSCs);
		} else if (message.contains("Frozen Steve fell into the pond long ago")) { // Fishing Winter
			LootCommand.frozenSteves++;
			LootCommand.frozenStevesSession++;
			ConfigHandler.writeIntConfig("fishing", "frozenSteve", LootCommand.frozenSteves);
			increaseSeaCreatures();
		} else if (message.contains("It's a snowman! He looks harmless")) {
			LootCommand.frostyTheSnowmans++;
			LootCommand.frostyTheSnowmansSession++;
			ConfigHandler.writeIntConfig("fishing", "snowman", LootCommand.frostyTheSnowmans);
			increaseSeaCreatures();
		} else if (message.contains("stole Jerry's Gifts...get them back")) {
			LootCommand.grinches++;
			LootCommand.grinchesSession++;
			ConfigHandler.writeIntConfig("fishing", "grinch", LootCommand.grinches);
			increaseSeaCreatures();
		} else if (message.contains("What is this creature")) {
			LootCommand.yetis++;
			LootCommand.yetiTime = System.currentTimeMillis() / 1000;
			LootCommand.yetiSCs = 0;
			LootCommand.yetisSession++;
			LootCommand.yetiTimeSession = System.currentTimeMillis() / 1000;
			LootCommand.yetiSCsSession = 0;
			ConfigHandler.writeIntConfig("fishing", "yeti", LootCommand.yetis);
			ConfigHandler.writeDoubleConfig("fishing", "yetiTime", LootCommand.yetiTime);
			ConfigHandler.writeIntConfig("fishing", "yetiSC", LootCommand.yetiSCs);
			increaseSeaCreatures();
		} else if (message.contains("A tiny fin emerges from the water, you've caught a Nurse Shark")) { // Fishing Festival
			LootCommand.nurseSharks++;
			LootCommand.nurseSharksSession++;
			ConfigHandler.writeIntConfig("fishing", "nurseShark", LootCommand.nurseSharks);
			increaseSeaCreatures();
		} else if (message.contains("You spot a fin as blue as the water it came from, it's a Blue Shark")) {
			LootCommand.blueSharks++;
			LootCommand.blueSharksSession++;
			ConfigHandler.writeIntConfig("fishing", "blueShark", LootCommand.blueSharks);
			increaseSeaCreatures();
		} else if (message.contains("A striped beast bounds from the depths, the wild Tiger Shark")) {
			LootCommand.tigerSharks++;
			LootCommand.tigerSharksSession++;
			ConfigHandler.writeIntConfig("fishing", "tigerShark", LootCommand.tigerSharks);
			increaseSeaCreatures();
		} else if (message.contains("Hide no longer, a Great White Shark has tracked your scent and thirsts for your blood")) {
			LootCommand.greatWhiteSharks++;
			LootCommand.greatWhiteSharksSession++;
			ConfigHandler.writeIntConfig("fishing", "greatWhiteShark", LootCommand.greatWhiteSharks);
			increaseSeaCreatures();
		} else if (message.contains("Phew! It's only a Scarecrow")) {
			LootCommand.scarecrows++;
			LootCommand.scarecrowsSession++;
			ConfigHandler.writeIntConfig("fishing", "scarecrow", LootCommand.scarecrows);
			increaseSeaCreatures();
		} else if (message.contains("You hear trotting from beneath the waves, you caught a Nightmare")) {
			LootCommand.nightmares++;
			LootCommand.nightmaresSession++;
			ConfigHandler.writeIntConfig("fishing", "nightmare", LootCommand.nightmares);
			increaseSeaCreatures();
		} else if (message.contains("It must be a full moon, a Werewolf appears")) {
			LootCommand.werewolfs++;
			LootCommand.werewolfsSession++;
			ConfigHandler.writeIntConfig("fishing", "werewolf", LootCommand.werewolfs);
			increaseSeaCreatures();
		} else if (message.contains("The spirit of a long lost Phantom Fisher has come to haunt you")) {
			LootCommand.phantomFishers++;
			LootCommand.phantomFishersSession++;
			ConfigHandler.writeIntConfig("fishing", "phantomFisher", LootCommand.phantomFishers);
			increaseSeaCreatures();
		} else if (message.contains("This can't be! The manifestation of death himself")) {
			LootCommand.grimReapers++;
			LootCommand.grimReapersSession++;
			ConfigHandler.writeIntConfig("fishing", "grimReaper", LootCommand.grimReapers);
			increaseSeaCreatures();
		} else if (message.contains("Dungeon starts in 1 second.")) { // Dungeons Stuff
		    dungeonStartTime = System.currentTimeMillis() / 1000 + 1;
		    bloodOpenTime = dungeonStartTime;
		    watcherClearTime = dungeonStartTime;
		    bossClearTime = dungeonStartTime;
		    witherDoors = 0;
		    dungeonDeaths = 0;
		    puzzleFails = 0;
		} else if (message.contains("The BLOOD DOOR has been opened!")) {
			bloodOpenTime = System.currentTimeMillis() / 1000;
		} else if (message.contains(" opened a WITHER door!")) {
			witherDoors++;
		} else if (message.contains(" and became a ghost.")) {
			dungeonDeaths++;
		} else if (message.contains(" Defeated ") && message.contains(" in ")) {
			bossClearTime = System.currentTimeMillis() / 1000;
		} else if (message.contains("EXTRA STATS ")) {
			List<String> scoreboard = ScoreboardHandler.getSidebarLines();
			int timeToAdd = 0;
			for (String s : scoreboard) {
				String sCleaned = ScoreboardHandler.cleanSB(s);
				if (sCleaned.contains("The Catacombs (")) {
					// Add time to floor
					if (sCleaned.contains("F1")) {
						LootCommand.f1TimeSpent = Math.floor(LootCommand.f1TimeSpent + timeToAdd);
						LootCommand.f1TimeSpentSession = Math.floor(LootCommand.f1TimeSpentSession + timeToAdd);
						ConfigHandler.writeDoubleConfig("catacombs", "floorOneTime", LootCommand.f1TimeSpent);
					} else if (sCleaned.contains("F2")) {
						LootCommand.f2TimeSpent = Math.floor(LootCommand.f2TimeSpent + timeToAdd);
						LootCommand.f2TimeSpentSession = Math.floor(LootCommand.f2TimeSpentSession + timeToAdd);
						ConfigHandler.writeDoubleConfig("catacombs", "floorTwoTime", LootCommand.f2TimeSpent);
					} else if (sCleaned.contains("F3")) {
						LootCommand.f3TimeSpent = Math.floor(LootCommand.f3TimeSpent + timeToAdd);
						LootCommand.f3TimeSpentSession = Math.floor(LootCommand.f3TimeSpentSession + timeToAdd);
						ConfigHandler.writeDoubleConfig("catacombs", "floorThreeTime", LootCommand.f3TimeSpent);
					} else if (sCleaned.contains("F4")) {
						LootCommand.f4TimeSpent = Math.floor(LootCommand.f4TimeSpent + timeToAdd);
						LootCommand.f4TimeSpentSession = Math.floor(LootCommand.f4TimeSpentSession + timeToAdd);
						ConfigHandler.writeDoubleConfig("catacombs", "floorFourTime", LootCommand.f4TimeSpent);
					} else if (sCleaned.contains("F5")) {
						LootCommand.f5TimeSpent = Math.floor(LootCommand.f5TimeSpent + timeToAdd);
						LootCommand.f5TimeSpentSession = Math.floor(LootCommand.f5TimeSpentSession + timeToAdd);
						ConfigHandler.writeDoubleConfig("catacombs", "floorFiveTime", LootCommand.f5TimeSpent);
					} else if (sCleaned.contains("F6")) {
						LootCommand.f6TimeSpent = Math.floor(LootCommand.f6TimeSpent + timeToAdd);
						LootCommand.f6TimeSpentSession = Math.floor(LootCommand.f6TimeSpentSession + timeToAdd);
						ConfigHandler.writeDoubleConfig("catacombs", "floorSixTime", LootCommand.f6TimeSpent);
					} else if (sCleaned.contains("F7")) {
						LootCommand.f7TimeSpent = Math.floor(LootCommand.f7TimeSpent + timeToAdd);
						LootCommand.f7TimeSpentSession = Math.floor(LootCommand.f7TimeSpentSession + timeToAdd);
						ConfigHandler.writeDoubleConfig("catacombs", "floorSevenTime", LootCommand.f7TimeSpent);
					}
				} else if (sCleaned.contains("Time Elapsed:")) {
					// Get floor time
					String time = sCleaned.substring(sCleaned.indexOf(":") + 2);
					time = time.replaceAll("\\s", "");
					int minutes = Integer.parseInt(time.substring(0, time.indexOf("m")));
					int seconds = Integer.parseInt(time.substring(time.indexOf("m") + 1, time.indexOf("s")));
					timeToAdd = (minutes * 60) + seconds;
				}
			}
		}
		
		if (wolfRNG) {
			LootCommand.wolfTime = System.currentTimeMillis() / 1000;
			LootCommand.wolfBosses = 0;
			LootCommand.wolfTimeSession = System.currentTimeMillis() / 1000;
			LootCommand.wolfBossesSession = 0;
			ConfigHandler.writeDoubleConfig("wolf", "timeRNG", LootCommand.wolfTime);
			ConfigHandler.writeIntConfig("wolf", "bossRNG", 0);
		}
		if (spiderRNG) {
			LootCommand.spiderTime = System.currentTimeMillis() / 1000;
			LootCommand.spiderBosses = 0;
			LootCommand.spiderTimeSession = System.currentTimeMillis() / 1000;
			LootCommand.spiderBossesSession = 0;
			ConfigHandler.writeDoubleConfig("spider", "timeRNG", LootCommand.spiderTime);
			ConfigHandler.writeIntConfig("spider", "bossRNG", 0);
		}
		if (zombieRNG) {
			LootCommand.zombieTime = System.currentTimeMillis() / 1000;
			LootCommand.zombieBosses = 0;
			LootCommand.zombieTimeSession = System.currentTimeMillis() / 1000;
			LootCommand.zombieBossesSession = 0;
			ConfigHandler.writeDoubleConfig("zombie", "timeRNG", LootCommand.zombieTime);
			ConfigHandler.writeIntConfig("zombie", "bossRNG", 0);
		}
		
		// Mythological Tracker
		if (message.contains("You dug out")) {
			if (message.contains(" coins!")) {
				double coinsEarned = Double.parseDouble(message.replaceAll("[^\\d]", ""));
				LootCommand.mythCoins += coinsEarned;
				LootCommand.mythCoinsSession += coinsEarned;
				ConfigHandler.writeDoubleConfig("mythological", "coins", LootCommand.mythCoins);
			} else if (message.contains("a Griffin Feather!")) {
				LootCommand.griffinFeathers++;
				LootCommand.griffinFeathersSession++;
				ConfigHandler.writeIntConfig("mythological", "griffinFeather", LootCommand.griffinFeathers);
			} else if (message.contains("a Crown of Greed!")) {
				LootCommand.crownOfGreeds++;
				LootCommand.crownOfGreedsSession++;
				ConfigHandler.writeIntConfig("mythological", "crownOfGreed", LootCommand.crownOfGreeds);
			} else if (message.contains("a Washed-up Souvenir!")) {
				LootCommand.washedUpSouvenirs++;
				LootCommand.washedUpSouvenirsSession++;
				ConfigHandler.writeIntConfig("mythological", "washedUpSouvenir", LootCommand.washedUpSouvenirs);
			} else if (message.contains("a Minos Hunter!")) {
				LootCommand.minosHunters++;
				LootCommand.minosHuntersSession++;
				ConfigHandler.writeIntConfig("mythological", "minosHunter", LootCommand.minosHunters);
			} else if (message.contains("Siamese Lynxes!")) {
				LootCommand.siameseLynxes++;
				LootCommand.siameseLynxesSession++;
				ConfigHandler.writeIntConfig("mythological", "siameseLynx", LootCommand.siameseLynxes);
			} else if (message.contains("a Minotaur!")) {
				LootCommand.minotaurs++;
				LootCommand.minotaursSession++;
				ConfigHandler.writeIntConfig("mythological", "minotaur", LootCommand.minotaurs);
			} else if (message.contains("a Gaia Construct!")) {
				LootCommand.gaiaConstructs++;
				LootCommand.gaiaConstructsSession++;
				ConfigHandler.writeIntConfig("mythological", "gaiaConstruct", LootCommand.gaiaConstructs);
			} else if (message.contains("a Minos Champion!")) {
				LootCommand.minosChampions++;
				LootCommand.minosChampionsSession++;
				ConfigHandler.writeIntConfig("mythological", "minosChampion", LootCommand.minosChampions);
			} else if (message.contains("a Minos Inquisitor!")) {
				LootCommand.minosInquisitors++;
				LootCommand.minosInquisitorsSession++;
				ConfigHandler.writeIntConfig("mythological", "minosInquisitor", LootCommand.minosInquisitors);
			}
		}
		
		// Dungeons Trackers
		if (message.contains("    ")) {
			if (message.contains("Recombobulator 3000")) {
				LootCommand.recombobulators++;
				LootCommand.recombobulatorsSession++;
				ConfigHandler.writeIntConfig("catacombs", "recombobulator", LootCommand.recombobulators);
			} else if (message.contains("Fuming Potato Book")) {
				LootCommand.fumingPotatoBooks++;
				LootCommand.fumingPotatoBooksSession++;
				ConfigHandler.writeIntConfig("catacombs", "fumingBooks", LootCommand.fumingPotatoBooks);
			} else if (message.contains("Bonzo's Staff")) { // F1
				LootCommand.bonzoStaffs++;
				LootCommand.bonzoStaffsSession++;
				ConfigHandler.writeIntConfig("catacombs", "bonzoStaff", LootCommand.bonzoStaffs);
			} else if (message.contains("Scarf's Studies")) { // F2
				LootCommand.scarfStudies++;
				LootCommand.scarfStudiesSession++;
				ConfigHandler.writeIntConfig("catacombs", "scarfStudies", LootCommand.scarfStudies);
			} else if (message.contains("Adaptive Helmet")) { // F3
				LootCommand.adaptiveHelms++;
				LootCommand.adaptiveHelmsSession++;
				ConfigHandler.writeIntConfig("catacombs", "adaptiveHelm", LootCommand.adaptiveHelms);
			} else if (message.contains("Adaptive Chestplate")) {
				LootCommand.adaptiveChests++;
				LootCommand.adaptiveChestsSession++;
				ConfigHandler.writeIntConfig("catacombs", "adaptiveChest", LootCommand.adaptiveChests);
			} else if (message.contains("Adaptive Leggings")) {
				LootCommand.adaptiveLegs++;
				LootCommand.adaptiveLegsSession++;
				ConfigHandler.writeIntConfig("catacombs", "adaptiveLegging", LootCommand.adaptiveLegs);
			} else if (message.contains("Adaptive Boots")) {
				LootCommand.adaptiveBoots++;
				LootCommand.adaptiveBootsSession++;
				ConfigHandler.writeIntConfig("catacombs", "adaptiveBoot", LootCommand.adaptiveBoots);
			} else if (message.contains("Adaptive Blade")) {
				LootCommand.adaptiveSwords++;
				LootCommand.adaptiveSwordsSession++;
				ConfigHandler.writeIntConfig("catacombs", "adaptiveSword", LootCommand.adaptiveSwords);
			} else if (message.contains("Spirit Wing")) { // F4
				LootCommand.spiritWings++;
				LootCommand.spiritWingsSession++;
				ConfigHandler.writeIntConfig("catacombs", "spiritWing", LootCommand.spiritWings);
			} else if (message.contains("Spirit Bone")) {
				LootCommand.spiritBones++;
				LootCommand.spiritBonesSession++;
				ConfigHandler.writeIntConfig("catacombs", "spiritBone", LootCommand.spiritBones);
			} else if (message.contains("Spirit Boots")) {
				LootCommand.spiritBoots++;
				LootCommand.spiritBootsSession++;
				ConfigHandler.writeIntConfig("catacombs", "spiritBoot", LootCommand.spiritBoots);
			} else if (message.contains("[Lvl 1] Spirit")) {
				String formattedMessage = event.message.getFormattedText();
				// Unicode colour code messes up here, just gonna remove the symbols
				if (formattedMessage.contains("5Spirit")) {
					LootCommand.epicSpiritPets++;
					LootCommand.epicSpiritPetsSession++;
					ConfigHandler.writeIntConfig("catacombs", "spiritPetEpic", LootCommand.epicSpiritPets);
				} else if (formattedMessage.contains("6Spirit")) {
					LootCommand.legSpiritPets++;
					LootCommand.legSpiritPetsSession++;
					ConfigHandler.writeIntConfig("catacombs", "spiritPetLeg", LootCommand.legSpiritPets);
				} 
			} else if (message.contains("Spirit Sword")) {
				LootCommand.spiritSwords++;
				LootCommand.spiritSwordsSession++;
				ConfigHandler.writeIntConfig("catacombs", "spiritSword", LootCommand.spiritSwords);
			} else if (message.contains("Spirit Bow")) {
				LootCommand.spiritBows++;
				LootCommand.spiritBowsSession++;
				ConfigHandler.writeIntConfig("catacombs", "spiritBow", LootCommand.spiritBows);
			} else if (message.contains("Warped Stone")) { // F5
				LootCommand.warpedStones++;
				LootCommand.warpedStonesSession++;
				ConfigHandler.writeIntConfig("catacombs", "warpedStone", LootCommand.warpedStones);
			} else if (message.contains("Shadow Assassin Helmet")) {
				LootCommand.shadowAssHelms++;
				LootCommand.shadowAssHelmsSession++;
				ConfigHandler.writeIntConfig("catacombs", "shadowAssassinHelm", LootCommand.shadowAssHelms);
			} else if (message.contains("Shadow Assassin Chestplate")) {
				LootCommand.shadowAssChests++;
				LootCommand.shadowAssChestsSession++;
				ConfigHandler.writeIntConfig("catacombs", "shadowAssassinChest", LootCommand.shadowAssChests);
			} else if (message.contains("Shadow Assassin Leggings")) {
				LootCommand.shadowAssLegs++;
				LootCommand.shadowAssLegsSession++;
				ConfigHandler.writeIntConfig("catacombs", "shadowAssassinLegging", LootCommand.shadowAssLegs);
			} else if (message.contains("Shadow Assassin Boots")) {
				LootCommand.shadowAssBoots++;
				LootCommand.shadowAssBootsSession++;
				ConfigHandler.writeIntConfig("catacombs", "shadowAssassinBoot", LootCommand.shadowAssBoots);
			} else if (message.contains("Livid Dagger")) {
				LootCommand.lividDaggers++;
				LootCommand.lividDaggersSession++;
				ConfigHandler.writeIntConfig("catacombs", "lividDagger", LootCommand.lividDaggers);
			} else if (message.contains("Shadow Fury")) {
				LootCommand.shadowFurys++;
				LootCommand.shadowFurysSession++;
				ConfigHandler.writeIntConfig("catacombs", "shadowFury", LootCommand.shadowFurys);
			} else if (message.contains("Ancient Rose")) { // F6
				LootCommand.ancientRoses++;
				LootCommand.ancientRosesSession++;
				ConfigHandler.writeIntConfig("catacombs", "ancientRose", LootCommand.ancientRoses);
			} else if (message.contains("Precursor Eye")) {
				LootCommand.precursorEyes++;
				LootCommand.precursorEyesSession++;
				ConfigHandler.writeIntConfig("catacombs", "precursorEye", LootCommand.precursorEyes);
			} else if (message.contains("Giant's Sword")) {
				LootCommand.giantsSwords++;
				LootCommand.giantsSwordsSession++;
				ConfigHandler.writeIntConfig("catacombs", "giantsSword", LootCommand.giantsSwords);
			} else if (message.contains("Necromancer Lord Helmet")) {
				LootCommand.necroLordHelms++;
				LootCommand.necroLordHelmsSession++;
				ConfigHandler.writeIntConfig("catacombs", "necroLordHelm", LootCommand.necroLordHelms);
			} else if (message.contains("Necromancer Lord Chestplate")) {
				LootCommand.necroLordChests++;
				LootCommand.necroLordChestsSession++;
				ConfigHandler.writeIntConfig("catacombs", "necroLordChest", LootCommand.necroLordChests);
			} else if (message.contains("Necromancer Lord Leggings")) {
				LootCommand.necroLordLegs++;
				LootCommand.necroLordLegsSession++;
				ConfigHandler.writeIntConfig("catacombs", "necroLordLegging", LootCommand.necroLordLegs);
			} else if (message.contains("Necromancer Lord Boots")) {
				LootCommand.necroLordBoots++;
				LootCommand.necroLordBootsSession++;
				ConfigHandler.writeIntConfig("catacombs", "necroLordBoot", LootCommand.necroLordBoots);
			} else if (message.contains("Necromancer Sword")) {
				LootCommand.necroSwords++;
				LootCommand.necroSwordsSession++;
				ConfigHandler.writeIntConfig("catacombs", "necroSword", LootCommand.necroSwords);
			} else if (message.contains("Wither Blood")) { // F7
				LootCommand.witherBloods++;
				LootCommand.witherBloodsSession++;
				ConfigHandler.writeIntConfig("catacombs", "witherBlood", LootCommand.witherBloods);
			} else if (message.contains("Wither Cloak")) {
				LootCommand.witherCloaks++;
				LootCommand.witherCloaksSession++;
				ConfigHandler.writeIntConfig("catacombs", "witherCloak", LootCommand.witherCloaks);
			} else if (message.contains("Implosion")) {
				LootCommand.implosions++;
				LootCommand.implosionsSession++;
				ConfigHandler.writeIntConfig("catacombs", "implosion", LootCommand.implosions);
			} else if (message.contains("Wither Shield")) {
				LootCommand.witherShields++;
				LootCommand.witherShieldsSession++;
				ConfigHandler.writeIntConfig("catacombs", "witherShield", LootCommand.witherShields);
			} else if (message.contains("Shadow Warp")) {
				LootCommand.shadowWarps++;
				LootCommand.shadowWarpsSession++;
				ConfigHandler.writeIntConfig("catacombs", "shadowWarp", LootCommand.shadowWarps);
			} else if (message.contains("Necron's Handle")) {
				LootCommand.necronsHandles++;
				LootCommand.necronsHandlesSession++;
				ConfigHandler.writeIntConfig("catacombs", "necronsHandle", LootCommand.necronsHandles);
			} else if (message.contains("Auto Recombobulator")) {
				LootCommand.autoRecombs++;
				LootCommand.autoRecombsSession++;
				ConfigHandler.writeIntConfig("catacombs", "autoRecomb", LootCommand.autoRecombs);
			} else if (message.contains("Wither Helmet")) {
				LootCommand.witherHelms++;
				LootCommand.witherHelmsSession++;
				ConfigHandler.writeIntConfig("catacombs", "witherHelm", LootCommand.witherHelms);
			} else if (message.contains("Wither Chestplate")) {
				LootCommand.witherChests++;
				LootCommand.witherChestsSession++;
				ConfigHandler.writeIntConfig("catacombs", "witherChest", LootCommand.witherChests);
			} else if (message.contains("Wither Leggings")) {
				LootCommand.witherLegs++;
				LootCommand.witherLegsSession++;
				ConfigHandler.writeIntConfig("catacombs", "witherLegging", LootCommand.witherLegs);
			} else if (message.contains("Wither Boots")) {
				LootCommand.witherBoots++;
				LootCommand.witherBootsSession++;
				ConfigHandler.writeIntConfig("catacombs", "witherBoot", LootCommand.witherBoots);
			}
		}
		
		// Chat Maddox
		if (message.contains("[OPEN MENU]")) {
			List<IChatComponent> listOfSiblings = event.message.getSiblings();
			for (IChatComponent sibling : listOfSiblings) {
				if (sibling.getUnformattedText().contains("[OPEN MENU]")) {
					lastMaddoxCommand = sibling.getChatStyle().getChatClickEvent().getValue();
					lastMaddoxTime = System.currentTimeMillis() / 1000;
				}
			}
			if (ToggleCommand.chatMaddoxToggled) Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText(MAIN_COLOUR + "Open chat then click anywhere on-screen to open Maddox"));
		}
		
		// Spirit Bear alerts
		if (ToggleCommand.spiritBearAlerts && message.contains("The Spirit Bear has appeared!")) {
			Utils.createTitle(EnumChatFormatting.DARK_PURPLE + "SPIRIT BEAR", 2);
		}
    }

    @SubscribeEvent
    public void renderPlayerInfo(final RenderGameOverlayEvent.Post event) {
        if (usingLabymod && !(Minecraft.getMinecraft().ingameGUI instanceof GuiIngameForge)) return;
        if (event.type != RenderGameOverlayEvent.ElementType.EXPERIENCE && event.type != RenderGameOverlayEvent.ElementType.JUMPBAR)
            return;
        renderEverything();
    }

    // LabyMod Support
    @SubscribeEvent
    public void renderPlayerInfoLabyMod(final RenderGameOverlayEvent event) {
        if (!usingLabymod) return;
        if (event.type != null) return;
        renderEverything();
    }

    public void renderEverything() {
        if (Minecraft.getMinecraft().currentScreen instanceof EditLocationsGui) return;

        Minecraft mc = Minecraft.getMinecraft();

        if (ToggleCommand.coordsToggled) {
            EntityPlayer player = mc.thePlayer;

            double xDir = (player.rotationYaw % 360 + 360) % 360;
            if (xDir > 180) xDir -= 360;
            xDir = (double) Math.round(xDir * 10d) / 10d;
            double yDir = (double) Math.round(player.rotationPitch * 10d) / 10d;

            String coordText = COORDS_COLOUR + (int) player.posX + " / " + (int) player.posY + " / " + (int) player.posZ + " (" + xDir + " / " + yDir + ")";
            new TextRenderer(mc, coordText, MoveCommand.coordsXY[0], MoveCommand.coordsXY[1], ScaleCommand.coordsScale);
        }

        if (ToggleCommand.dungeonTimerToggled && Utils.inDungeons) {
            String dungeonTimerText = EnumChatFormatting.GRAY + "Wither Doors:\n" +
                                      EnumChatFormatting.DARK_RED + "Blood Open:\n" +
                                      EnumChatFormatting.RED + "Watcher Clear:\n" +
                                      EnumChatFormatting.BLUE + "Boss Clear:\n" +
                                      EnumChatFormatting.YELLOW + "Deaths:\n" +
                                      EnumChatFormatting.YELLOW + "Puzzle Fails:";
            String dungeonTimers = EnumChatFormatting.GRAY + "" + witherDoors + "\n" +
                                   EnumChatFormatting.DARK_RED + Utils.getTimeBetween(dungeonStartTime, bloodOpenTime) + "\n" +
                                   EnumChatFormatting.RED + Utils.getTimeBetween(dungeonStartTime, watcherClearTime) + "\n" +
                                   EnumChatFormatting.BLUE + Utils.getTimeBetween(dungeonStartTime, bossClearTime) + "\n" +
                                   EnumChatFormatting.YELLOW + dungeonDeaths + "\n" +
                                   EnumChatFormatting.YELLOW + puzzleFails;
            new TextRenderer(mc, dungeonTimerText, MoveCommand.dungeonTimerXY[0], MoveCommand.dungeonTimerXY[1], ScaleCommand.dungeonTimerScale);
            new TextRenderer(mc, dungeonTimers, (int) (MoveCommand.dungeonTimerXY[0] + (80 * ScaleCommand.dungeonTimerScale)), MoveCommand.dungeonTimerXY[1], ScaleCommand.dungeonTimerScale);
        }

        if (ToggleCommand.lividSolverToggled && foundLivid && livid != null) {
            new TextRenderer(mc, livid.getName().replace("" + EnumChatFormatting.BOLD, ""), MoveCommand.lividHpXY[0], MoveCommand.lividHpXY[1], ScaleCommand.lividHpScale);
        }

        if (ToggleCommand.cakeTimerToggled && Utils.inSkyblock) {
            double scale = ScaleCommand.cakeTimerScale;
            double scaleReset = Math.pow(scale, -1);
            GL11.glScaled(scale, scale, scale);

            double timeNow = System.currentTimeMillis() / 1000;
            mc.getTextureManager().bindTexture(CAKE_ICON);
            Gui.drawModalRectWithCustomSizedTexture(MoveCommand.cakeTimerXY[0], MoveCommand.cakeTimerXY[1], 0, 0, 16, 16, 16, 16);

            String cakeText;
            if (cakeTime - timeNow < 0) {
                cakeText = EnumChatFormatting.RED + "NONE";
            } else {
                cakeText = CAKE_COLOUR + Utils.getTimeBetween(timeNow, cakeTime);
            }
            new TextRenderer(mc, cakeText, MoveCommand.cakeTimerXY[0] + 20, MoveCommand.cakeTimerXY[1] + 5, 1);

            GL11.glScaled(scaleReset, scaleReset, scaleReset);
        }

        if (ToggleCommand.bonzoTimerToggled && Utils.inDungeons) {

            ItemStack helmetSlot = mc.thePlayer.getCurrentArmor(3);
            if ((helmetSlot != null && helmetSlot.getDisplayName().contains("Bonzo's Mask")) || nextBonzoUse > 0) {

                double scale = ScaleCommand.bonzoTimerScale;
                double scaleReset = Math.pow(scale, -1);
                GL11.glScaled(scale, scale, scale);

                double timeNow = System.currentTimeMillis() / 1000;
                mc.getTextureManager().bindTexture(BONZO_ICON);
                Gui.drawModalRectWithCustomSizedTexture(MoveCommand.bonzoTimerXY[0], MoveCommand.bonzoTimerXY[1], 0, 0, 16, 16, 16, 16);

                String bonzoText;
                if (nextBonzoUse - timeNow < 0) {
                    bonzoText = EnumChatFormatting.GREEN + "READY";
                } else {
                    bonzoText = BONZO_COLOR + Utils.getTimeBetween(timeNow, nextBonzoUse);
                }
                new TextRenderer(mc, bonzoText, MoveCommand.bonzoTimerXY[0] + 20, MoveCommand.bonzoTimerXY[1] + 5, 1);

                GL11.glScaled(scaleReset, scaleReset, scaleReset);
            }
        }

        if (showSkillTracker && Utils.inSkyblock) {
            int xpPerHour;
            double xpToShow = 0;
            switch (lastSkill) {
                case "Farming":
                    xpToShow = farmingXPGained;
                    break;
                case "Mining":
                    xpToShow = miningXPGained;
                    break;
                case "Combat":
                    xpToShow = combatXPGained;
                    break;
                case "Foraging":
                    xpToShow = foragingXPGained;
                    break;
                case "Fishing":
                    xpToShow = fishingXPGained;
                    break;
                case "Enchanting":
                    xpToShow = enchantingXPGained;
                    break;
                case "Alchemy":
                    xpToShow = alchemyXPGained;
                    break;
                default:
                    System.err.println("Unknown skill in rendering.");
            }
            xpPerHour = (int) Math.round(xpToShow / ((skillStopwatch.getTime() + 1) / 3600000d));
            String skillTrackerText = SKILL_TRACKER_COLOUR + lastSkill + " XP Earned: " + NumberFormat.getNumberInstance(Locale.US).format(xpToShow) + "\n" +
                                      SKILL_TRACKER_COLOUR + "Time Elapsed: " + Utils.getTimeBetween(0, skillStopwatch.getTime() / 1000d) + "\n" +
                                      SKILL_TRACKER_COLOUR + "XP Per Hour: " + NumberFormat.getIntegerInstance(Locale.US).format(xpPerHour);
            if (xpLeft >= 0) {
                String time = xpPerHour == 0 ? "Never" : Utils.getTimeBetween(0, xpLeft / (xpPerHour / 3600D));
                skillTrackerText += "\n" + SKILL_TRACKER_COLOUR + "Time Until Next Level: " + time;
            }
            if (!skillStopwatch.isStarted() || skillStopwatch.isSuspended()) {
                skillTrackerText += "\n" + EnumChatFormatting.RED + "PAUSED";
            }

            new TextRenderer(mc, skillTrackerText, MoveCommand.skillTrackerXY[0], MoveCommand.skillTrackerXY[1], ScaleCommand.skillTrackerScale);
        }

        if (ToggleCommand.waterToggled && Utils.inDungeons && waterAnswers != null) {
            new TextRenderer(mc, waterAnswers, MoveCommand.waterAnswerXY[0], MoveCommand.waterAnswerXY[1], ScaleCommand.waterAnswerScale);
        }

        if (!DisplayCommand.display.equals("off")) {
            String dropsText = "";
            String countText = "";
            String dropsTextTwo;
            String countTextTwo;
            String timeBetween;
            String bossesBetween;
            String drop20;
            double timeNow = System.currentTimeMillis() / 1000;
            NumberFormat nf = NumberFormat.getIntegerInstance(Locale.US);

            switch (DisplayCommand.display) {
                case "wolf":
                    if (LootCommand.wolfTime == -1) {
                        timeBetween = "Never";
                    } else {
                        timeBetween = Utils.getTimeBetween(LootCommand.wolfTime, timeNow);
                    }
                    if (LootCommand.wolfBosses == -1) {
                        bossesBetween = "Never";
                    } else {
                        bossesBetween = nf.format(LootCommand.wolfBosses);
                    }
                    if (ToggleCommand.slayerCountTotal) {
                        drop20 = nf.format(LootCommand.wolfWheels);
                    } else {
                        drop20 = nf.format(LootCommand.wolfWheelsDrops) + " times";
                    }

                    dropsText = EnumChatFormatting.GOLD + "Svens Killed:\n" +
                                EnumChatFormatting.GREEN + "Wolf Teeth:\n" +
                                EnumChatFormatting.BLUE + "Hamster Wheels:\n" +
                                EnumChatFormatting.AQUA + "Spirit Runes:\n" +
                                EnumChatFormatting.WHITE + "Critical VI Books:\n" +
                                EnumChatFormatting.DARK_RED + "Red Claw Eggs:\n" +
                                EnumChatFormatting.GOLD + "Couture Runes:\n" +
                                EnumChatFormatting.AQUA + "Grizzly Baits:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Overfluxes:\n" +
                                EnumChatFormatting.AQUA + "Time Since RNG:\n" +
                                EnumChatFormatting.AQUA + "Bosses Since RNG:";
                    countText = EnumChatFormatting.GOLD + nf.format(LootCommand.wolfSvens) + "\n" +
                                EnumChatFormatting.GREEN + nf.format(LootCommand.wolfTeeth) + "\n" +
                                EnumChatFormatting.BLUE + drop20 + "\n" +
                                EnumChatFormatting.AQUA + LootCommand.wolfSpirits + "\n" +
                                EnumChatFormatting.WHITE + LootCommand.wolfBooks + "\n" +
                                EnumChatFormatting.DARK_RED + LootCommand.wolfEggs + "\n" +
                                EnumChatFormatting.GOLD + LootCommand.wolfCoutures + "\n" +
                                EnumChatFormatting.AQUA + LootCommand.wolfBaits + "\n" +
                                EnumChatFormatting.DARK_PURPLE + LootCommand.wolfFluxes + "\n" +
                                EnumChatFormatting.AQUA + timeBetween + "\n" +
                                EnumChatFormatting.AQUA + bossesBetween;
                    break;
                case "wolf_session":
                    if (LootCommand.wolfTimeSession == -1) {
                        timeBetween = "Never";
                    } else {
                        timeBetween = Utils.getTimeBetween(LootCommand.wolfTimeSession, timeNow);
                    }
                    if (LootCommand.wolfBossesSession == -1) {
                        bossesBetween = "Never";
                    } else {
                        bossesBetween = nf.format(LootCommand.wolfBossesSession);
                    }
                    if (ToggleCommand.slayerCountTotal) {
                        drop20 = nf.format(LootCommand.wolfWheelsSession);
                    } else {
                        drop20 = nf.format(LootCommand.wolfWheelsDropsSession) + " times";
                    }

                    dropsText = EnumChatFormatting.GOLD + "Svens Killed:\n" +
                                EnumChatFormatting.GREEN + "Wolf Teeth:\n" +
                                EnumChatFormatting.BLUE + "Hamster Wheels:\n" +
                                EnumChatFormatting.AQUA + "Spirit Runes:\n" +
                                EnumChatFormatting.WHITE + "Critical VI Books:\n" +
                                EnumChatFormatting.DARK_RED + "Red Claw Eggs:\n" +
                                EnumChatFormatting.GOLD + "Couture Runes:\n" +
                                EnumChatFormatting.AQUA + "Grizzly Baits:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Overfluxes:\n" +
                                EnumChatFormatting.AQUA + "Time Since RNG:\n" +
                                EnumChatFormatting.AQUA + "Bosses Since RNG:";
                    countText = EnumChatFormatting.GOLD + nf.format(LootCommand.wolfSvensSession) + "\n" +
                                EnumChatFormatting.GREEN + nf.format(LootCommand.wolfTeethSession) + "\n" +
                                EnumChatFormatting.BLUE + drop20 + "\n" +
                                EnumChatFormatting.AQUA + LootCommand.wolfSpiritsSession + "\n" +
                                EnumChatFormatting.WHITE + LootCommand.wolfBooksSession + "\n" +
                                EnumChatFormatting.DARK_RED + LootCommand.wolfEggsSession + "\n" +
                                EnumChatFormatting.GOLD + LootCommand.wolfCouturesSession + "\n" +
                                EnumChatFormatting.AQUA + LootCommand.wolfBaitsSession + "\n" +
                                EnumChatFormatting.DARK_PURPLE + LootCommand.wolfFluxesSession + "\n" +
                                EnumChatFormatting.AQUA + timeBetween + "\n" +
                                EnumChatFormatting.AQUA + bossesBetween;
                    break;
                case "spider":
                    if (LootCommand.spiderTime == -1) {
                        timeBetween = "Never";
                    } else {
                        timeBetween = Utils.getTimeBetween(LootCommand.spiderTime, timeNow);
                    }
                    if (LootCommand.spiderBosses == -1) {
                        bossesBetween = "Never";
                    } else {
                        bossesBetween = nf.format(LootCommand.spiderBosses);
                    }
                    if (ToggleCommand.slayerCountTotal) {
                        drop20 = nf.format(LootCommand.spiderTAP);
                    } else {
                        drop20 = nf.format(LootCommand.spiderTAPDrops) + " times";
                    }

                    dropsText = EnumChatFormatting.GOLD + "Tarantulas Killed:\n" +
                                EnumChatFormatting.GREEN + "Tarantula Webs:\n" +
                                EnumChatFormatting.DARK_GREEN + "Arrow Poison:\n" +
                                EnumChatFormatting.DARK_GRAY + "Bite Runes:\n" +
                                EnumChatFormatting.WHITE + "Bane VI Books:\n" +
                                EnumChatFormatting.AQUA + "Spider Catalysts:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Tarantula Talismans:\n" +
                                EnumChatFormatting.LIGHT_PURPLE + "Fly Swatters:\n" +
                                EnumChatFormatting.GOLD + "Digested Mosquitos:\n" +
                                EnumChatFormatting.AQUA + "Time Since RNG:\n" +
                                EnumChatFormatting.AQUA + "Bosses Since RNG:";
                    countText = EnumChatFormatting.GOLD + nf.format(LootCommand.spiderTarantulas) + "\n" +
                                EnumChatFormatting.GREEN + nf.format(LootCommand.spiderWebs) + "\n" +
                                EnumChatFormatting.DARK_GREEN + drop20 + "\n" +
                                EnumChatFormatting.DARK_GRAY + LootCommand.spiderBites + "\n" +
                                EnumChatFormatting.WHITE + LootCommand.spiderBooks + "\n" +
                                EnumChatFormatting.AQUA + LootCommand.spiderCatalysts + "\n" +
                                EnumChatFormatting.DARK_PURPLE + LootCommand.spiderTalismans + "\n" +
                                EnumChatFormatting.LIGHT_PURPLE + LootCommand.spiderSwatters + "\n" +
                                EnumChatFormatting.GOLD + LootCommand.spiderMosquitos + "\n" +
                                EnumChatFormatting.AQUA + timeBetween + "\n" +
                                EnumChatFormatting.AQUA + bossesBetween;
                    break;
                case "spider_session":
                    if (LootCommand.spiderTimeSession == -1) {
                        timeBetween = "Never";
                    } else {
                        timeBetween = Utils.getTimeBetween(LootCommand.spiderTimeSession, timeNow);
                    }
                    if (LootCommand.spiderBossesSession == -1) {
                        bossesBetween = "Never";
                    } else {
                        bossesBetween = nf.format(LootCommand.spiderBossesSession);
                    }
                    if (ToggleCommand.slayerCountTotal) {
                        drop20 = nf.format(LootCommand.spiderTAPSession);
                    } else {
                        drop20 = nf.format(LootCommand.spiderTAPDropsSession) + " times";
                    }

                    dropsText = EnumChatFormatting.GOLD + "Tarantulas Killed:\n" +
                                EnumChatFormatting.GREEN + "Tarantula Webs:\n" +
                                EnumChatFormatting.DARK_GREEN + "Arrow Poison:\n" +
                                EnumChatFormatting.DARK_GRAY + "Bite Runes:\n" +
                                EnumChatFormatting.WHITE + "Bane VI Books:\n" +
                                EnumChatFormatting.AQUA + "Spider Catalysts:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Tarantula Talismans:\n" +
                                EnumChatFormatting.LIGHT_PURPLE + "Fly Swatters:\n" +
                                EnumChatFormatting.GOLD + "Digested Mosquitos:\n" +
                                EnumChatFormatting.AQUA + "Time Since RNG:\n" +
                                EnumChatFormatting.AQUA + "Bosses Since RNG:";
                    countText = EnumChatFormatting.GOLD + nf.format(LootCommand.spiderTarantulasSession) + "\n" +
                                EnumChatFormatting.GREEN + nf.format(LootCommand.spiderWebsSession) + "\n" +
                                EnumChatFormatting.DARK_GREEN + drop20 + "\n" +
                                EnumChatFormatting.DARK_GRAY + LootCommand.spiderBitesSession + "\n" +
                                EnumChatFormatting.WHITE + LootCommand.spiderBooksSession + "\n" +
                                EnumChatFormatting.AQUA + LootCommand.spiderCatalystsSession + "\n" +
                                EnumChatFormatting.DARK_PURPLE + LootCommand.spiderTalismansSession + "\n" +
                                EnumChatFormatting.LIGHT_PURPLE + LootCommand.spiderSwattersSession + "\n" +
                                EnumChatFormatting.GOLD + LootCommand.spiderMosquitosSession + "\n" +
                                EnumChatFormatting.AQUA + timeBetween + "\n" +
                                EnumChatFormatting.AQUA + bossesBetween;
                    break;
                case "zombie":
                    if (LootCommand.zombieTime == -1) {
                        timeBetween = "Never";
                    } else {
                        timeBetween = Utils.getTimeBetween(LootCommand.zombieTime, timeNow);
                    }
                    if (LootCommand.zombieBosses == -1) {
                        bossesBetween = "Never";
                    } else {
                        bossesBetween = nf.format(LootCommand.zombieBosses);
                    }
                    if (ToggleCommand.slayerCountTotal) {
                        drop20 = nf.format(LootCommand.zombieFoulFlesh);
                    } else {
                        drop20 = nf.format(LootCommand.zombieFoulFleshDrops) + " times";
                    }

                    dropsText = EnumChatFormatting.GOLD + "Revs Killed:\n" +
                                EnumChatFormatting.GREEN + "Revenant Flesh:\n" +
                                EnumChatFormatting.BLUE + "Foul Flesh:\n" +
                                EnumChatFormatting.DARK_GREEN + "Pestilence Runes:\n" +
                                EnumChatFormatting.WHITE + "Smite VI Books:\n" +
                                EnumChatFormatting.AQUA + "Undead Catalysts:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Beheaded Horrors:\n" +
                                EnumChatFormatting.RED + "Revenant Catalysts:\n" +
                                EnumChatFormatting.DARK_GREEN + "Snake Runes:\n" +
                                EnumChatFormatting.GOLD + "Scythe Blades:\n" +
                                EnumChatFormatting.AQUA + "Time Since RNG:\n" +
                                EnumChatFormatting.AQUA + "Bosses Since RNG:";
                    countText = EnumChatFormatting.GOLD + nf.format(LootCommand.zombieRevs) + "\n" +
                                EnumChatFormatting.GREEN + nf.format(LootCommand.zombieRevFlesh) + "\n" +
                                EnumChatFormatting.BLUE + drop20 + "\n" +
                                EnumChatFormatting.DARK_GREEN + LootCommand.zombiePestilences + "\n" +
                                EnumChatFormatting.WHITE + LootCommand.zombieBooks + "\n" +
                                EnumChatFormatting.AQUA + LootCommand.zombieUndeadCatas + "\n" +
                                EnumChatFormatting.DARK_PURPLE + LootCommand.zombieBeheadeds + "\n" +
                                EnumChatFormatting.RED + LootCommand.zombieRevCatas + "\n" +
                                EnumChatFormatting.DARK_GREEN + LootCommand.zombieSnakes + "\n" +
                                EnumChatFormatting.GOLD + LootCommand.zombieScythes + "\n" +
                                EnumChatFormatting.AQUA + timeBetween + "\n" +
                                EnumChatFormatting.AQUA + bossesBetween;
                    break;
                case "zombie_session":
                    if (LootCommand.zombieTimeSession == -1) {
                        timeBetween = "Never";
                    } else {
                        timeBetween = Utils.getTimeBetween(LootCommand.zombieTimeSession, timeNow);
                    }
                    if (LootCommand.zombieBossesSession == -1) {
                        bossesBetween = "Never";
                    } else {
                        bossesBetween = nf.format(LootCommand.zombieBossesSession);
                    }
                    if (ToggleCommand.slayerCountTotal) {
                        drop20 = nf.format(LootCommand.zombieFoulFleshSession);
                    } else {
                        drop20 = nf.format(LootCommand.zombieFoulFleshDropsSession) + " times";
                    }

                    dropsText = EnumChatFormatting.GOLD + "Revs Killed:\n" +
                                EnumChatFormatting.GREEN + "Revenant Flesh:\n" +
                                EnumChatFormatting.BLUE + "Foul Flesh:\n" +
                                EnumChatFormatting.DARK_GREEN + "Pestilence Runes:\n" +
                                EnumChatFormatting.WHITE + "Smite VI Books:\n" +
                                EnumChatFormatting.AQUA + "Undead Catalysts:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Beheaded Horrors:\n" +
                                EnumChatFormatting.RED + "Revenant Catalysts:\n" +
                                EnumChatFormatting.DARK_GREEN + "Snake Runes:\n" +
                                EnumChatFormatting.GOLD + "Scythe Blades:\n" +
                                EnumChatFormatting.AQUA + "Time Since RNG:\n" +
                                EnumChatFormatting.AQUA + "Bosses Since RNG:";
                    countText = EnumChatFormatting.GOLD + nf.format(LootCommand.zombieRevsSession) + "\n" +
                                EnumChatFormatting.GREEN + nf.format(LootCommand.zombieRevFleshSession) + "\n" +
                                EnumChatFormatting.BLUE + drop20 + "\n" +
                                EnumChatFormatting.DARK_GREEN + LootCommand.zombiePestilencesSession + "\n" +
                                EnumChatFormatting.WHITE + LootCommand.zombieBooksSession + "\n" +
                                EnumChatFormatting.AQUA + LootCommand.zombieUndeadCatasSession + "\n" +
                                EnumChatFormatting.DARK_PURPLE + LootCommand.zombieBeheadedsSession + "\n" +
                                EnumChatFormatting.RED + LootCommand.zombieRevCatasSession + "\n" +
                                EnumChatFormatting.DARK_GREEN + LootCommand.zombieSnakesSession + "\n" +
                                EnumChatFormatting.GOLD + LootCommand.zombieScythes + "\n" +
                                EnumChatFormatting.AQUA + timeBetween + "\n" +
                                EnumChatFormatting.AQUA + bossesBetween;
                    break;
                case "fishing":
                    if (LootCommand.empTime == -1) {
                        timeBetween = "Never";
                    } else {
                        timeBetween = Utils.getTimeBetween(LootCommand.empTime, timeNow);
                    }
                    if (LootCommand.empSCs == -1) {
                        bossesBetween = "Never";
                    } else {
                        bossesBetween = nf.format(LootCommand.empSCs);
                    }

                    dropsText = EnumChatFormatting.AQUA + "Creatures Caught:\n" +
                                EnumChatFormatting.AQUA + "Fishing Milestone:\n" +
                                EnumChatFormatting.GOLD + "Good Catches:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Great Catches:\n" +
                                EnumChatFormatting.GRAY + "Squids:\n" +
                                EnumChatFormatting.GREEN + "Sea Walkers:\n" +
                                EnumChatFormatting.DARK_GRAY + "Night Squids:\n" +
                                EnumChatFormatting.DARK_AQUA + "Sea Guardians:\n" +
                                EnumChatFormatting.BLUE + "Sea Witches:\n" +
                                EnumChatFormatting.GREEN + "Sea Archers:";
                    countText = EnumChatFormatting.AQUA + nf.format(LootCommand.seaCreatures) + "\n" +
                                EnumChatFormatting.AQUA + nf.format(LootCommand.fishingMilestone) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.goodCatches) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.greatCatches) + "\n" +
                                EnumChatFormatting.GRAY + nf.format(LootCommand.squids) + "\n" +
                                EnumChatFormatting.GREEN + nf.format(LootCommand.seaWalkers) + "\n" +
                                EnumChatFormatting.DARK_GRAY + nf.format(LootCommand.nightSquids) + "\n" +
                                EnumChatFormatting.DARK_AQUA + nf.format(LootCommand.seaGuardians) + "\n" +
                                EnumChatFormatting.BLUE + nf.format(LootCommand.seaWitches) + "\n" +
                                EnumChatFormatting.GREEN + nf.format(LootCommand.seaArchers);
                    // Seperated to save vertical space
                    dropsTextTwo = EnumChatFormatting.GREEN + "Monster of Deeps:\n" +
                                   EnumChatFormatting.YELLOW + "Catfishes:\n" +
                                   EnumChatFormatting.GOLD + "Carrot Kings:\n" +
                                   EnumChatFormatting.GRAY + "Sea Leeches:\n" +
                                   EnumChatFormatting.DARK_PURPLE + "Guardian Defenders:\n" +
                                   EnumChatFormatting.DARK_PURPLE + "Deep Sea Protectors:\n" +
                                   EnumChatFormatting.GOLD + "Hydras:\n" +
                                   EnumChatFormatting.GOLD + "Sea Emperors:\n" +
                                   EnumChatFormatting.AQUA + "Time Since Emp:\n" +
                                   EnumChatFormatting.AQUA + "Creatures Since Emp:";
                    countTextTwo = EnumChatFormatting.GREEN + nf.format(LootCommand.monsterOfTheDeeps) + "\n" +
                                   EnumChatFormatting.YELLOW + nf.format(LootCommand.catfishes) + "\n" +
                                   EnumChatFormatting.GOLD + nf.format(LootCommand.carrotKings) + "\n" +
                                   EnumChatFormatting.GRAY + nf.format(LootCommand.seaLeeches) + "\n" +
                                   EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.guardianDefenders) + "\n" +
                                   EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.deepSeaProtectors) + "\n" +
                                   EnumChatFormatting.GOLD + nf.format(LootCommand.hydras) + "\n" +
                                   EnumChatFormatting.GOLD + nf.format(LootCommand.seaEmperors) + "\n" +
                                   EnumChatFormatting.AQUA + timeBetween + "\n" +
                                   EnumChatFormatting.AQUA + bossesBetween;

                    if (ToggleCommand.splitFishing) {
                        new TextRenderer(mc, dropsTextTwo, (int) (MoveCommand.displayXY[0] + (160 * ScaleCommand.displayScale)), MoveCommand.displayXY[1], ScaleCommand.displayScale);
                        new TextRenderer(mc, countTextTwo, (int) (MoveCommand.displayXY[0] + (270 * ScaleCommand.displayScale)), MoveCommand.displayXY[1], ScaleCommand.displayScale);
                    } else {
                        dropsText += "\n" + dropsTextTwo;
                        countText += "\n" + countTextTwo;
                    }
                    break;
                case "fishing_session":
                    if (LootCommand.empTimeSession == -1) {
                        timeBetween = "Never";
                    } else {
                        timeBetween = Utils.getTimeBetween(LootCommand.empTimeSession, timeNow);
                    }
                    if (LootCommand.empSCsSession == -1) {
                        bossesBetween = "Never";
                    } else {
                        bossesBetween = nf.format(LootCommand.empSCsSession);
                    }

                    dropsText = EnumChatFormatting.AQUA + "Creatures Caught:\n" +
                                EnumChatFormatting.AQUA + "Fishing Milestone:\n" +
                                EnumChatFormatting.GOLD + "Good Catches:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Great Catches:\n" +
                                EnumChatFormatting.GRAY + "Squids:\n" +
                                EnumChatFormatting.GREEN + "Sea Walkers:\n" +
                                EnumChatFormatting.DARK_GRAY + "Night Squids:\n" +
                                EnumChatFormatting.DARK_AQUA + "Sea Guardians:\n" +
                                EnumChatFormatting.BLUE + "Sea Witches:\n" +
                                EnumChatFormatting.GREEN + "Sea Archers:";
                    countText = EnumChatFormatting.AQUA + nf.format(LootCommand.seaCreaturesSession) + "\n" +
                                EnumChatFormatting.AQUA + nf.format(LootCommand.fishingMilestoneSession) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.goodCatchesSession) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.greatCatchesSession) + "\n" +
                                EnumChatFormatting.GRAY + nf.format(LootCommand.squidsSession) + "\n" +
                                EnumChatFormatting.GREEN + nf.format(LootCommand.seaWalkersSession) + "\n" +
                                EnumChatFormatting.DARK_GRAY + nf.format(LootCommand.nightSquidsSession) + "\n" +
                                EnumChatFormatting.DARK_AQUA + nf.format(LootCommand.seaGuardiansSession) + "\n" +
                                EnumChatFormatting.BLUE + nf.format(LootCommand.seaWitchesSession) + "\n" +
                                EnumChatFormatting.GREEN + nf.format(LootCommand.seaArchersSession);
                    // Seperated to save vertical space
                    dropsTextTwo = EnumChatFormatting.GREEN + "Monster of Deeps:\n" +
                                   EnumChatFormatting.YELLOW + "Catfishes:\n" +
                                   EnumChatFormatting.GOLD + "Carrot Kings:\n" +
                                   EnumChatFormatting.GRAY + "Sea Leeches:\n" +
                                   EnumChatFormatting.DARK_PURPLE + "Guardian Defenders:\n" +
                                   EnumChatFormatting.DARK_PURPLE + "Deep Sea Protectors:\n" +
                                   EnumChatFormatting.GOLD + "Hydras:\n" +
                                   EnumChatFormatting.GOLD + "Sea Emperors:\n" +
                                   EnumChatFormatting.AQUA + "Time Since Emp:\n" +
                                   EnumChatFormatting.AQUA + "Creatures Since Emp:";
                    countTextTwo = EnumChatFormatting.GREEN + nf.format(LootCommand.monsterOfTheDeepsSession) + "\n" +
                                   EnumChatFormatting.YELLOW + nf.format(LootCommand.catfishesSession) + "\n" +
                                   EnumChatFormatting.GOLD + nf.format(LootCommand.carrotKingsSession) + "\n" +
                                   EnumChatFormatting.GRAY + nf.format(LootCommand.seaLeechesSession) + "\n" +
                                   EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.guardianDefendersSession) + "\n" +
                                   EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.deepSeaProtectorsSession) + "\n" +
                                   EnumChatFormatting.GOLD + nf.format(LootCommand.hydrasSession) + "\n" +
                                   EnumChatFormatting.GOLD + nf.format(LootCommand.seaEmperorsSession) + "\n" +
                                   EnumChatFormatting.AQUA + timeBetween + "\n" +
                                   EnumChatFormatting.AQUA + bossesBetween;

                    if (ToggleCommand.splitFishing) {
                        new TextRenderer(mc, dropsTextTwo, (int) (MoveCommand.displayXY[0] + (160 * ScaleCommand.displayScale)), MoveCommand.displayXY[1], ScaleCommand.displayScale);
                        new TextRenderer(mc, countTextTwo, (int) (MoveCommand.displayXY[0] + (270 * ScaleCommand.displayScale)), MoveCommand.displayXY[1], ScaleCommand.displayScale);
                    } else {
                        dropsText += "\n" + dropsTextTwo;
                        countText += "\n" + countTextTwo;
                    }
                    break;
                case "fishing_winter":
                    if (LootCommand.yetiTime == -1) {
                        timeBetween = "Never";
                    } else {
                        timeBetween = Utils.getTimeBetween(LootCommand.yetiTime, timeNow);
                    }
                    if (LootCommand.yetiSCs == -1) {
                        bossesBetween = "Never";
                    } else {
                        bossesBetween = nf.format(LootCommand.yetiSCs);
                    }

                    dropsText = EnumChatFormatting.AQUA + "Creatures Caught:\n" +
                                EnumChatFormatting.AQUA + "Fishing Milestone:\n" +
                                EnumChatFormatting.GOLD + "Good Catches:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Great Catches:\n" +
                                EnumChatFormatting.AQUA + "Frozen Steves:\n" +
                                EnumChatFormatting.WHITE + "Snowmans:\n" +
                                EnumChatFormatting.DARK_GREEN + "Grinches:\n" +
                                EnumChatFormatting.GOLD + "Yetis:\n" +
                                EnumChatFormatting.AQUA + "Time Since Yeti:\n" +
                                EnumChatFormatting.AQUA + "Creatures Since Yeti:";
                    countText = EnumChatFormatting.AQUA + nf.format(LootCommand.seaCreatures) + "\n" +
                                EnumChatFormatting.AQUA + nf.format(LootCommand.fishingMilestone) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.goodCatches) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.greatCatches) + "\n" +
                                EnumChatFormatting.AQUA + nf.format(LootCommand.frozenSteves) + "\n" +
                                EnumChatFormatting.WHITE + nf.format(LootCommand.frostyTheSnowmans) + "\n" +
                                EnumChatFormatting.DARK_GREEN + nf.format(LootCommand.grinches) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.yetis) + "\n" +
                                EnumChatFormatting.AQUA + timeBetween + "\n" +
                                EnumChatFormatting.AQUA + bossesBetween;
                    break;
                case "fishing_winter_session":
                    if (LootCommand.yetiTimeSession == -1) {
                        timeBetween = "Never";
                    } else {
                        timeBetween = Utils.getTimeBetween(LootCommand.yetiTimeSession, timeNow);
                    }
                    if (LootCommand.yetiSCsSession == -1) {
                        bossesBetween = "Never";
                    } else {
                        bossesBetween = nf.format(LootCommand.yetiSCsSession);
                    }

                    dropsText = EnumChatFormatting.AQUA + "Creatures Caught:\n" +
                                EnumChatFormatting.AQUA + "Fishing Milestone:\n" +
                                EnumChatFormatting.GOLD + "Good Catches:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Great Catches:\n" +
                                EnumChatFormatting.AQUA + "Frozen Steves:\n" +
                                EnumChatFormatting.WHITE + "Snowmans:\n" +
                                EnumChatFormatting.DARK_GREEN + "Grinches:\n" +
                                EnumChatFormatting.GOLD + "Yetis:\n" +
                                EnumChatFormatting.AQUA + "Time Since Yeti:\n" +
                                EnumChatFormatting.AQUA + "Creatures Since Yeti:";
                    countText = EnumChatFormatting.AQUA + nf.format(LootCommand.seaCreaturesSession) + "\n" +
                                EnumChatFormatting.AQUA + nf.format(LootCommand.fishingMilestoneSession) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.goodCatchesSession) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.greatCatchesSession) + "\n" +
                                EnumChatFormatting.AQUA + nf.format(LootCommand.frozenStevesSession) + "\n" +
                                EnumChatFormatting.WHITE + nf.format(LootCommand.frostyTheSnowmansSession) + "\n" +
                                EnumChatFormatting.DARK_GREEN + nf.format(LootCommand.grinchesSession) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.yetisSession) + "\n" +
                                EnumChatFormatting.AQUA + timeBetween + "\n" +
                                EnumChatFormatting.AQUA + bossesBetween;
                    break;
                case "fishing_festival":
                    dropsText = EnumChatFormatting.AQUA + "Creatures Caught:\n" +
                                EnumChatFormatting.AQUA + "Fishing Milestone:\n" +
                                EnumChatFormatting.GOLD + "Good Catches:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Great Catches:\n" +
                                EnumChatFormatting.LIGHT_PURPLE + "Nurse Sharks:\n" +
                                EnumChatFormatting.BLUE + "Blue Sharks:\n" +
                                EnumChatFormatting.GOLD + "Tiger Sharks:\n" +
                                EnumChatFormatting.WHITE + "Great White Sharks:";
                    countText = EnumChatFormatting.AQUA + nf.format(LootCommand.seaCreatures) + "\n" +
                                EnumChatFormatting.AQUA + nf.format(LootCommand.fishingMilestone) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.goodCatches) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.greatCatches) + "\n" +
                                EnumChatFormatting.LIGHT_PURPLE + nf.format(LootCommand.nurseSharks) + "\n" +
                                EnumChatFormatting.BLUE + nf.format(LootCommand.blueSharks) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.tigerSharks) + "\n" +
                                EnumChatFormatting.WHITE + nf.format(LootCommand.greatWhiteSharks);
                    break;
                case "fishing_festival_session":
                    dropsText = EnumChatFormatting.AQUA + "Creatures Caught:\n" +
                                EnumChatFormatting.AQUA + "Fishing Milestone:\n" +
                                EnumChatFormatting.GOLD + "Good Catches:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Great Catches:\n" +
                                EnumChatFormatting.LIGHT_PURPLE + "Nurse Sharks:\n" +
                                EnumChatFormatting.BLUE + "Blue Sharks:\n" +
                                EnumChatFormatting.GOLD + "Tiger Sharks:\n" +
                                EnumChatFormatting.WHITE + "Great White Sharks:";
                    countText = EnumChatFormatting.AQUA + nf.format(LootCommand.seaCreaturesSession) + "\n" +
                                EnumChatFormatting.AQUA + nf.format(LootCommand.fishingMilestoneSession) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.goodCatchesSession) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.greatCatchesSession) + "\n" +
                                EnumChatFormatting.LIGHT_PURPLE + nf.format(LootCommand.nurseSharksSession) + "\n" +
                                EnumChatFormatting.BLUE + nf.format(LootCommand.blueSharksSession) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.tigerSharksSession) + "\n" +
                                EnumChatFormatting.WHITE + nf.format(LootCommand.greatWhiteSharksSession);
                    break;
                case "fishing_spooky":
                    dropsText = EnumChatFormatting.AQUA + "Creatures Caught:\n" +
                                EnumChatFormatting.AQUA + "Fishing Milestone:\n" +
                                EnumChatFormatting.GOLD + "Good Catches:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Great Catches:\n" +
                                EnumChatFormatting.BLUE + "Scarecrows:\n" +
                                EnumChatFormatting.GRAY + "Nightmares:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Werewolves:\n" +
                                EnumChatFormatting.GOLD + "Phantom Fishers:\n" +
                                EnumChatFormatting.GOLD + "Grim Reapers:";
                    countText = EnumChatFormatting.AQUA + nf.format(LootCommand.seaCreatures) + "\n" +
                                EnumChatFormatting.AQUA + nf.format(LootCommand.fishingMilestone) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.goodCatches) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.greatCatches) + "\n" +
                                EnumChatFormatting.BLUE + nf.format(LootCommand.scarecrows) + "\n" +
                                EnumChatFormatting.GRAY + nf.format(LootCommand.nightmares) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.werewolfs) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.phantomFishers) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.grimReapers);
                    break;
                case "fishing_spooky_session":
                    dropsText = EnumChatFormatting.AQUA + "Creatures Caught:\n" +
                                EnumChatFormatting.AQUA + "Fishing Milestone:\n" +
                                EnumChatFormatting.GOLD + "Good Catches:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Great Catches:\n" +
                                EnumChatFormatting.BLUE + "Scarecrows:\n" +
                                EnumChatFormatting.GRAY + "Nightmares:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Werewolves:\n" +
                                EnumChatFormatting.GOLD + "Phantom Fishers:\n" +
                                EnumChatFormatting.GOLD + "Grim Reapers:";
                    countText = EnumChatFormatting.AQUA + nf.format(LootCommand.seaCreaturesSession) + "\n" +
                                EnumChatFormatting.AQUA + nf.format(LootCommand.fishingMilestoneSession) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.goodCatchesSession) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.greatCatchesSession) + "\n" +
                                EnumChatFormatting.BLUE + nf.format(LootCommand.scarecrowsSession) + "\n" +
                                EnumChatFormatting.GRAY + nf.format(LootCommand.nightmaresSession) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.werewolfsSession) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.phantomFishersSession) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.grimReapersSession);
                    break;
                case "mythological":
                    dropsText = EnumChatFormatting.GOLD + "Coins:\n" +
                                EnumChatFormatting.WHITE + "Griffin Feathers:\n" +
                                EnumChatFormatting.GOLD + "Crown of Greeds:\n" +
                                EnumChatFormatting.AQUA + "Washed up Souvenirs:\n" +
                                EnumChatFormatting.RED + "Minos Hunters:\n" +
                                EnumChatFormatting.GRAY + "Siamese Lynxes:\n" +
                                EnumChatFormatting.RED + "Minotaurs:\n" +
                                EnumChatFormatting.WHITE + "Gaia Constructs:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Minos Champions:\n" +
                                EnumChatFormatting.GOLD + "Minos Inquisitors:";
                    countText = EnumChatFormatting.GOLD + nf.format(LootCommand.mythCoins) + "\n" +
                                EnumChatFormatting.WHITE + nf.format(LootCommand.griffinFeathers) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.crownOfGreeds) + "\n" +
                                EnumChatFormatting.AQUA + nf.format(LootCommand.washedUpSouvenirs) + "\n" +
                                EnumChatFormatting.RED + nf.format(LootCommand.minosHunters) + "\n" +
                                EnumChatFormatting.GRAY + nf.format(LootCommand.siameseLynxes) + "\n" +
                                EnumChatFormatting.RED + nf.format(LootCommand.minotaurs) + "\n" +
                                EnumChatFormatting.WHITE + nf.format(LootCommand.gaiaConstructs) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.minosChampions) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.minosInquisitors);
                    break;
                case "mythological_session":
                    dropsText = EnumChatFormatting.GOLD + "Coins:\n" +
                                EnumChatFormatting.WHITE + "Griffin Feathers:\n" +
                                EnumChatFormatting.GOLD + "Crown of Greeds:\n" +
                                EnumChatFormatting.AQUA + "Washed up Souvenirs:\n" +
                                EnumChatFormatting.RED + "Minos Hunters:\n" +
                                EnumChatFormatting.GRAY + "Siamese Lynxes:\n" +
                                EnumChatFormatting.RED + "Minotaurs:\n" +
                                EnumChatFormatting.WHITE + "Gaia Constructs:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Minos Champions:\n" +
                                EnumChatFormatting.GOLD + "Minos Inquisitors:";
                    countText = EnumChatFormatting.GOLD + nf.format(LootCommand.mythCoinsSession) + "\n" +
                                EnumChatFormatting.WHITE + nf.format(LootCommand.griffinFeathersSession) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.crownOfGreedsSession) + "\n" +
                                EnumChatFormatting.AQUA + nf.format(LootCommand.washedUpSouvenirsSession) + "\n" +
                                EnumChatFormatting.RED + nf.format(LootCommand.minosHuntersSession) + "\n" +
                                EnumChatFormatting.GRAY + nf.format(LootCommand.siameseLynxesSession) + "\n" +
                                EnumChatFormatting.RED + nf.format(LootCommand.minotaursSession) + "\n" +
                                EnumChatFormatting.WHITE + nf.format(LootCommand.gaiaConstructsSession) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.minosChampionsSession) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.minosInquisitorsSession);
                    break;
                case "catacombs_floor_one":
                    dropsText = EnumChatFormatting.GOLD + "Recombobulators:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Fuming Potato Books:\n" +
                                EnumChatFormatting.BLUE + "Bonzo's Staffs:\n" +
                                EnumChatFormatting.AQUA + "Coins Spent:\n" +
                                EnumChatFormatting.AQUA + "Time Spent:";
                    countText = EnumChatFormatting.GOLD + nf.format(LootCommand.recombobulators) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.fumingPotatoBooks) + "\n" +
                                EnumChatFormatting.BLUE + nf.format(LootCommand.bonzoStaffs) + "\n" +
                                EnumChatFormatting.AQUA + Utils.getMoneySpent(LootCommand.f1CoinsSpent) + "\n" +
                                EnumChatFormatting.AQUA + Utils.getTimeBetween(0, LootCommand.f1TimeSpent);
                    break;
                case "catacombs_floor_one_session":
                    dropsText = EnumChatFormatting.GOLD + "Recombobulators:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Fuming Potato Books:\n" +
                                EnumChatFormatting.BLUE + "Bonzo's Staffs:\n" +
                                EnumChatFormatting.AQUA + "Coins Spent:\n" +
                                EnumChatFormatting.AQUA + "Time Spent:";
                    countText = EnumChatFormatting.GOLD + nf.format(LootCommand.recombobulatorsSession) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.fumingPotatoBooksSession) + "\n" +
                                EnumChatFormatting.BLUE + nf.format(LootCommand.bonzoStaffsSession) + "\n" +
                                EnumChatFormatting.AQUA + Utils.getMoneySpent(LootCommand.f1CoinsSpentSession) + "\n" +
                                EnumChatFormatting.AQUA + Utils.getTimeBetween(0, LootCommand.f1TimeSpentSession);
                    break;
                case "catacombs_floor_two":
                    dropsText = EnumChatFormatting.GOLD + "Recombobulators:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Fuming Potato Books:\n" +
                                EnumChatFormatting.BLUE + "Scarf's Studies:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Adaptive Blades:\n" +
                                EnumChatFormatting.AQUA + "Coins Spent:\n" +
                                EnumChatFormatting.AQUA + "Time Spent:";
                    countText = EnumChatFormatting.GOLD + nf.format(LootCommand.recombobulators) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.fumingPotatoBooks) + "\n" +
                                EnumChatFormatting.BLUE + nf.format(LootCommand.scarfStudies) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.adaptiveSwords) + "\n" +
                                EnumChatFormatting.AQUA + Utils.getMoneySpent(LootCommand.f2CoinsSpent) + "\n" +
                                EnumChatFormatting.AQUA + Utils.getTimeBetween(0, LootCommand.f2TimeSpent);
                    break;
                case "catacombs_floor_two_session":
                    dropsText = EnumChatFormatting.GOLD + "Recombobulators:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Fuming Potato Books:\n" +
                                EnumChatFormatting.BLUE + "Scarf's Studies:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Adaptive Blades:\n" +
                                EnumChatFormatting.AQUA + "Coins Spent:\n" +
                                EnumChatFormatting.AQUA + "Time Spent:";
                    countText = EnumChatFormatting.GOLD + nf.format(LootCommand.recombobulatorsSession) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.fumingPotatoBooksSession) + "\n" +
                                EnumChatFormatting.BLUE + nf.format(LootCommand.scarfStudiesSession) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.adaptiveSwordsSession) + "\n" +
                                EnumChatFormatting.AQUA + Utils.getMoneySpent(LootCommand.f2CoinsSpentSession) + "\n" +
                                EnumChatFormatting.AQUA + Utils.getTimeBetween(0, LootCommand.f2TimeSpentSession);
                    break;
                case "catacombs_floor_three":
                    dropsText = EnumChatFormatting.GOLD + "Recombobulators:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Fuming Potato Books:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Adaptive Helmets:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Adaptive Chestplates:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Adaptive Leggings:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Adaptive Boots:\n" +
                                EnumChatFormatting.AQUA + "Coins Spent:\n" +
                                EnumChatFormatting.AQUA + "Time Spent:";
                    countText = EnumChatFormatting.GOLD + nf.format(LootCommand.recombobulators) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.fumingPotatoBooks) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.adaptiveHelms) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.adaptiveChests) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.adaptiveLegs) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.adaptiveBoots) + "\n" +
                                EnumChatFormatting.AQUA + Utils.getMoneySpent(LootCommand.f3CoinsSpent) + "\n" +
                                EnumChatFormatting.AQUA + Utils.getTimeBetween(0, LootCommand.f3TimeSpent);
                    break;
                case "catacombs_floor_three_session":
                    dropsText = EnumChatFormatting.GOLD + "Recombobulators:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Fuming Potato Books:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Adaptive Helmets:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Adaptive Chestplates:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Adaptive Leggings:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Adaptive Boots:\n" +
                                EnumChatFormatting.AQUA + "Coins Spent:\n" +
                                EnumChatFormatting.AQUA + "Time Spent:";
                    countText = EnumChatFormatting.GOLD + nf.format(LootCommand.recombobulatorsSession) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.fumingPotatoBooksSession) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.adaptiveHelmsSession) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.adaptiveChestsSession) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.adaptiveLegsSession) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.adaptiveBootsSession) + "\n" +
                                EnumChatFormatting.AQUA + Utils.getMoneySpent(LootCommand.f3CoinsSpentSession) + "\n" +
                                EnumChatFormatting.AQUA + Utils.getTimeBetween(0, LootCommand.f3TimeSpentSession);
                    break;
                case "catacombs_floor_four":
                    dropsText = EnumChatFormatting.GOLD + "Recombobulators:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Fuming Potato Books:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Spirit Wings:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Spirit Bones:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Spirit Boots:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Spirit Swords:\n" +
                                EnumChatFormatting.GOLD + "Spirit Bows:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Epic Spirit Pets:\n" +
                                EnumChatFormatting.GOLD + "Leg Spirit Pets:\n" +
                                EnumChatFormatting.AQUA + "Coins Spent:\n" +
                                EnumChatFormatting.AQUA + "Time Spent:";
                    countText = EnumChatFormatting.GOLD + nf.format(LootCommand.recombobulators) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.fumingPotatoBooks) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.spiritWings) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.spiritBones) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.spiritBoots) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.spiritSwords) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.spiritBows) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.epicSpiritPets) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.legSpiritPets) + "\n" +
                                EnumChatFormatting.AQUA + Utils.getMoneySpent(LootCommand.f4CoinsSpent) + "\n" +
                                EnumChatFormatting.AQUA + Utils.getTimeBetween(0, LootCommand.f4TimeSpent);
                    break;
                case "catacombs_floor_four_session":
                    dropsText = EnumChatFormatting.GOLD + "Recombobulators:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Fuming Potato Books:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Spirit Wings:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Spirit Bones:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Spirit Boots:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Spirit Swords:\n" +
                                EnumChatFormatting.GOLD + "Spirit Bows:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Epic Spirit Pets:\n" +
                                EnumChatFormatting.GOLD + "Leg Spirit Pets:\n" +
                                EnumChatFormatting.AQUA + "Coins Spent:\n" +
                                EnumChatFormatting.AQUA + "Time Spent:";
                    countText = EnumChatFormatting.GOLD + nf.format(LootCommand.recombobulatorsSession) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.fumingPotatoBooksSession) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.spiritWingsSession) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.spiritBonesSession) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.spiritBootsSession) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.spiritSwordsSession) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.spiritBowsSession) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.epicSpiritPetsSession) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.legSpiritPetsSession) + "\n" +
                                EnumChatFormatting.AQUA + Utils.getMoneySpent(LootCommand.f4CoinsSpentSession) + "\n" +
                                EnumChatFormatting.AQUA + Utils.getTimeBetween(0, LootCommand.f4TimeSpentSession);
                    break;
                case "catacombs_floor_five":
                    dropsText = EnumChatFormatting.GOLD + "Recombobulators:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Fuming Potato Books:\n" +
                                EnumChatFormatting.BLUE + "Warped Stones:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Shadow Helmets:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Shadow Chestplates:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Shadow Leggings:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Shadow Boots:\n" +
                                EnumChatFormatting.GOLD + "Last Breaths:\n" +
                                EnumChatFormatting.GOLD + "Livid Daggers:\n" +
                                EnumChatFormatting.GOLD + "Shadow Furys:\n" +
                                EnumChatFormatting.AQUA + "Coins Spent:\n" +
                                EnumChatFormatting.AQUA + "Time Spent:";
                    countText = EnumChatFormatting.GOLD + nf.format(LootCommand.recombobulators) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.fumingPotatoBooks) + "\n" +
                                EnumChatFormatting.BLUE + nf.format(LootCommand.warpedStones) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.shadowAssHelms) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.shadowAssChests) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.shadowAssLegs) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.shadowAssBoots) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.lastBreaths) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.lividDaggers) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.shadowFurys) + "\n" +
                                EnumChatFormatting.AQUA + Utils.getMoneySpent(LootCommand.f5CoinsSpent) + "\n" +
                                EnumChatFormatting.AQUA + Utils.getTimeBetween(0, LootCommand.f5TimeSpent);
                    break;
                case "catacombs_floor_five_session":
                    dropsText = EnumChatFormatting.GOLD + "Recombobulators:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Fuming Potato Books:\n" +
                                EnumChatFormatting.BLUE + "Warped Stones:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Shadow Helmets:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Shadow Chestplates:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Shadow Leggings:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Shadow Boots:\n" +
                                EnumChatFormatting.GOLD + "Last Breaths:\n" +
                                EnumChatFormatting.GOLD + "Livid Daggers:\n" +
                                EnumChatFormatting.GOLD + "Shadow Furys:\n" +
                                EnumChatFormatting.AQUA + "Coins Spent:\n" +
                                EnumChatFormatting.AQUA + "Time Spent:";
                    countText = EnumChatFormatting.GOLD + nf.format(LootCommand.recombobulatorsSession) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.fumingPotatoBooksSession) + "\n" +
                                EnumChatFormatting.BLUE + nf.format(LootCommand.warpedStonesSession) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.shadowAssHelmsSession) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.shadowAssChestsSession) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.shadowAssLegsSession) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.shadowAssBootsSession) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.lastBreathsSession) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.lividDaggersSession) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.shadowFurysSession) + "\n" +
                                EnumChatFormatting.AQUA + Utils.getMoneySpent(LootCommand.f5CoinsSpentSession) + "\n" +
                                EnumChatFormatting.AQUA + Utils.getTimeBetween(0, LootCommand.f5TimeSpentSession);
                    break;
                case "catacombs_floor_six":
                    dropsText = EnumChatFormatting.GOLD + "Recombobulators:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Fuming Potato Books:\n" +
                                EnumChatFormatting.BLUE + "Ancient Roses:\n" +
                                EnumChatFormatting.GOLD + "Precursor Eyes:\n" +
                                EnumChatFormatting.GOLD + "Giant's Swords:\n" +
                                EnumChatFormatting.GOLD + "Necro Lord Helmets:\n" +
                                EnumChatFormatting.GOLD + "Necro Lord Chests:\n" +
                                EnumChatFormatting.GOLD + "Necro Lord Leggings:\n" +
                                EnumChatFormatting.GOLD + "Necro Lord Boots:\n" +
                                EnumChatFormatting.GOLD + "Necro Swords:\n" +
                                EnumChatFormatting.AQUA + "Coins Spent:\n" +
                                EnumChatFormatting.AQUA + "Time Spent:";
                    countText = EnumChatFormatting.GOLD + nf.format(LootCommand.recombobulators) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.fumingPotatoBooks) + "\n" +
                                EnumChatFormatting.BLUE + nf.format(LootCommand.ancientRoses) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.precursorEyes) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.giantsSwords) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.necroLordHelms) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.necroLordChests) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.necroLordLegs) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.necroLordBoots) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.necroSwords) + "\n" +
                                EnumChatFormatting.AQUA + Utils.getMoneySpent(LootCommand.f6CoinsSpent) + "\n" +
                                EnumChatFormatting.AQUA + Utils.getTimeBetween(0, LootCommand.f6TimeSpent);
                    break;
                case "catacombs_floor_six_session":
                    dropsText = EnumChatFormatting.GOLD + "Recombobulators:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Fuming Potato Books:\n" +
                                EnumChatFormatting.BLUE + "Ancient Roses:\n" +
                                EnumChatFormatting.GOLD + "Precursor Eyes:\n" +
                                EnumChatFormatting.GOLD + "Giant's Swords:\n" +
                                EnumChatFormatting.GOLD + "Necro Lord Helmets:\n" +
                                EnumChatFormatting.GOLD + "Necro Lord Chests:\n" +
                                EnumChatFormatting.GOLD + "Necro Lord Leggings:\n" +
                                EnumChatFormatting.GOLD + "Necro Lord Boots:\n" +
                                EnumChatFormatting.GOLD + "Necro Swords:\n" +
                                EnumChatFormatting.AQUA + "Coins Spent:\n" +
                                EnumChatFormatting.AQUA + "Time Spent:";
                    countText = EnumChatFormatting.GOLD + nf.format(LootCommand.recombobulatorsSession) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.fumingPotatoBooksSession) + "\n" +
                                EnumChatFormatting.BLUE + nf.format(LootCommand.ancientRosesSession) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.precursorEyesSession) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.giantsSwordsSession) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.necroLordHelmsSession) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.necroLordChestsSession) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.necroLordLegsSession) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.necroLordBootsSession) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.necroSwordsSession) + "\n" +
                                EnumChatFormatting.AQUA + Utils.getMoneySpent(LootCommand.f6CoinsSpentSession) + "\n" +
                                EnumChatFormatting.AQUA + Utils.getTimeBetween(0, LootCommand.f6TimeSpentSession);
                    break;
                case "catacombs_floor_seven":
                    dropsText = EnumChatFormatting.GOLD + "Recombobulators:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Fuming Potato Books:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Wither Bloods:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Wither Cloaks:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Implosions:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Wither Shields:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Shadow Warps:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Necron's Handles:\n" +
                                EnumChatFormatting.GOLD + "Auto Recombobs:\n" +
                                EnumChatFormatting.GOLD + "Wither Helmets:\n" +
                                EnumChatFormatting.GOLD + "Wither Chests:\n" +
                                EnumChatFormatting.GOLD + "Wither Leggings:\n" +
                                EnumChatFormatting.GOLD + "Wither Boots:\n" +
                                EnumChatFormatting.AQUA + "Coins Spent:\n" +
                                EnumChatFormatting.AQUA + "Time Spent:";
                    countText = EnumChatFormatting.GOLD + nf.format(LootCommand.recombobulators) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.fumingPotatoBooks) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.witherBloods) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.witherCloaks) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.implosions) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.witherShields) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.shadowWarps) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.necronsHandles) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.autoRecombs) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.witherHelms) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.witherChests) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.witherLegs) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.witherBoots) + "\n" +
                                EnumChatFormatting.AQUA + Utils.getMoneySpent(LootCommand.f7CoinsSpent) + "\n" +
                                EnumChatFormatting.AQUA + Utils.getTimeBetween(0, LootCommand.f7TimeSpent);
                    break;
                case "catacombs_floor_seven_session":
                    dropsText = EnumChatFormatting.GOLD + "Recombobulators:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Fuming Potato Books:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Wither Bloods:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Wither Cloaks:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Implosions:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Wither Shields:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Shadow Warps:\n" +
                                EnumChatFormatting.DARK_PURPLE + "Necron's Handles:\n" +
                                EnumChatFormatting.GOLD + "Auto Recombobulators:\n" +
                                EnumChatFormatting.GOLD + "Wither Helmets:\n" +
                                EnumChatFormatting.GOLD + "Wither Chests:\n" +
                                EnumChatFormatting.GOLD + "Wither Leggings:\n" +
                                EnumChatFormatting.GOLD + "Wither Boots:\n" +
                                EnumChatFormatting.AQUA + "Coins Spent:\n" +
                                EnumChatFormatting.AQUA + "Time Spent:";
                    countText = EnumChatFormatting.GOLD + nf.format(LootCommand.recombobulatorsSession) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.fumingPotatoBooksSession) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.witherBloodsSession) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.witherCloaksSession) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.implosionsSession) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.witherShieldsSession) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.shadowWarpsSession) + "\n" +
                                EnumChatFormatting.DARK_PURPLE + nf.format(LootCommand.necronsHandlesSession) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.autoRecombsSession) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.witherHelmsSession) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.witherChestsSession) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.witherLegsSession) + "\n" +
                                EnumChatFormatting.GOLD + nf.format(LootCommand.witherBootsSession) + "\n" +
                                EnumChatFormatting.AQUA + Utils.getMoneySpent(LootCommand.f7CoinsSpentSession) + "\n" +
                                EnumChatFormatting.AQUA + Utils.getTimeBetween(0, LootCommand.f7TimeSpentSession);
                    break;
                default:
                    System.out.println("Display was an unknown value, turning off.");
                    DisplayCommand.display = "off";
                    ConfigHandler.writeStringConfig("misc", "display", "off");
            }
            new TextRenderer(mc, dropsText, MoveCommand.displayXY[0], MoveCommand.displayXY[1], ScaleCommand.displayScale);
            new TextRenderer(mc, countText, (int) (MoveCommand.displayXY[0] + (110 * ScaleCommand.displayScale)), MoveCommand.displayXY[1], ScaleCommand.displayScale);
        }

        if (showTitle) {
            Utils.drawTitle(titleText);
        }
        if (showSkill) {
            new TextRenderer(mc, skillText, MoveCommand.skill50XY[0], MoveCommand.skill50XY[1], ScaleCommand.skill50Scale);
        }
    }
    
    @SubscribeEvent
    public void onRenderEntity(RenderLivingEvent.Pre event) {
        Entity entity = event.entity;
        String name = entity.getName();
        if (entity instanceof EntityArmorStand) {
            if (ToggleCommand.lividSolverToggled && !entity.isEntityEqual(livid) && name.contains("Livid") && name.length() > 5 && name.charAt(1) == name.charAt(5)) {
                event.setCanceled(true);
            }
        }
    }

    @SubscribeEvent(priority = EventPriority.HIGHEST)
    public void onSound(final PlaySoundEvent event) {
        if (!Utils.inSkyblock) return;
        if (event.name.equals("note.pling")) {
            // Don't check twice within 3 seconds
            checkItemsNow = System.currentTimeMillis() / 1000;
            if (checkItemsNow - itemsChecked < 3) return;

            List<String> scoreboard = ScoreboardHandler.getSidebarLines();

            for (String line : scoreboard) {
                String cleanedLine = ScoreboardHandler.cleanSB(line);
                // If Hypixel lags and scoreboard doesn't update
                if (cleanedLine.contains("Boss slain!") || cleanedLine.contains("Slay the boss!")) {
                    int itemTeeth = Utils.getItems("Wolf Tooth");
                    int itemWheels = Utils.getItems("Hamster Wheel");
                    int itemWebs = Utils.getItems("Tarantula Web");
                    int itemTAP = Utils.getItems("Toxic Arrow Poison");
                    int itemRev = Utils.getItems("Revenant Flesh");
                    int itemFoul = Utils.getItems("Foul Flesh");

                    // If no items, are detected, allow check again. Should fix items not being found
                    if (itemTeeth + itemWheels + itemWebs + itemTAP + itemRev + itemFoul > 0) {
                        itemsChecked = System.currentTimeMillis() / 1000;
                        LootCommand.wolfTeeth += itemTeeth;
                        LootCommand.wolfWheels += itemWheels;
                        LootCommand.spiderWebs += itemWebs;
                        LootCommand.spiderTAP += itemTAP;
                        LootCommand.zombieRevFlesh += itemRev;
                        LootCommand.zombieFoulFlesh += itemFoul;
                        LootCommand.wolfTeethSession += itemTeeth;
                        LootCommand.wolfWheelsSession += itemWheels;
                        LootCommand.spiderWebsSession += itemWebs;
                        LootCommand.spiderTAPSession += itemTAP;
                        LootCommand.zombieRevFleshSession += itemRev;
                        LootCommand.zombieFoulFleshSession += itemFoul;

                        ConfigHandler.writeIntConfig("wolf", "teeth", LootCommand.wolfTeeth);
                        ConfigHandler.writeIntConfig("wolf", "wheel", LootCommand.wolfWheels);
                        ConfigHandler.writeIntConfig("spider", "web", LootCommand.spiderWebs);
                        ConfigHandler.writeIntConfig("spider", "tap", LootCommand.spiderTAP);
                        ConfigHandler.writeIntConfig("zombie", "revFlesh", LootCommand.zombieRevFlesh);
                        ConfigHandler.writeIntConfig("zombie", "foulFlesh", LootCommand.zombieFoulFlesh);
                    }
                }
            }
        }
    }

    @SubscribeEvent(priority = EventPriority.HIGHEST)
    public void onTooltip(ItemTooltipEvent event) {
        if (!Utils.inSkyblock) return;
        if (event.toolTip == null) return;

        ItemStack item = event.itemStack;
        Minecraft mc = Minecraft.getMinecraft();
        EntityPlayerSP player = mc.thePlayer;

        if (ToggleCommand.goldenToggled) {
            for (int i = 0; i < event.toolTip.size(); i++) {
                event.toolTip.set(i, Utils.returnGoldenEnchants(event.toolTip.get(i)));
            }
        }

        if (ToggleCommand.expertiseLoreToggled) {
            if (item.hasTagCompound()) {
                NBTTagCompound tags = item.getSubCompound("ExtraAttributes", false);
                if (tags != null) {
                    if (tags.hasKey("expertise_kills")) {
                        int index = 4;
                        if (!Minecraft.getMinecraft().gameSettings.advancedItemTooltips) index -= 2;

                        event.toolTip.add(event.toolTip.size() - index, "");
                        event.toolTip.add(event.toolTip.size() - index, "Expertise Kills: " + EnumChatFormatting.RED + tags.getInteger("expertise_kills"));
                        if (Utils.expertiseKillsLeft(tags.getInteger("expertise_kills")) != -1) {
                            event.toolTip.add(event.toolTip.size() - index, Utils.expertiseKillsLeft(tags.getInteger("expertise_kills")) + " kills to tier up!");
                        }
                    }
                }
            }
        }

        if (mc.currentScreen instanceof GuiChest) {
            ContainerChest chest = (ContainerChest) player.openContainer;
            IInventory inv = chest.getLowerChestInventory();
            String chestName = inv.getDisplayName().getUnformattedText();

            if (ToggleCommand.superpairsToggled && chestName.contains("Superpairs (")) {
                if (Item.getIdFromItem(item.getItem()) != 95) return;
                if (item.getDisplayName().contains("Click any button") || item.getDisplayName().contains("Click a second button") || item.getDisplayName().contains("Next button is instantly rewarded") || item.getDisplayName().contains("Stained Glass")) {
                    Slot slot = ((GuiChest) mc.currentScreen).getSlotUnderMouse();
                    ItemStack itemStack = experimentTableSlots[slot.getSlotIndex()];
                    if (itemStack == null) return;
                    String itemName = itemStack.getDisplayName();

                    if (event.toolTip.stream().anyMatch(x -> StringUtils.stripControlCodes(x).equals(StringUtils.stripControlCodes(itemName))))
                        return;
                    event.toolTip.removeIf(x -> {
                        x = StringUtils.stripControlCodes(x);
                        if (x.equals("minecraft:stained_glass")) return true;
                        return x.startsWith("NBT: ");
                    });
                    event.toolTip.add(itemName);
                    event.toolTip.add(itemStack.getItem().getRegistryName());
                }

            }
        }
    }

    @SubscribeEvent(priority = EventPriority.LOW)
    public void onTooltipLow(ItemTooltipEvent event) {
        if (!Utils.inSkyblock) return;
        if (event.toolTip == null) return;

        Minecraft mc = Minecraft.getMinecraft();
        EntityPlayerSP player = mc.thePlayer;

        if (mc.currentScreen instanceof GuiChest) {
            ContainerChest chest = (ContainerChest) player.openContainer;
            IInventory inv = chest.getLowerChestInventory();
            String chestName = inv.getDisplayName().getUnformattedText();

            if (ToggleCommand.hideTooltipsInExperimentAddonsToggled && (chestName.startsWith("Ultrasequencer (") || chestName.startsWith("Chronomatron ("))) {
                event.toolTip.clear();
            }

            if (ToggleCommand.clickInOrderToggled && chestName.equals("Click in order!")) {
                event.toolTip.clear();
            }

        }
    }

    @SubscribeEvent
    public void onTick(TickEvent.ClientTickEvent event) {
        if (event.phase != Phase.START) return;

        Minecraft mc = Minecraft.getMinecraft();
        World world = mc.theWorld;
        EntityPlayerSP player = mc.thePlayer;

        // Checks every second
        tickAmount++;
        if (tickAmount % 20 == 0) {
            if (player != null) {
                Utils.checkForSkyblock();
                Utils.checkForDungeons();
            }

            if (DisplayCommand.auto && world != null && player != null) {
                List<String> scoreboard = ScoreboardHandler.getSidebarLines();
                boolean found = false;
                for (String s : scoreboard) {
                    String sCleaned = ScoreboardHandler.cleanSB(s);
                    if (sCleaned.contains("Sven Packmaster")) {
                        DisplayCommand.display = "wolf";
                        found = true;
                    } else if (sCleaned.contains("Tarantula Broodfather")) {
                        DisplayCommand.display = "spider";
                        found = true;
                    } else if (sCleaned.contains("Revenant Horror")) {
                        DisplayCommand.display = "zombie";
                        found = true;
                    } else if (sCleaned.contains("The Catacombs (")) {
                        if (sCleaned.contains("F1")) {
                            DisplayCommand.display = "catacombs_floor_one";
                        } else if (sCleaned.contains("F2")) {
                            DisplayCommand.display = "catacombs_floor_two";
                        } else if (sCleaned.contains("F3")) {
                            DisplayCommand.display = "catacombs_floor_three";
                        } else if (sCleaned.contains("F4")) {
                            DisplayCommand.display = "catacombs_floor_four";
                        } else if (sCleaned.contains("F5")) {
                            DisplayCommand.display = "catacombs_floor_five";
                        } else if (sCleaned.contains("F6")) {
                            DisplayCommand.display = "catacombs_floor_six";
                        } else if (sCleaned.contains("F7")) {
                            DisplayCommand.display = "catacombs_floor_seven";
                        }
                        found = true;
                    }
                }
                for (int i = 0; i < 8; i++) {
                    ItemStack hotbarItem = player.inventory.getStackInSlot(i);
                    if (hotbarItem == null) continue;
                    if (hotbarItem.getDisplayName().contains("Ancestral Spade")) {
                        DisplayCommand.display = "mythological";
                        found = true;
                    }
                }
                if (!found) DisplayCommand.display = "off";
                ConfigHandler.writeStringConfig("misc", "display", DisplayCommand.display);
            }

            if (ToggleCommand.creeperToggled && Utils.inDungeons && world != null && player != null) {
                double x = player.posX;
                double y = player.posY;
                double z = player.posZ;
                // Find creepers nearby
                AxisAlignedBB creeperScan = new AxisAlignedBB(x - 14, y - 8, z - 13, x + 14, y + 8, z + 13); // 28x16x26 cube
                List<EntityCreeper> creepers = world.getEntitiesWithinAABB(EntityCreeper.class, creeperScan);
                // Check if creeper is nearby
                if (creepers.size() > 0 && !creepers.get(0).isInvisible()) { // Don't show Wither Cloak creepers
                    EntityCreeper creeper = creepers.get(0);
                    // Start creeper line drawings
                    creeperLines.clear();
                    if (!drawCreeperLines) creeperLocation = new Vec3(creeper.posX, creeper.posY + 1, creeper.posZ);
                    drawCreeperLines = true;
                    // Search for nearby sea lanterns and prismarine blocks
                    BlockPos point1 = new BlockPos(creeper.posX - 14, creeper.posY - 7, creeper.posZ - 13);
                    BlockPos point2 = new BlockPos(creeper.posX + 14, creeper.posY + 10, creeper.posZ + 13);
                    Iterable<BlockPos> blocks = BlockPos.getAllInBox(point1, point2);
                    for (BlockPos blockPos : blocks) {
                        Block block = world.getBlockState(blockPos).getBlock();
                        if (block == Blocks.sea_lantern || block == Blocks.prismarine) {
                            // Connect block to nearest block on opposite side
                            Vec3 startBlock = new Vec3(blockPos.getX() + 0.5, blockPos.getY() + 0.5, blockPos.getZ() + 0.5);
                            BlockPos oppositeBlock = Utils.getFirstBlockPosAfterVectors(mc, startBlock, creeperLocation, 10, 20);
                            BlockPos endBlock = Utils.getNearbyBlock(mc, oppositeBlock, Blocks.sea_lantern, Blocks.prismarine);
                            if (endBlock != null && startBlock.yCoord > 68 && endBlock.getY() > 68) { // Don't create line underground
                                // Add to list for drawing
                                Vec3[] insertArray = {startBlock, new Vec3(endBlock.getX() + 0.5, endBlock.getY() + 0.5, endBlock.getZ() + 0.5)};
                                creeperLines.add(insertArray);
                            }
                        }
                    }
                } else {
                    drawCreeperLines = false;
                }
            }

            if (ToggleCommand.waterToggled && Utils.inDungeons && world != null && player != null) {
                // multi thread block checking
                new Thread(() -> {
                    prevInWaterRoom = inWaterRoom;
                    inWaterRoom = false;
                    boolean foundPiston = false;
                    boolean done = false;
                    for (int x = (int) (player.posX - 13); x <= player.posX + 13; x++) {
                        for (int z = (int) (player.posZ - 13); z <= player.posZ + 13; z++) {
                            BlockPos blockPos = new BlockPos(x, 54, z);
                            if (world.getBlockState(blockPos).getBlock() == Blocks.sticky_piston) {
                                foundPiston = true;
                                break;
                            }
                        }
                        if (foundPiston) break;
                    }

                    if (foundPiston) {
                        for (int x = (int) (player.posX - 25); x <= player.posX + 25; x++) {
                            for (int z = (int) (player.posZ - 25); z <= player.posZ + 25; z++) {
                                BlockPos blockPos = new BlockPos(x, 82, z);
                                if (world.getBlockState(blockPos).getBlock() == Blocks.piston_head) {
                                    inWaterRoom = true;
                                    if (!prevInWaterRoom) {
                                        boolean foundGold = false;
                                        boolean foundClay = false;
                                        boolean foundEmerald = false;
                                        boolean foundQuartz = false;
                                        boolean foundDiamond = false;

                                        // Detect first blocks near water stream
                                        BlockPos scan1 = new BlockPos(x + 1, 78, z + 1);
                                        BlockPos scan2 = new BlockPos(x - 1, 77, z - 1);
                                        Iterable<BlockPos> blocks = BlockPos.getAllInBox(scan1, scan2);
                                        for (BlockPos puzzleBlockPos : blocks) {
                                            Block block = world.getBlockState(puzzleBlockPos).getBlock();
                                            if (block == Blocks.gold_block) {
                                                foundGold = true;
                                            } else if (block == Blocks.hardened_clay) {
                                                foundClay = true;
                                            } else if (block == Blocks.emerald_block) {
                                                foundEmerald = true;
                                            } else if (block == Blocks.quartz_block) {
                                                foundQuartz = true;
                                            } else if (block == Blocks.diamond_block) {
                                                foundDiamond = true;
                                            }
                                        }

                                        int variant = 0;
                                        if (foundGold && foundClay) {
                                            variant = 1;
                                        } else if (foundEmerald && foundQuartz) {
                                            variant = 2;
                                        } else if (foundQuartz && foundDiamond) {
                                            variant = 3;
                                        } else if (foundGold && foundQuartz) {
                                            variant = 4;
                                        }

                                        // Return solution
                                        String purple;
                                        String orange;
                                        String blue;
                                        String green;
                                        String red;
                                        switch (variant) {
                                            case 1:
                                                purple = EnumChatFormatting.WHITE + "Quartz, " + EnumChatFormatting.YELLOW + "Gold, " + EnumChatFormatting.AQUA + "Diamond, " + EnumChatFormatting.RED + "Clay";
                                                orange = EnumChatFormatting.YELLOW + "Gold, " + EnumChatFormatting.DARK_GRAY + "Coal, " + EnumChatFormatting.GREEN + "Emerald";
                                                blue = EnumChatFormatting.WHITE + "Quartz, " + EnumChatFormatting.YELLOW + "Gold, " + EnumChatFormatting.GREEN + "Emerald, " + EnumChatFormatting.RED + "Clay";
                                                green = EnumChatFormatting.GREEN + "Emerald";
                                                red = EnumChatFormatting.GRAY + "None";
                                                break;
                                            case 2:
                                                purple = EnumChatFormatting.DARK_GRAY + "Coal";
                                                orange = EnumChatFormatting.WHITE + "Quartz, " + EnumChatFormatting.YELLOW + "Gold, " + EnumChatFormatting.GREEN + "Emerald, " + EnumChatFormatting.RED + "Clay";
                                                blue = EnumChatFormatting.WHITE + "Quartz, " + EnumChatFormatting.AQUA + "Diamond, " + EnumChatFormatting.GREEN + "Emerald";
                                                green = EnumChatFormatting.WHITE + "Quartz, " + EnumChatFormatting.GREEN + "Emerald";
                                                red = EnumChatFormatting.WHITE + "Quartz, " + EnumChatFormatting.DARK_GRAY + "Coal, " + EnumChatFormatting.GREEN + "Emerald";
                                                break;
                                            case 3:
                                                purple = EnumChatFormatting.WHITE + "Quartz, " + EnumChatFormatting.YELLOW + "Gold, " + EnumChatFormatting.AQUA + "Diamond";
                                                orange = EnumChatFormatting.GREEN + "Emerald";
                                                blue = EnumChatFormatting.WHITE + "Quartz, " + EnumChatFormatting.AQUA + "Diamond";
                                                green = EnumChatFormatting.GRAY + "None";
                                                red = EnumChatFormatting.YELLOW + "Gold, " + EnumChatFormatting.GREEN + "Emerald";
                                                break;
                                            case 4:
                                                purple = EnumChatFormatting.WHITE + "Quartz, " + EnumChatFormatting.YELLOW + "Gold, " + EnumChatFormatting.GREEN + "Emerald, " + EnumChatFormatting.RED + "Clay";
                                                orange = EnumChatFormatting.YELLOW + "Gold, " + EnumChatFormatting.DARK_GRAY + "Coal";
                                                blue = EnumChatFormatting.WHITE + "Quartz, " + EnumChatFormatting.YELLOW + "Gold, " + EnumChatFormatting.DARK_GRAY + "Coal, " + EnumChatFormatting.GREEN + "Emerald, " + EnumChatFormatting.RED + "Clay";
                                                green = EnumChatFormatting.YELLOW + "Gold, " + EnumChatFormatting.GREEN + "Emerald";
                                                red = EnumChatFormatting.YELLOW + "Gold, " + EnumChatFormatting.AQUA + "Diamond, " + EnumChatFormatting.GREEN + "Emerald, " + EnumChatFormatting.RED + "Clay";
                                                break;
                                            default:
                                                purple = orange = blue = green = red = ERROR_COLOUR + "Error detecting water puzzle variant.";
                                                break;
                                        }
                                        waterAnswers = MAIN_COLOUR + "The following levers must be down:\n" +
                                                       EnumChatFormatting.DARK_PURPLE + "Purple: " + purple + "\n" +
                                                       EnumChatFormatting.GOLD + "Orange: " + orange + "\n" +
                                                       EnumChatFormatting.BLUE + "Blue: " + blue + "\n" +
                                                       EnumChatFormatting.GREEN + "Green: " + green + "\n" +
                                                       EnumChatFormatting.RED + "Red: " + red;
                                        done = true;
                                        break;
                                    }
                                }
                            }
                            if (done) break;
                        }
                    } else {
                        waterAnswers = null;
                    }
                }).start();
            }

            if (ToggleCommand.lividSolverToggled && Utils.inDungeons && !foundLivid && world != null) {
                boolean inF5 = false;

                List<String> scoreboard = ScoreboardHandler.getSidebarLines();
                for (String s : scoreboard) {
                    String sCleaned = ScoreboardHandler.cleanSB(s);
                    if (sCleaned.contains("The Catacombs (F5)")) {
                        inF5 = true;
                        break;
                    }
                }

                if (inF5) {
                    List<Entity> loadedLivids = new ArrayList<>();
                    List<Entity> entities = world.getLoadedEntityList();
                    for (Entity entity : entities) {
                        String name = entity.getName();
                        if (name.contains("Livid") && name.length() > 5 && name.charAt(1) == name.charAt(5) && !loadedLivids.contains(entity)) {
                            loadedLivids.add(entity);
                        }
                    }
                    if (loadedLivids.size() > 8) {
                        livid = loadedLivids.get(0);
                        foundLivid = true;
                    }
                }
            }

            if (ToggleCommand.ticTacToeToggled && Utils.inDungeons && world != null && player != null) {
                correctTicTacToeButton = null;
                AxisAlignedBB aabb = new AxisAlignedBB(player.posX - 6, player.posY - 6, player.posZ - 6, player.posX + 6, player.posY + 6, player.posZ + 6);
                List<EntityItemFrame> itemFrames = world.getEntitiesWithinAABB(EntityItemFrame.class, aabb);
                List<EntityItemFrame> itemFramesWithMaps = new ArrayList<>();
                // Find how many item frames have maps already placed
                for (EntityItemFrame itemFrame : itemFrames) {
                    ItemStack item = itemFrame.getDisplayedItem();
                    if (item == null || !(item.getItem() instanceof ItemMap)) continue;
                    MapData mapData = ((ItemMap) item.getItem()).getMapData(item, world);
                    if (mapData == null) continue;

                    itemFramesWithMaps.add(itemFrame);
                }

                // Only run when it's your turn
                if (itemFramesWithMaps.size() != 9 && itemFramesWithMaps.size() % 2 == 1) {
                    char[][] board = new char[3][3];
                    BlockPos leftmostRow = null;
                    int sign = 1;
                    char facing = 'X';
                    for (EntityItemFrame itemFrame : itemFramesWithMaps) {
                        ItemStack map = itemFrame.getDisplayedItem();
                        MapData mapData = ((ItemMap) map.getItem()).getMapData(map, world);

                        // Find position on board
                        int row = 0;
                        int column;
                        sign = 1;

                        if (itemFrame.facingDirection == EnumFacing.SOUTH || itemFrame.facingDirection == EnumFacing.WEST) {
                            sign = -1;
                        }

                        BlockPos itemFramePos = new BlockPos(itemFrame.posX, Math.floor(itemFrame.posY), itemFrame.posZ);
                        for (int i = 2; i >= 0; i--) {
                            int realI = i * sign;
                            BlockPos blockPos = itemFramePos;
                            if (itemFrame.posX % 0.5 == 0) {
                                blockPos = itemFramePos.add(realI, 0, 0);
                            } else if (itemFrame.posZ % 0.5 == 0) {
                                blockPos = itemFramePos.add(0, 0, realI);
                                facing = 'Z';
                            }
                            Block block = world.getBlockState(blockPos).getBlock();
                            if (block == Blocks.air || block == Blocks.stone_button) {
                                leftmostRow = blockPos;
                                row = i;
                                break;
                            }
                        }

                        if (itemFrame.posY == 72.5) {
                            column = 0;
                        } else if (itemFrame.posY == 71.5) {
                            column = 1;
                        } else if (itemFrame.posY == 70.5) {
                            column = 2;
                        } else {
                            continue;
                        }

                        // Get colour
                        // Middle pixel = 64*128 + 64 = 8256
                        int colourInt = mapData.colors[8256] & 255;
                        if (colourInt == 114) {
                            board[column][row] = 'X';
                        } else if (colourInt == 33) {
                            board[column][row] = 'O';
                        }
                    }
                    System.out.println("Board: " + Arrays.deepToString(board));

                    // Draw best move
                    int bestMove = TicTacToeUtils.getBestMove(board) - 1;
                    System.out.println("Best move slot: " + bestMove);
                    if (leftmostRow != null) {
                        double drawX = facing == 'X' ? leftmostRow.getX() - sign * (bestMove % 3) : leftmostRow.getX();
                        double drawY = 72 - Math.floor(bestMove / 3);
                        double drawZ = facing == 'Z' ? leftmostRow.getZ() - sign * (bestMove % 3) : leftmostRow.getZ();

                        correctTicTacToeButton = new AxisAlignedBB(drawX, drawY, drawZ, drawX + 1, drawY + 1, drawZ + 1);
                    }
                }
            }

            tickAmount = 0;
        }

        // Checks 5 times per second
        if (tickAmount % 4 == 0) {
            if (ToggleCommand.blazeToggled && Utils.inDungeons && world != null) {
                List<Entity> entities = world.getLoadedEntityList();
                int highestHealth = 0;
                highestBlaze = null;
                int lowestHealth = 99999999;
                lowestBlaze = null;

                for (Entity entity : entities) {
                    if (entity.getName().contains("Blaze") && entity.getName().contains("/")) {
                        String blazeName = StringUtils.stripControlCodes(entity.getName());
                        try {
                            int health = Integer.parseInt(blazeName.substring(blazeName.indexOf("/") + 1, blazeName.length() - 1));
                            if (health > highestHealth) {
                                highestHealth = health;
                                highestBlaze = entity;
                            }
                            if (health < lowestHealth) {
                                lowestHealth = health;
                                lowestBlaze = entity;
                            }
                        } catch (NumberFormatException ex) {
                            ex.printStackTrace();
                        }
                    }
                }
            }
        }

        // Checks 10 times per second
        if (tickAmount % 2 == 0) {
            if (ToggleCommand.lowHealthNotifyToggled && Utils.inDungeons && world != null) {
                List<String> scoreboard = ScoreboardHandler.getSidebarLines();
                for (String score : scoreboard) {
                    if (score.endsWith("❤") && score.matches(".* §c\\d.*")) {
                        String name = score.substring(score.indexOf(" ") + 1);
                        Utils.createTitle(EnumChatFormatting.RED + "LOW HEALTH!\n" + name, 1);
                        break;
                    }
                }
            }
        }

        // Runs 20 times per second
        if (mc.currentScreen instanceof GuiChest) {
            if (player == null) return;
            ContainerChest chest = (ContainerChest) player.openContainer;
            List<Slot> invSlots = ((GuiChest) mc.currentScreen).inventorySlots.inventorySlots;
            String chestName = chest.getLowerChestInventory().getDisplayName().getUnformattedText().trim();

            if (ToggleCommand.ultrasequencerToggled && chestName.startsWith("Ultrasequencer (")) {
                if (invSlots.get(49).getStack() != null && invSlots.get(49).getStack().getDisplayName().equals("§aRemember the pattern!")) {
                    for (int i = 9; i <= 44; i++) {
                        if (invSlots.get(i) == null || invSlots.get(i).getStack() == null) continue;
                        String itemName = StringUtils.stripControlCodes(invSlots.get(i).getStack().getDisplayName());
                        if (itemName.matches("\\d+")) {
                            int number = Integer.parseInt(itemName);
                            clickInOrderSlots[number - 1] = invSlots.get(i);
                        }
                    }
                }
            }

            if (ToggleCommand.superpairsToggled && chestName.startsWith("Superpairs (")) {
                for (int i = 0; i < 53; i++) {
                    ItemStack itemStack = invSlots.get(i).getStack();
                    if (itemStack == null) continue;
                    String itemName = itemStack.getDisplayName();
                    if (Item.getIdFromItem(itemStack.getItem()) == 95 || Item.getIdFromItem(itemStack.getItem()) == 160) continue;
                    if (itemName.contains("Instant Find") || itemName.contains("Gained +")) continue;
                    if (itemName.contains("Enchanted Book")) {
                        itemName = itemStack.getTooltip(mc.thePlayer, false).get(3);
                    }
                    if (itemStack.stackSize > 1) {
                        itemName = itemStack.stackSize + " " + itemName;
                    }
                    if (experimentTableSlots[i] != null) continue;
                    experimentTableSlots[i] = itemStack.copy().setStackDisplayName(itemName);
                }
            }

            if (ToggleCommand.clickInOrderToggled && chestName.equals("Click in order!")) {
                if (terminalNumberNeeded[0] == 0) terminalNumberNeeded[0] = 15;
                if (terminalNumberNeeded[2] == 0) terminalNumberNeeded[2] = 15;
                for (int i = 10; i <= 25; i++) {
                    if (i == 17 || i == 18) continue;
                    ItemStack prevStack = invSlots.get(terminalNumberNeeded[1]).getStack();
                    if (prevStack == null) terminalNumberNeeded[0] = 15;
                    else if (prevStack.getItem() != Item.getItemFromBlock(Blocks.stained_glass_pane)) terminalNumberNeeded[0] = 15;
                    else if (prevStack.getItemDamage() == 5) terminalNumberNeeded[0] = 15;

                    ItemStack itemStack = invSlots.get(i).getStack();
                    if (itemStack == null) continue;
                    if (itemStack.getItem() != Item.getItemFromBlock(Blocks.stained_glass_pane)) continue;
                    if (itemStack.getItemDamage() != 14) continue;
                    if (itemStack.stackSize < terminalNumberNeeded[0]) {
                        terminalNumberNeeded[0] = itemStack.stackSize;
                        terminalNumberNeeded[1] = i;
                    } else if (itemStack.stackSize == terminalNumberNeeded[0] + 1) {
                        terminalNumberNeeded[2] = itemStack.stackSize;
                        terminalNumberNeeded[3] = i;
                    }
                }
            }

        }

        if (titleTimer >= 0) {
            if (titleTimer == 0) {
                showTitle = false;
            }
            titleTimer--;
        }
        if (skillTimer >= 0) {
            if (skillTimer == 0) {
                showSkill = false;
            }
            skillTimer--;
        }
    }

    // Delay GUI by 1 tick
    @SubscribeEvent
    public void onRenderTick(TickEvent.RenderTickEvent event) {
        if (guiToOpen != null) {
            Minecraft mc = Minecraft.getMinecraft();
            if (guiToOpen.startsWith("dankergui")) {
                int page = Character.getNumericValue(guiToOpen.charAt(guiToOpen.length() - 1));
                mc.displayGuiScreen(new DankerGui(page));
            } else {
                switch (guiToOpen) {
                    case "displaygui":
                        mc.displayGuiScreen(new DisplayGui());
                        break;
                    case "onlyslayergui":
                        mc.displayGuiScreen(new OnlySlayerGui());
                        break;
                    case "editlocations":
                        mc.displayGuiScreen(new EditLocationsGui());
                        break;
                    case "puzzlesolvers":
                        mc.displayGuiScreen(new PuzzleSolversGui(1));
                        break;
                    case "experimentsolvers":
                        mc.displayGuiScreen(new ExperimentsGui());
                        break;
                    case "skilltracker":
                        mc.displayGuiScreen(new SkillTrackerGui());
                        break;
                }
            }
            guiToOpen = null;
        }
    }

    @SubscribeEvent
    public void onWorldRender(RenderWorldLastEvent event) {
        if (ToggleCommand.threeManToggled && riddleChest != null) {
            Utils.drawFilled3DBox(new AxisAlignedBB(riddleChest.getX() - 0.05, riddleChest.getY(), riddleChest.getZ() - 0.05, riddleChest.getX() + 1.05, riddleChest.getY() + 1, riddleChest.getZ() + 1.05), 0x197F19, true, event.partialTicks);
        }

        if (ToggleCommand.blazeToggled && Utils.inDungeons) {
            if (lowestBlaze != null) {
                BlockPos stringPos = new BlockPos(lowestBlaze.posX, lowestBlaze.posY + 1, lowestBlaze.posZ);
                Utils.draw3DString(stringPos, EnumChatFormatting.BOLD + "Smallest", LOWEST_BLAZE_COLOUR, event.partialTicks);
                AxisAlignedBB aabb = new AxisAlignedBB(lowestBlaze.posX - 0.5, lowestBlaze.posY - 2, lowestBlaze.posZ - 0.5, lowestBlaze.posX + 0.5, lowestBlaze.posY, lowestBlaze.posZ + 0.5);
                Utils.draw3DBox(aabb, LOWEST_BLAZE_COLOUR, event.partialTicks);
            }
            if (highestBlaze != null) {
                BlockPos stringPos = new BlockPos(highestBlaze.posX, highestBlaze.posY + 1, highestBlaze.posZ);
                Utils.draw3DString(stringPos, EnumChatFormatting.BOLD + "Biggest", HIGHEST_BLAZE_COLOUR, event.partialTicks);
                AxisAlignedBB aabb = new AxisAlignedBB(highestBlaze.posX - 0.5, highestBlaze.posY - 2, highestBlaze.posZ - 0.5, highestBlaze.posX + 0.5, highestBlaze.posY, highestBlaze.posZ + 0.5);
                Utils.draw3DBox(aabb, HIGHEST_BLAZE_COLOUR, event.partialTicks);
            }
        }
        if (ToggleCommand.creeperToggled && drawCreeperLines && !creeperLines.isEmpty()) {
            for (int i = 0; i < creeperLines.size(); i++) {
                Utils.draw3DLine(creeperLines.get(i)[0], creeperLines.get(i)[1], CREEPER_COLOURS[i % 10], event.partialTicks);
            }
        }
        if (ToggleCommand.ticTacToeToggled && correctTicTacToeButton != null) {
            Utils.draw3DBox(correctTicTacToeButton, 0x40FF40, event.partialTicks);
        }
    }

    @SubscribeEvent
    public void onInteract(PlayerInteractEvent event) {
        if (!Utils.inSkyblock || Minecraft.getMinecraft().thePlayer != event.entityPlayer) return;
        ItemStack item = event.entityPlayer.getHeldItem();
        if (item == null) return;

        if (event.action == PlayerInteractEvent.Action.RIGHT_CLICK_AIR) {
            if (ToggleCommand.aotdToggled && item.getDisplayName().contains("Aspect of the Dragons")) {
                event.setCanceled(true);
            }
            if (ToggleCommand.lividDaggerToggled && item.getDisplayName().contains("Livid Dagger")) {
                event.setCanceled(true);
            }
            if (ToggleCommand.notifySlayerSlainToggled) {
                if (ScoreboardHandler.getSidebarLines().stream().anyMatch(x -> ScoreboardHandler.cleanSB(x).contains("Boss slain!"))) {
                    if (ScoreboardHandler.getSidebarLines().stream().anyMatch(x -> {
                        String line = ScoreboardHandler.cleanSB(x);
                        return Arrays.stream(new String[]{"Howling Cave", "Ruins", "Graveyard", "Coal Mine", "Spider's Den"}).anyMatch(line::contains);
                    })) {
                        if (Utils.hasRightClickAbility(item)) {
                            List<String> lore = Utils.getItemLore(item);

                            int abilityLine = -1;
                            for (int i = 0; i < lore.size(); i++) {
                                String line = StringUtils.stripControlCodes(lore.get(i));
                                if (line.startsWith("Item Ability:")) abilityLine = i;
                                if (abilityLine != -1 && i > abilityLine) {
                                    if (line.toLowerCase().contains("damage")) {
                                        Utils.createTitle(EnumChatFormatting.RED + "Boss slain!", 2);
                                        break;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }

        if (event.action == PlayerInteractEvent.Action.RIGHT_CLICK_BLOCK) {
            Block block = Minecraft.getMinecraft().theWorld.getBlockState(event.pos).getBlock();

            ArrayList<Block> interactables = new ArrayList<>(Arrays.asList(
                    Blocks.acacia_door,
                    Blocks.anvil,
                    Blocks.beacon,
                    Blocks.bed,
                    Blocks.birch_door,
                    Blocks.brewing_stand,
                    Blocks.command_block,
                    Blocks.crafting_table,
                    Blocks.chest,
                    Blocks.dark_oak_door,
                    Blocks.daylight_detector,
                    Blocks.daylight_detector_inverted,
                    Blocks.dispenser,
                    Blocks.dropper,
                    Blocks.enchanting_table,
                    Blocks.ender_chest,
                    Blocks.furnace,
                    Blocks.hopper,
                    Blocks.jungle_door,
                    Blocks.lever,
                    Blocks.noteblock,
                    Blocks.powered_comparator,
                    Blocks.unpowered_comparator,
                    Blocks.powered_repeater,
                    Blocks.unpowered_repeater,
                    Blocks.standing_sign,
                    Blocks.wall_sign,
                    Blocks.trapdoor,
                    Blocks.trapped_chest,
                    Blocks.wooden_button,
                    Blocks.stone_button,
                    Blocks.oak_door,
                    Blocks.skull
            ));
            ArrayList<Block> flowerPlaceable = new ArrayList<>(Arrays.asList(
                    Blocks.grass,
                    Blocks.dirt,
                    Blocks.flower_pot,
                    Blocks.tallgrass,
                    Blocks.double_plant
            ));
            if (Utils.inDungeons) {
                interactables.add(Blocks.coal_block);
                interactables.add(Blocks.stained_hardened_clay);
            }
            if (flowerPlaceable.contains(block)) {
                if (ToggleCommand.flowerWeaponsToggled && item.getDisplayName().contains("Flower of Truth")) {
                    event.setCanceled(true);
                }
                if (ToggleCommand.flowerWeaponsToggled && item.getDisplayName().contains("Spirit Sceptre")) {
                    event.setCanceled(true);
                }
            }
            if (!interactables.contains(block)) {
                if (ToggleCommand.aotdToggled && item.getDisplayName().contains("Aspect of the Dragons")) {
                    event.setCanceled(true);
                }
                if (ToggleCommand.lividDaggerToggled && item.getDisplayName().contains("Livid Dagger")) {
                    event.setCanceled(true);
                }
            }
        }
    }

    @SubscribeEvent
    public void onArrowNock(ArrowNockEvent event) {
        if (!Utils.inSkyblock || Minecraft.getMinecraft().thePlayer != event.entityPlayer) return;

        if (ToggleCommand.notifySlayerSlainToggled) {
            if (ScoreboardHandler.getSidebarLines().stream().anyMatch(x -> ScoreboardHandler.cleanSB(x).contains("Boss slain!"))) {
                if (ScoreboardHandler.getSidebarLines().stream().anyMatch(x -> {
                    String line = ScoreboardHandler.cleanSB(x);
                    return Arrays.stream(new String[]{"Howling Cave", "Ruins", "Graveyard", "Coal Mine", "Spider's Den"}).anyMatch(line::contains);
                })) {
                    Utils.createTitle(EnumChatFormatting.RED + "Boss slain!", 2);
                }
            }
        }
    }

    @SubscribeEvent
    public void onAttackingEntity(AttackEntityEvent event) {
        if (ToggleCommand.notifySlayerSlainToggled && (event.target instanceof EntityZombie || event.target instanceof EntitySpider || event.target instanceof EntityWolf)) {
            List<String> scoreboard = ScoreboardHandler.getSidebarLines();

            for (String line : scoreboard) {
                String cleanedLine = ScoreboardHandler.cleanSB(line);
                if (cleanedLine.contains("Boss slain!")) {
                    Utils.createTitle(EnumChatFormatting.RED + "Boss slain!", 2);
                    break;
                }
            }
        }
    }

    @SubscribeEvent
    public void onEntityInteract(EntityInteractEvent event) {
        Minecraft mc = Minecraft.getMinecraft();
        if (mc.thePlayer != event.entityPlayer) return;

        if (ToggleCommand.itemFrameOnSeaLanternsToggled && Utils.inDungeons && event.target instanceof EntityItemFrame) {
            EntityItemFrame itemFrame = (EntityItemFrame) event.target;
            ItemStack item = itemFrame.getDisplayedItem();
            if (item == null || item.getItem() != Items.arrow) return;
            BlockPos blockPos = Utils.getBlockUnderItemFrame(itemFrame);
            if (mc.theWorld.getBlockState(blockPos).getBlock() == Blocks.sea_lantern) {
                event.setCanceled(true);
            }
        }
    }

    @SubscribeEvent
    public void onKey(KeyInputEvent event) {
        if (!Utils.inSkyblock) return;

        EntityPlayerSP player = Minecraft.getMinecraft().thePlayer;
        if (keyBindings[0].isPressed()) {
            player.sendChatMessage(lastMaddoxCommand);
        }
        if (keyBindings[1].isPressed()) {
            if (Utils.inDungeons) {
                player.dropOneItem(true);
            }
        }
        if (keyBindings[2].isPressed()) {
            if (skillStopwatch.isStarted() && skillStopwatch.isSuspended()) {
                skillStopwatch.resume();
                player.addChatMessage(new ChatComponentText(MAIN_COLOUR + "Skill tracker started."));
            } else if (!skillStopwatch.isStarted()) {
                skillStopwatch.start();
                player.addChatMessage(new ChatComponentText(MAIN_COLOUR + "Skill tracker started."));
            } else if (skillStopwatch.isStarted() && !skillStopwatch.isSuspended()) {
                skillStopwatch.suspend();
                player.addChatMessage(new ChatComponentText(MAIN_COLOUR + "Skill tracker paused."));
            }
        }
    }

    @SubscribeEvent
    public void onGuiMouseInputPre(GuiScreenEvent.MouseInputEvent.Pre event) {
        if (!Utils.inSkyblock) return;
        if (Mouse.getEventButton() != 0 && Mouse.getEventButton() != 1 && Mouse.getEventButton() != 2)
            return; // Left click, middle click or right click
        if (!Mouse.getEventButtonState()) return;

        if (event.gui instanceof GuiChest) {
            Container containerChest = ((GuiChest) event.gui).inventorySlots;
            if (containerChest instanceof ContainerChest) {
                // a lot of declarations here, if you get scarred, my bad
                GuiChest chest = (GuiChest) event.gui;
                IInventory inventory = ((ContainerChest) containerChest).getLowerChestInventory();
                Slot mouseSlot = chest.getSlotUnderMouse();
                if (mouseSlot == null) return;
                ItemStack item = mouseSlot.getStack();
                String inventoryName = inventory.getDisplayName().getUnformattedText();

                if (ToggleCommand.stopSalvageStarredToggled && inventoryName.startsWith("Salvage")) {
                    if (item == null) return;
                    boolean inSalvageGui = false;
                    if (item.getDisplayName().contains("Salvage") || item.getDisplayName().contains("Essence")) {
                        ItemStack salvageItem = inventory.getStackInSlot(13);
                        if (salvageItem == null) return;
                        item = salvageItem;
                        inSalvageGui = true;
                    }
                    if (item.getDisplayName().contains("✪") && (mouseSlot.slotNumber > 53 || inSalvageGui)) {
                        Minecraft.getMinecraft().thePlayer.playSound("note.bass", 1, 0.5f);
                        Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText(ERROR_COLOUR + "Danker's Skyblock Mod has stopped you from salvaging that item!"));
                        event.setCanceled(true);
                        return;
                    }
                }

                if (inventoryName.endsWith(" Chest") && item != null && item.getDisplayName().contains("Open Reward Chest")) {
                    List<String> tooltip = item.getTooltip(Minecraft.getMinecraft().thePlayer, Minecraft.getMinecraft().gameSettings.advancedItemTooltips);
                    for (String lineUnclean : tooltip) {
                        String line = StringUtils.stripControlCodes(lineUnclean);
                        if (line.contains("FREE")) {
                            break;
                        } else if (line.contains(" Coins")) {
                            int coinsSpent = Integer.parseInt(line.substring(0, line.indexOf(" ")).replaceAll(",", ""));

                            List<String> scoreboard = ScoreboardHandler.getSidebarLines();
                            for (String s : scoreboard) {
                                String sCleaned = ScoreboardHandler.cleanSB(s);
                                if (sCleaned.contains("The Catacombs (")) {
                                    if (sCleaned.contains("F1")) {
                                        LootCommand.f1CoinsSpent += coinsSpent;
                                        LootCommand.f1CoinsSpentSession += coinsSpent;
                                        ConfigHandler.writeDoubleConfig("catacombs", "floorOneCoins", LootCommand.f1CoinsSpent);
                                    } else if (sCleaned.contains("F2")) {
                                        LootCommand.f2CoinsSpent += coinsSpent;
                                        LootCommand.f2CoinsSpentSession += coinsSpent;
                                        ConfigHandler.writeDoubleConfig("catacombs", "floorTwoCoins", LootCommand.f2CoinsSpent);
                                    } else if (sCleaned.contains("F3")) {
                                        LootCommand.f3CoinsSpent += coinsSpent;
                                        LootCommand.f3CoinsSpentSession += coinsSpent;
                                        ConfigHandler.writeDoubleConfig("catacombs", "floorThreeCoins", LootCommand.f3CoinsSpent);
                                    } else if (sCleaned.contains("F4")) {
                                        LootCommand.f4CoinsSpent += coinsSpent;
                                        LootCommand.f4CoinsSpentSession += coinsSpent;
                                        ConfigHandler.writeDoubleConfig("catacombs", "floorFourCoins", LootCommand.f4CoinsSpent);
                                    } else if (sCleaned.contains("F5")) {
                                        LootCommand.f5CoinsSpent += coinsSpent;
                                        LootCommand.f5CoinsSpentSession += coinsSpent;
                                        ConfigHandler.writeDoubleConfig("catacombs", "floorFiveCoins", LootCommand.f5CoinsSpent);
                                    } else if (sCleaned.contains("F6")) {
                                        LootCommand.f6CoinsSpent += coinsSpent;
                                        LootCommand.f6CoinsSpentSession += coinsSpent;
                                        ConfigHandler.writeDoubleConfig("catacombs", "floorSixCoins", LootCommand.f6CoinsSpent);
                                    } else if (sCleaned.contains("F7")) {
                                        LootCommand.f7CoinsSpent += coinsSpent;
                                        LootCommand.f7CoinsSpentSession += coinsSpent;
                                        ConfigHandler.writeDoubleConfig("catacombs", "floorSevenCoins", LootCommand.f7CoinsSpent);
                                    }
                                    break;
                                }
                            }
                            break;
                        }
                    }
                }

                if (ToggleCommand.chronomatronToggled && inventoryName.startsWith("Chronomatron (")) {
                    if (item == null) {
                        if (event.isCancelable() && !Keyboard.isKeyDown(Keyboard.KEY_LCONTROL) && !Keyboard.isKeyDown(Keyboard.KEY_RCONTROL))
                            event.setCanceled(true);
                        return;
                    }
                    if (inventory.getStackInSlot(49).getDisplayName().startsWith("§7Timer: §a") && (item.getItem() == Item.getItemFromBlock(Blocks.stained_glass) || item.getItem() == Item.getItemFromBlock(Blocks.stained_hardened_clay))) {
                        if (chronomatronPattern.size() > chronomatronMouseClicks && !item.getDisplayName().equals(chronomatronPattern.get(chronomatronMouseClicks))) {
                            if (event.isCancelable() && !Keyboard.isKeyDown(Keyboard.KEY_LCONTROL) && !Keyboard.isKeyDown(Keyboard.KEY_RCONTROL))
                                event.setCanceled(true);
                            return;
                        }
                        chronomatronMouseClicks++;
                    } else if (inventory.getStackInSlot(49).getDisplayName().startsWith("§aRemember the pattern!")) {
                        if (event.isCancelable()) event.setCanceled(true);
                        return;
                    }
                }

                if (ToggleCommand.ultrasequencerToggled && inventoryName.startsWith("Ultrasequencer (")) {
                    if (item == null) {
                        if (event.isCancelable() && !Keyboard.isKeyDown(Keyboard.KEY_LCONTROL) && !Keyboard.isKeyDown(Keyboard.KEY_RCONTROL))
                            event.setCanceled(true);
                        return;
                    }
                    if (inventory.getStackInSlot(49).getDisplayName().equals("§aRemember the pattern!")) {
                        if (event.isCancelable()) event.setCanceled(true);
                        return;
                    } else if (inventory.getStackInSlot(49).getDisplayName().startsWith("§7Timer: §a")) {
                        if (clickInOrderSlots[lastUltraSequencerClicked] != null && mouseSlot.getSlotIndex() != clickInOrderSlots[lastUltraSequencerClicked].getSlotIndex()) {
                            if (event.isCancelable() && !Keyboard.isKeyDown(Keyboard.KEY_LCONTROL) && !Keyboard.isKeyDown(Keyboard.KEY_RCONTROL))
                                event.setCanceled(true);
                            return;
                        }
                    }
                }

                if (ToggleCommand.blockWrongTerminalClicksToggled && Utils.inDungeons) {
                    boolean shouldCancel = false;

                    if (item == null) return;

                    //most of these are extra but who cares

                    switch (inventoryName) {
                        case "Correct all the panes!":
                            shouldCancel = !StringUtils.stripControlCodes(item.getDisplayName()).startsWith("Off");
                            break;
                        case "Navigate the maze!":
                            if (item.getItem() != Item.getItemFromBlock(Blocks.stained_glass_pane)) {
                                shouldCancel = true;
                                break;
                            }

                            if (item.getItemDamage() != 0) {
                                shouldCancel = true;
                                break;
                            }

                            boolean isValid = false;

                            int slotIndex = mouseSlot.getSlotIndex();

                            if (slotIndex % 9 != 8 && slotIndex != 53) {
                                ItemStack itemStack = inventory.getStackInSlot(slotIndex + 1);
                                if (itemStack != null && itemStack.getItemDamage() == 5) isValid = true;
                            }

                            if (!isValid && slotIndex % 9 != 0 && slotIndex != 0) {
                                ItemStack itemStack = inventory.getStackInSlot(slotIndex - 1);
                                if (itemStack != null && itemStack.getItemDamage() == 5) isValid = true;
                            }

                            if (!isValid && slotIndex <= 44) {
                                ItemStack itemStack = inventory.getStackInSlot(slotIndex + 9);
                                if (itemStack != null && itemStack.getItemDamage() == 5) isValid = true;
                            }

                            if (!isValid && slotIndex >= 9) {
                                ItemStack itemStack = inventory.getStackInSlot(slotIndex - 9);
                                if (itemStack != null && itemStack.getItemDamage() == 5) isValid = true;
                            }

                            shouldCancel = !isValid;

                            break;
                        case "Click in order!":

                            if (mouseSlot.getSlotIndex() > 35) {
                                break;
                            }

                            if ((item.getItem() != Item.getItemFromBlock(Blocks.stained_glass_pane))) {
                                shouldCancel = true;
                                break;
                            }
                            if (item.getItemDamage() != 14) {
                                shouldCancel = true;
                                break;
                            }
                            int needed = terminalNumberNeeded[0];
                            if (needed == 0) break;
                            shouldCancel = needed != -1 && item.stackSize != needed;
                            break;
                    }

                    if (!shouldCancel) {
                        if (inventoryName.startsWith("What starts with:")) {
                            char letter = inventoryName.charAt(inventoryName.indexOf("'") + 1);
                            shouldCancel = !(StringUtils.stripControlCodes(item.getDisplayName()).charAt(0) == letter);
                        } else if (inventoryName.startsWith("Select all the")) {
                            if (terminalColorNeeded == null) return;
                            String itemName = StringUtils.stripControlCodes(item.getDisplayName()).toUpperCase();
                            shouldCancel = !(itemName.contains(terminalColorNeeded) ||
                                            (terminalColorNeeded.equals("SILVER") && itemName.contains("LIGHT GRAY")) ||
                                            (terminalColorNeeded.equals("WHITE") && (itemName.equals("WOOL") || itemName.equals("BONE MEAL"))) ||
                                            (terminalColorNeeded.equals("BLACK") && itemName.equals("INK SACK")) ||
                                            (terminalColorNeeded.equals("BLUE") && itemName.equals("LAPIS LAZULI")) ||
                                            (terminalColorNeeded.equals("BROWN") && itemName.equals("COCOA BEANS")));
                        }
                    }

                    event.setCanceled(shouldCancel && !Keyboard.isKeyDown(Keyboard.KEY_LCONTROL) && !Keyboard.isKeyDown(Keyboard.KEY_RCONTROL));
                }

                if (!BlockSlayerCommand.onlySlayerName.equals("") && item != null) {
                    if (inventoryName.equals("Slayer")) {
                        if (!item.getDisplayName().contains("Revenant Horror") && !item.getDisplayName().contains("Tarantula Broodfather") && !item.getDisplayName().contains("Sven Packmaster"))
                            return;
                        if (!item.getDisplayName().contains(BlockSlayerCommand.onlySlayerName)) {
                            Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText(ERROR_COLOUR + "Danker's Skyblock Mod has stopped you from starting this quest (Set to " + BlockSlayerCommand.onlySlayerName + " " + BlockSlayerCommand.onlySlayerNumber + ")"));
                            Minecraft.getMinecraft().thePlayer.playSound("note.bass", 1, (float) 0.5);
                            event.setCanceled(true);
                        }
                    } else if (inventoryName.equals("Revenant Horror") || inventoryName.equals("Tarantula Broodfather") || inventoryName.equals("Sven Packmaster")) {
                        if (item.getDisplayName().contains("Revenant Horror") || item.getDisplayName().contains("Tarantula Broodfather") || item.getDisplayName().contains("Sven Packmaster")) {
                            // Only check number as they passed the above check
                            String slayerNumber = item.getDisplayName().substring(item.getDisplayName().lastIndexOf(" ") + 1);
                            if (!slayerNumber.equals(BlockSlayerCommand.onlySlayerNumber)) {
                                Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText(ERROR_COLOUR + "Danker's Skyblock Mod has stopped you from starting this quest (Set to " + BlockSlayerCommand.onlySlayerName + " " + BlockSlayerCommand.onlySlayerNumber + ")"));
                                Minecraft.getMinecraft().thePlayer.playSound("note.bass", 1, (float) 0.5);
                                event.setCanceled(true);
                            }
                        }
                    }
                }
            }
        }
    }

    @SubscribeEvent
    public void onMouseInputPost(GuiScreenEvent.MouseInputEvent.Post event) {
        if (!Utils.inSkyblock) return;
        if (Mouse.getEventButton() == 0 && event.gui instanceof GuiChat) {
            if (ToggleCommand.chatMaddoxToggled && System.currentTimeMillis() / 1000 - lastMaddoxTime < 10) {
                Minecraft.getMinecraft().thePlayer.sendChatMessage(lastMaddoxCommand);
            }
        }
    }

    @SubscribeEvent
    public void onGuiOpen(GuiOpenEvent event) {
        Minecraft mc = Minecraft.getMinecraft();
        GameSettings gameSettings = mc.gameSettings;
        if (event.gui instanceof GuiChest) {
            Container containerChest = ((GuiChest) event.gui).inventorySlots;
            if (containerChest instanceof ContainerChest) {
                GuiChest chest = (GuiChest) event.gui;
                IInventory inventory = ((ContainerChest) containerChest).getLowerChestInventory();
                String inventoryName = inventory.getDisplayName().getUnformattedText();
                
                if (ToggleCommand.swapToPickBlockToggled) {
                    if (inventoryName.startsWith("Chronomatron (") || inventoryName.startsWith("Superpairs (") || inventoryName.startsWith("Ultrasequencer (") || inventoryName.startsWith("What starts with:") || inventoryName.startsWith("Select all the") || inventoryName.startsWith("Navigate the maze!") || inventoryName.startsWith("Correct all the panes!") || inventoryName.startsWith("Click in order!") || inventoryName.startsWith("Harp -")) {
                        if (!pickBlockBindSwapped) {
                            pickBlockBind = gameSettings.keyBindPickBlock.getKeyCode();
                            gameSettings.keyBindPickBlock.setKeyCode(-100);
                            pickBlockBindSwapped = true;
                        }
                    } else {
                        if (pickBlockBindSwapped) {
                            gameSettings.keyBindPickBlock.setKeyCode(pickBlockBind);
                            pickBlockBindSwapped = false;
                        }
                    }
                }
            }
        } else {
            if (pickBlockBindSwapped) {
                gameSettings.keyBindPickBlock.setKeyCode(pickBlockBind);
                pickBlockBindSwapped = false;
            }
        }

        if (ToggleCommand.autoSkillTrackerToggled) {
			if (skillStopwatch.isStarted() && !skillStopwatch.isSuspended()) {
				skillStopwatch.suspend();
			}
		}

        clickInOrderSlots = new Slot[36];
        lastChronomatronRound = 0;
        chronomatronPattern.clear();
        chronomatronMouseClicks = 0;
        experimentTableSlots = new ItemStack[54];
        terminalColorNeeded = null;
        terminalNumberNeeded = new int[4];
    }

    @SubscribeEvent
    public void onGuiRender(GuiScreenEvent.BackgroundDrawnEvent event) {
        if (!Utils.inSkyblock) return;
        if (event.gui instanceof GuiChest) {
            GuiChest inventory = (GuiChest) event.gui;
            Container containerChest = inventory.inventorySlots;
            if (containerChest instanceof ContainerChest) {
                Minecraft mc = Minecraft.getMinecraft();
                ScaledResolution sr = new ScaledResolution(mc);
                int guiLeft = (sr.getScaledWidth() - 176) / 2;
                int guiTop = (sr.getScaledHeight() - 222) / 2;

                List<Slot> invSlots = inventory.inventorySlots.inventorySlots;
                String displayName = ((ContainerChest) containerChest).getLowerChestInventory().getDisplayName().getUnformattedText().trim();
                int chestSize = inventory.inventorySlots.inventorySlots.size();

                if (ToggleCommand.petColoursToggled) {
                    for (Slot slot : invSlots) {
                        ItemStack item = slot.getStack();
                        if (item == null) continue;
                        String name = item.getDisplayName();
                        if (petPattern.matcher(StringUtils.stripControlCodes(name)).find()) {
                            if (name.endsWith("aHealer") || name.endsWith("aMage") || name.endsWith("aBerserk") || name.endsWith("aArcher") || name.endsWith("aTank"))
                                continue;
                            int colour;
                            int petLevel = Integer.parseInt(item.getDisplayName().substring(item.getDisplayName().indexOf(" ") + 1, item.getDisplayName().indexOf("]")));
                            if (petLevel == 100) {
                                colour = PET_100;
                            } else if (petLevel >= 90) {
                                colour = PET_90_TO_99;
                            } else if (petLevel >= 80) {
                                colour = PET_80_TO_89;
                            } else if (petLevel >= 70) {
                                colour = PET_70_TO_79;
                            } else if (petLevel >= 60) {
                                colour = PET_60_TO_69;
                            } else if (petLevel >= 50) {
                                colour = PET_50_TO_59;
                            } else if (petLevel >= 40) {
                                colour = PET_40_TO_49;
                            } else if (petLevel >= 30) {
                                colour = PET_30_TO_39;
                            } else if (petLevel >= 20) {
                                colour = PET_20_TO_29;
                            } else if (petLevel >= 10) {
                                colour = PET_10_TO_19;
                            } else {
                                colour = PET_1_TO_9;
                            }
                            Utils.drawOnSlot(chestSize, slot.xDisplayPosition, slot.yDisplayPosition, colour + 0xBF000000);
                        }
                    }
                }

                if (ToggleCommand.startsWithToggled && Utils.inDungeons && displayName.startsWith("What starts with:")) {
                    char letter = displayName.charAt(displayName.indexOf("'") + 1);
                    for (Slot slot : invSlots) {
                        if (slot.inventory == mc.thePlayer.inventory) continue;
                        ItemStack item = slot.getStack();
                        if (item == null) continue;
                        if (item.isItemEnchanted()) continue;
                        if (StringUtils.stripControlCodes(item.getDisplayName()).charAt(0) == letter) {
                            Utils.drawOnSlot(chestSize, slot.xDisplayPosition, slot.yDisplayPosition, 0xBF40FF40);
                        }
                    }
                }

                if (ToggleCommand.selectAllToggled && Utils.inDungeons && displayName.startsWith("Select all the")) {
                    String colour;
                    List<String> colourParts = new ArrayList<>();
                    Matcher colourMatcher = startsWithTerminalPattern.matcher(displayName);
                    while (colourMatcher.find()) {
                        colourParts.add(colourMatcher.group());
                    }
                    colour = String.join(" ", colourParts);
                    terminalColorNeeded = colour;

                    for (Slot slot : invSlots) {
                        if (slot.inventory == mc.thePlayer.inventory) continue;
                        ItemStack item = slot.getStack();
                        if (item == null) continue;
                        if (item.isItemEnchanted()) continue;
                        String itemName = StringUtils.stripControlCodes(item.getDisplayName()).toUpperCase();
                        if (itemName.contains(terminalColorNeeded) ||
                           (terminalColorNeeded.equals("SILVER") && itemName.contains("LIGHT GRAY")) ||
                           (terminalColorNeeded.equals("WHITE") && (itemName.equals("WOOL") || itemName.equals("BONE MEAL"))) ||
                           (terminalColorNeeded.equals("BLACK") && itemName.equals("INK SACK")) ||
                           (terminalColorNeeded.equals("BLUE") && itemName.equals("LAPIS LAZULI")) ||
                           (terminalColorNeeded.equals("BROWN") && itemName.equals("COCOA BEANS"))) {
                                Utils.drawOnSlot(chestSize, slot.xDisplayPosition, slot.yDisplayPosition, 0xBF40FF40);
                        }
                    }
                }

                if (ToggleCommand.clickInOrderToggled && displayName.equals("Click in order!")) {
                    Slot slot = invSlots.get(terminalNumberNeeded[1]);
                    Utils.drawOnSlot(chestSize, slot.xDisplayPosition, slot.yDisplayPosition, CLICK_IN_ORDER_NEXT + 0xFF000000);
                    Slot nextSlot = invSlots.get(terminalNumberNeeded[3]);
                    if (nextSlot != slot && nextSlot.getSlotIndex() != 0) {
                        Utils.drawOnSlot(chestSize, nextSlot.xDisplayPosition, nextSlot.yDisplayPosition, CLICK_IN_ORDER_NEXT_TO_NEXT + 0xFF000000);
                    }
                }

                if (ToggleCommand.ultrasequencerToggled && displayName.startsWith("Ultrasequencer (")) {
                    if (invSlots.size() > 48 && invSlots.get(49).getStack() != null) {
                        if (invSlots.get(49).getStack().getDisplayName().startsWith("§7Timer: §a")) {
                            lastUltraSequencerClicked = 0;
                            for (Slot slot : clickInOrderSlots) {
                                if (slot != null && slot.getStack() != null && StringUtils.stripControlCodes(slot.getStack().getDisplayName()).matches("\\d+")) {
                                    int number = Integer.parseInt(StringUtils.stripControlCodes(slot.getStack().getDisplayName()));
                                    if (number > lastUltraSequencerClicked) {
                                        lastUltraSequencerClicked = number;
                                    }
                                }
                            }
                            if (clickInOrderSlots[lastUltraSequencerClicked] != null) {
                                Slot nextSlot = clickInOrderSlots[lastUltraSequencerClicked];
                                Utils.drawOnSlot(chestSize, nextSlot.xDisplayPosition, nextSlot.yDisplayPosition, ULTRASEQUENCER_NEXT + 0xE5000000);
                            }
                            if (lastUltraSequencerClicked + 1 < clickInOrderSlots.length) {
                                if (clickInOrderSlots[lastUltraSequencerClicked + 1] != null) {
                                    Slot nextSlot = clickInOrderSlots[lastUltraSequencerClicked + 1];
                                    Utils.drawOnSlot(chestSize, nextSlot.xDisplayPosition, nextSlot.yDisplayPosition, ULTRASEQUENCER_NEXT_TO_NEXT + 0xD7000000);
                                }
                            }
                        }
                    }
                }

                if (ToggleCommand.chronomatronToggled && displayName.startsWith("Chronomatron (")) {
                    if (invSlots.size() > 48 && invSlots.get(49).getStack() != null) {
                        if (invSlots.get(49).getStack().getDisplayName().startsWith("§7Timer: §a") && invSlots.get(4).getStack() != null) {
                            int round = invSlots.get(4).getStack().stackSize;
                            int timerSeconds = Integer.parseInt(StringUtils.stripControlCodes(invSlots.get(49).getStack().getDisplayName()).replaceAll("[^\\d]", ""));
                            if (round != lastChronomatronRound && timerSeconds == round + 2) {
                                lastChronomatronRound = round;
                                for (int i = 10; i <= 43; i++) {
                                    ItemStack stack = invSlots.get(i).getStack();
                                    if (stack == null) continue;
                                    if (stack.getItem() == Item.getItemFromBlock(Blocks.stained_hardened_clay)) {
                                        chronomatronPattern.add(stack.getDisplayName());
                                        break;
                                    }
                                }
                            }
                            if (chronomatronMouseClicks < chronomatronPattern.size()) {
                                for (int i = 10; i <= 43; i++) {
                                    ItemStack glass = invSlots.get(i).getStack();
                                    if (glass == null) continue;

                                    Slot glassSlot = invSlots.get(i);

                                    if (chronomatronMouseClicks + 1 < chronomatronPattern.size()) {
                                        if (chronomatronPattern.get(chronomatronMouseClicks).equals(chronomatronPattern.get(chronomatronMouseClicks + 1))) {
                                            if (glass.getDisplayName().equals(chronomatronPattern.get(chronomatronMouseClicks))) {
                                                Utils.drawOnSlot(chestSize, glassSlot.xDisplayPosition, glassSlot.yDisplayPosition, CHRONOMATRON_NEXT + 0xE5000000);
                                            }
                                        } else if (glass.getDisplayName().equals(chronomatronPattern.get(chronomatronMouseClicks))) {
                                            Utils.drawOnSlot(chestSize, glassSlot.xDisplayPosition, glassSlot.yDisplayPosition, CHRONOMATRON_NEXT + 0xE5000000);
                                        } else if (glass.getDisplayName().equals(chronomatronPattern.get(chronomatronMouseClicks + 1))) {
                                            Utils.drawOnSlot(chestSize, glassSlot.xDisplayPosition, glassSlot.yDisplayPosition, CHRONOMATRON_NEXT_TO_NEXT + 0XBE000000);
                                        }
                                    } else if (glass.getDisplayName().equals(chronomatronPattern.get(chronomatronMouseClicks))) {
                                        Utils.drawOnSlot(chestSize, glassSlot.xDisplayPosition, glassSlot.yDisplayPosition, CHRONOMATRON_NEXT + 0xE5000000);
                                    }
                                }
                            }
                        } else if (invSlots.get(49).getStack().getDisplayName().equals("§aRemember the pattern!")) {
                            chronomatronMouseClicks = 0;
                        }
                    }
                    new TextRenderer(mc, String.join("\n", chronomatronPattern), (int) (guiLeft * 0.8), 10, 1);
                }

                if (ToggleCommand.superpairsToggled && displayName.contains("Superpairs (")) {
                    HashMap<String, HashSet<Integer>> matches = new HashMap<>();
                    for (int i = 0; i < 53; i++) {
                        ItemStack itemStack = experimentTableSlots[i];
                        if (itemStack == null) continue;
                        Slot slot = invSlots.get(i);
                        int x = guiLeft + slot.xDisplayPosition;
                        int y = guiTop + slot.yDisplayPosition;
                        if (chestSize != 90) y += (6 - (chestSize - 36) / 9) * 9;

                        //Utils.renderItem(itemStack, x, y, -100);

                        String itemName = itemStack.getDisplayName();
                        String keyName = itemName + itemStack.getUnlocalizedName();
                        matches.computeIfAbsent(keyName, k -> new HashSet<>());
                        matches.get(keyName).add(i);
                    }

                    Color[] colors = {
                            new Color(255, 0, 0, 100),
                            new Color(0, 0, 255, 100),
                            new Color(100, 179, 113, 100),
                            new Color(255, 114, 255, 100),
                            new Color(255, 199, 87, 100),
                            new Color(119, 105, 198, 100),
                            new Color(135, 199, 112, 100),
                            new Color(240, 37, 240, 100),
                            new Color(178, 132, 190, 100),
                            new Color(63, 135, 163, 100),
                            new Color(146, 74, 10, 100),
                            new Color(255, 255, 255, 100),
                            new Color(217, 252, 140, 100),
                            new Color(255, 82, 82, 100)
                    };

                    Iterator<Color> colorIterator = Arrays.stream(colors).iterator();

                    matches.forEach((itemName, slotSet) -> {
                        if (slotSet.size() < 2) return;
                        ArrayList<Slot> slots = new ArrayList<>();
                        slotSet.forEach(slotNum -> slots.add(invSlots.get(slotNum)));
                        Color color = colorIterator.next();
                        slots.forEach(slot -> {
                            Utils.drawOnSlot(chestSize, slot.xDisplayPosition, slot.yDisplayPosition, color.getRGB());
                        });
                    });
                }

            }
        }
    }

    @SubscribeEvent
    public void onServerConnect(ClientConnectedToServerEvent event) {
        event.manager.channel().pipeline().addBefore("packet_handler", "danker_packet_handler", new PacketHandler());
        System.out.println("Added packet handler to channel pipeline.");
    }

    public void increaseSeaCreatures() {
        if (LootCommand.empSCs != -1) {
            LootCommand.empSCs++;
        }
        if (LootCommand.empSCsSession != -1) {
            LootCommand.empSCsSession++;
        }
        // Only increment Yetis when in Jerry's Workshop
        List<String> scoreboard = ScoreboardHandler.getSidebarLines();
        for (String s : scoreboard) {
            String sCleaned = ScoreboardHandler.cleanSB(s);
            if (sCleaned.contains("Jerry's Workshop") || sCleaned.contains("Jerry Pond")) {
                if (LootCommand.yetiSCs != -1) {
                    LootCommand.yetiSCs++;
                }
                if (LootCommand.yetiSCsSession != -1) {
                    LootCommand.yetiSCsSession++;
                }
            }
        }

        LootCommand.seaCreatures++;
        LootCommand.fishingMilestone++;
        LootCommand.seaCreaturesSession++;
        LootCommand.fishingMilestoneSession++;
        ConfigHandler.writeIntConfig("fishing", "seaCreature", LootCommand.seaCreatures);
        ConfigHandler.writeIntConfig("fishing", "milestone", LootCommand.fishingMilestone);
        ConfigHandler.writeIntConfig("fishing", "empSC", LootCommand.empSCs);
        ConfigHandler.writeIntConfig("fishing", "yetiSC", LootCommand.yetiSCs);

    }

}