blob: 016b4dc7cf32f3acc1d614dbb1feb97f9028f664 (
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
|
package rosegoldaddons.commands;
import net.minecraft.client.Minecraft;
import net.minecraft.client.entity.EntityPlayerSP;
import net.minecraft.command.CommandException;
import net.minecraft.command.ICommand;
import net.minecraft.command.ICommandSender;
import net.minecraft.entity.Entity;
import net.minecraft.entity.item.EntityArmorStand;
import net.minecraft.item.ItemSkull;
import net.minecraft.item.ItemStack;
import net.minecraft.util.BlockPos;
import org.jetbrains.annotations.NotNull;
import rosegoldaddons.Main;
import rosegoldaddons.utils.ChatUtils;
import rosegoldaddons.utils.RenderUtils;
import java.awt.*;
import java.util.ArrayList;
import java.util.List;
public class AllEntities implements ICommand {
@Override
public String getCommandName() {
return "allentities";
}
@Override
public String getCommandUsage(ICommandSender sender) {
return "/" + getCommandName();
}
@Override
public List<String> getCommandAliases() {
return new ArrayList<>();
}
@Override
public void processCommand(ICommandSender sender, String[] args) throws CommandException {
for (Entity entity1 : (Main.mc.theWorld.loadedEntityList)) {
ChatUtils.sendMessage(""+entity1);
if(entity1 instanceof EntityArmorStand) {
ItemStack itemStack = ((EntityArmorStand) entity1).getCurrentArmor(3);
if (itemStack != null && itemStack.getItem() instanceof ItemSkull) {
ChatUtils.sendMessage("§aEntity is wearing: "+itemStack.serializeNBT().getCompoundTag("tag").getCompoundTag("SkullOwner").getCompoundTag("Properties").toString());
}
}
}
}
@Override
public boolean canCommandSenderUseCommand(ICommandSender sender) {
return true;
}
@Override
public List<String> addTabCompletionOptions(ICommandSender sender, String[] args, BlockPos pos) {
return new ArrayList<>();
}
@Override
public boolean isUsernameIndex(String[] args, int index) {
return false;
}
private boolean isNumeric(String str) {
try {
Double.parseDouble(str);
return true;
} catch (NumberFormatException e) {
return false;
}
}
@Override
public int compareTo(@NotNull ICommand o) {
return 0;
}
}
|