Nulldi
New member
- Joined
- Nov 7, 2020
- Messages
- 2
- Reaction score
- 0
- Points
- 0
Hi, ich wollte einen Prophunt Esp fuer den Server mc.gamster.org machen aber der Prophunt Esp den ich fuer Mineplex benutze geht nicht es geht nur ein Esp wenn sich die Bluecke bewegen dann sind sie FallingBlocks koennte man es auch uergend wie machen dass man sie sieht auch wenn sie solid (Also wenn sie sich nicht bewegen) sind?
Java:
Mineplex Prophunt Esp ->
for (Entity entity : mc.theWorld.loadedEntityList) {
if (entity instanceof EntityLiving) {
if (!entity.isInvisible())
continue;
entityESPBox(entity);
}
}
Java:
FallingBlock Prophunt Esp ->
for (Entity entity : mc.theWorld.loadedEntityList) {
if (!(entity instanceof EntityFallingBlock))
continue;
entityESPBox(entity);
}