blob: f402823cb00aa49dcadcf2279d60e40d9e76d321 (
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
|
package me.Danker.features.loot;
import me.Danker.handlers.ConfigHandler;
import me.Danker.utils.Utils;
import net.minecraft.util.StringUtils;
import net.minecraftforge.client.event.ClientChatReceivedEvent;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
public class GhostTracker {
public static int sorrows = 0;
public static int bagOfCashs = 0;
public static int voltas = 0;
public static int plasmas = 0;
public static int ghostlyBoots = 0;
public static int sorrowSession = 0;
public static int bagOfCashSession = 0;
public static int voltaSession = 0;
public static int plasmaSession = 0;
public static int ghostlyBootsSession = 0;
@SubscribeEvent
public void onChat(ClientChatReceivedEvent event) {
String message = StringUtils.stripControlCodes(event.message.getUnformattedText());
if (!Utils.inSkyblock) return;
if (event.type == 2) return;
if (message.contains(":")) return;
if (message.contains("RARE DROP!")) {
if (message.contains("Sorrow")) {
sorrows++;
sorrowSession++;
ConfigHandler.writeIntConfig("ghosts", "sorrow", sorrows);
}
if (message.contains("Volta")) {
voltas++;
voltaSession++;
ConfigHandler.writeIntConfig("ghosts", "volta", voltas);
}
if (message.contains("Plasma")) {
plasmas++;
plasmaSession++;
ConfigHandler.writeIntConfig("ghosts", "plasma", plasmas);
}
if (message.contains("Ghostly Boots")) {
ghostlyBoots++;
ghostlyBootsSession++;
ConfigHandler.writeIntConfig("ghosts", "ghostlyBoots", ghostlyBoots);
}
if (message.contains("The ghost's death materialized ")) {
bagOfCashs++;
bagOfCashSession++;
ConfigHandler.writeIntConfig("ghosts", "bagOfCash", bagOfCashs);
}
}
}
}
|