blob: 182c0b4960df79cdae49011bf2ba381b62f5b31e (
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
|
package me.Danker.features;
import me.Danker.DankersSkyblockMod;
import me.Danker.features.loot.LootDisplay;
import me.Danker.handlers.ConfigHandler;
import me.Danker.handlers.ScoreboardHandler;
import net.minecraft.client.Minecraft;
import net.minecraft.client.entity.EntityPlayerSP;
import net.minecraft.item.ItemStack;
import net.minecraft.world.World;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
import net.minecraftforge.fml.common.gameevent.TickEvent;
import java.util.List;
public class AutoDisplay {
@SubscribeEvent
public void onTick(TickEvent.ClientTickEvent event) {
if (event.phase != TickEvent.Phase.START) return;
Minecraft mc = Minecraft.getMinecraft();
World world = mc.theWorld;
EntityPlayerSP player = mc.thePlayer;
if (DankersSkyblockMod.tickAmount % 20 == 0) {
if (LootDisplay.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")) {
LootDisplay.display = "wolf";
found = true;
} else if (sCleaned.contains("Tarantula Broodfather")) {
LootDisplay.display = "spider";
found = true;
} else if (sCleaned.contains("Revenant Horror")) {
LootDisplay.display = "zombie";
found = true;
} else if (sCleaned.contains("The Mist")){
LootDisplay.display = "ghost";
found = true;
} else if (sCleaned.contains("The Catacombs (")) {
if (sCleaned.contains("F1")) {
LootDisplay.display = "catacombs_floor_one";
} else if (sCleaned.contains("F2")) {
LootDisplay.display = "catacombs_floor_two";
} else if (sCleaned.contains("F3")) {
LootDisplay.display = "catacombs_floor_three";
} else if (sCleaned.contains("F4")) {
LootDisplay.display = "catacombs_floor_four";
} else if (sCleaned.contains("F5")) {
LootDisplay.display = "catacombs_floor_five";
} else if (sCleaned.contains("F6")) {
LootDisplay.display = "catacombs_floor_six";
} else if (sCleaned.contains("F7")) {
LootDisplay.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")) {
LootDisplay.display = "mythological";
found = true;
}
}
if (!found) LootDisplay.display = "off";
ConfigHandler.writeStringConfig("misc", "display", LootDisplay.display);
}
}
}
}
|