- Статус
- Оффлайн
- Регистрация
- 23 Ноя 2021
- Сообщения
- 373
- Реакции
- 56
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Glow ESP (Default Minecraft)
Спасибо Triplicate
Спасибо Triplicate
GlowModule.java:
package tech.drainwalk.client.module.modules.render;
import com.darkmagician6.eventapi.EventTarget;
import net.minecraft.entity.player.EntityPlayer;
import tech.drainwalk.client.module.Module;
import tech.drainwalk.client.module.category.Category;
import tech.drainwalk.client.module.category.Type;
import tech.drainwalk.events.UpdateEvent;
public class GlowModule extends Module {
public GlowModule() {
super("Glow ESP", Category.RENDER);
addType(Type.MAIN);
}
@EventTarget
public void onUpdate(UpdateEvent updateEvent) {
for (EntityPlayer playerEntity : mc.world.playerEntities) {
if (playerEntity != mc.player ) {
playerEntity.setGlowing(true);
}
}
}
@EventTarget
public void onDisable() {
for (EntityPlayer playerEntity : mc.world.playerEntities) {
if (playerEntity != mc.player ) {
playerEntity.setGlowing(false);
}
}
}
}