- Joined
- Jul 11, 2020
- Messages
- 0
- Reaction score
- 25
- Points
- 0
i honestly have no idea where I skidded this piece of ****(apparently this is a clean christian forum and no cursing is allowed) from
shouldn't bypass unless your on an old version of some anti-cheat
[HIDE-REPLY]
ooh double-bamboozled lol rawr xd
[HIDE]
package us.loki.freaky.modules.impl.Movement;
import com.darkmagician6.eventapi.EventManager;
import de.Hero.settings.Setting;
import us.loki.freaky.Client;
import us.loki.freaky.events.*;
import us.loki.freaky.modules.*;
import java.util.ArrayList;
import com.darkmagician6.eventapi.EventTarget;
public class Tower extends Module
{
public Tower() {
super("Tower", "Tower", 0, Category.PLAYER);
final ArrayList<String> options = new ArrayList<String>();
options.add("Fast");
options.add("Legit");
Client.instance.setmgr.rSetting(new Setting("TowerMode", this, "", options));
}
@EventTarget
public void onUpdate(final EventUpdate e) {
this.setDisplayname("Tower §7" + Client.instance.setmgr.getSettingByName("TowerMode").getValString());
if (Client.instance.setmgr.getSettingByName("TowerMode").getValString().equalsIgnoreCase("Fast")){
if (this.mc.thePlayer.onGround) {
this.mc.thePlayer.setPositionAndUpdate(this.mc.thePlayer.posX, this.mc.thePlayer.posY + 1.0, this.mc.thePlayer.posZ);
this.mc.gameSettings.keyBindUseItem.pressed = true;
this.mc.gameSettings.keyBindSneak.pressed = true;
this.mc.thePlayer.rotationPitch = 90.0f;
this.mc.thePlayer.motionY = 0.10000000149011612;
this.mc.rightClickDelayTimer = 0;
this.mc.timer.timerSpeed = 1.1f;
}
}
if (Client.instance.setmgr.getSettingByName("TowerMode").getValString().equalsIgnoreCase("Legit")){
if (this.mc.thePlayer.onGround) {
this.mc.thePlayer.rotationPitch = 90.0f;
this.mc.gameSettings.keyBindUseItem.pressed = true;
this.mc.thePlayer.motionY = 0.4;
this.mc.rightClickDelayTimer = 0;
}
}
}
@Override
public void onEnable() {
EventManager.register(this);
}
@Override
public void onDisable() {
EventManager.unregister(this);
this.mc.gameSettings.keyBindUseItem.pressed = false;
this.mc.gameSettings.keyBindSneak.pressed = false;
this.mc.timer.timerSpeed = 1.0f;
}
}
[/HIDE]
[/HIDE-REPLY]
shouldn't bypass unless your on an old version of some anti-cheat
[HIDE-REPLY]
ooh double-bamboozled lol rawr xd
[HIDE]
package us.loki.freaky.modules.impl.Movement;
import com.darkmagician6.eventapi.EventManager;
import de.Hero.settings.Setting;
import us.loki.freaky.Client;
import us.loki.freaky.events.*;
import us.loki.freaky.modules.*;
import java.util.ArrayList;
import com.darkmagician6.eventapi.EventTarget;
public class Tower extends Module
{
public Tower() {
super("Tower", "Tower", 0, Category.PLAYER);
final ArrayList<String> options = new ArrayList<String>();
options.add("Fast");
options.add("Legit");
Client.instance.setmgr.rSetting(new Setting("TowerMode", this, "", options));
}
@EventTarget
public void onUpdate(final EventUpdate e) {
this.setDisplayname("Tower §7" + Client.instance.setmgr.getSettingByName("TowerMode").getValString());
if (Client.instance.setmgr.getSettingByName("TowerMode").getValString().equalsIgnoreCase("Fast")){
if (this.mc.thePlayer.onGround) {
this.mc.thePlayer.setPositionAndUpdate(this.mc.thePlayer.posX, this.mc.thePlayer.posY + 1.0, this.mc.thePlayer.posZ);
this.mc.gameSettings.keyBindUseItem.pressed = true;
this.mc.gameSettings.keyBindSneak.pressed = true;
this.mc.thePlayer.rotationPitch = 90.0f;
this.mc.thePlayer.motionY = 0.10000000149011612;
this.mc.rightClickDelayTimer = 0;
this.mc.timer.timerSpeed = 1.1f;
}
}
if (Client.instance.setmgr.getSettingByName("TowerMode").getValString().equalsIgnoreCase("Legit")){
if (this.mc.thePlayer.onGround) {
this.mc.thePlayer.rotationPitch = 90.0f;
this.mc.gameSettings.keyBindUseItem.pressed = true;
this.mc.thePlayer.motionY = 0.4;
this.mc.rightClickDelayTimer = 0;
}
}
}
@Override
public void onEnable() {
EventManager.register(this);
}
@Override
public void onDisable() {
EventManager.unregister(this);
this.mc.gameSettings.keyBindUseItem.pressed = false;
this.mc.gameSettings.keyBindSneak.pressed = false;
this.mc.timer.timerSpeed = 1.0f;
}
}
[/HIDE]
[/HIDE-REPLY]