-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Uploaded final version of m6 2022 July-August with compiled files.
- Loading branch information
Showing
113 changed files
with
16,454 additions
and
2,922 deletions.
There are no files selected for viewing
Binary file not shown.
File renamed without changes.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
29 changes: 29 additions & 0 deletions
29
...metadata/.plugins/org.eclipse.core.resources/.history/13/309c9e39181d001d1323852301c2b112
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
package bastion.defiantce.module.player; | ||
|
||
import org.lwjgl.input.Keyboard; | ||
|
||
import bastion.defiantce.module.Category; | ||
import bastion.defiantce.module.Module; | ||
import bastion.defiantce.utils.Invoker; | ||
|
||
public class FastLadder extends Module{ | ||
|
||
private int ticks = 0; | ||
|
||
public FastLadder() { | ||
super("FastLadder", 0, Category.PLAYER); | ||
} | ||
|
||
@Override | ||
public void onUpdate() { | ||
if(this.isToggled()) { | ||
ticks++; | ||
if(Invoker.isOnLadder() && Keyboard.isKeyDown(Invoker.getForwardCode())) { | ||
Invoker.setMotionY(0.25); | ||
}else if(Invoker.isOnLadder() && !Keyboard.isKeyDown(Invoker.getForwardCode())) { | ||
Invoker.setMotionY(-0.25); | ||
} | ||
} | ||
} | ||
|
||
} |
79 changes: 79 additions & 0 deletions
79
...metadata/.plugins/org.eclipse.core.resources/.history/1f/30c946c5161d001d1323852301c2b112
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
package bastion.defiantce.module; | ||
|
||
import java.util.ArrayList; | ||
|
||
import bastion.defiantce.module.combat.*; | ||
import bastion.defiantce.module.movement.*; | ||
import bastion.defiantce.module.player.*; | ||
import bastion.defiantce.module.render.*; | ||
|
||
public class ModuleManager { | ||
|
||
public static ArrayList<Module> mods; | ||
|
||
public ModuleManager() { | ||
mods = new ArrayList<Module>(); | ||
|
||
//COMBAT | ||
newMod(new FastBow()); | ||
newMod(new KillAura()); | ||
|
||
//MOVEMENT | ||
newMod(new AutoJump()); | ||
newMod(new Flight()); | ||
newMod(new NoFallDamage()); | ||
newMod(new ParkourHelper()); | ||
newMod(new Glide()); | ||
newMod(new JumpLock()); | ||
newMod(new SneakLock()); | ||
newMod(new SpeedHack()); | ||
newMod(new SprintLock()); | ||
newMod(new UnlimitedJumps()); | ||
newMod(new WalkLock()); | ||
newMod(new WallClimb()); | ||
newMod(new WaterBobbing()); | ||
|
||
//PLAYER | ||
newMod(new AntiCobweb()); | ||
newMod(new AutoMine()); | ||
newMod(new AutoRespawn()); | ||
newMod(new FastLadder()); | ||
newMod(new FastUse()); | ||
|
||
//RENDER | ||
newMod(new ClickGui()); | ||
newMod(new ESP()); | ||
newMod(new Xray()); | ||
|
||
//MISC | ||
} | ||
|
||
public static void newMod(Module m) { | ||
mods.add(m); | ||
} | ||
|
||
public static ArrayList<Module> getModules() { | ||
return mods; | ||
} | ||
|
||
public static void onUpdate() { | ||
for(Module m : mods) { | ||
m.onUpdate(); | ||
} | ||
} | ||
|
||
public static void onRender() { | ||
for (Module m : mods) { | ||
m.onRender(); | ||
} | ||
} | ||
|
||
public static void onKey(int k) { | ||
for (Module m : mods) { | ||
if (m.getKey() == k) { | ||
m.toggle(); | ||
} | ||
} | ||
} | ||
|
||
} |
Empty file.
78 changes: 78 additions & 0 deletions
78
...metadata/.plugins/org.eclipse.core.resources/.history/45/c0854412161d001d1323852301c2b112
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
package bastion.defiantce.module; | ||
|
||
import java.util.ArrayList; | ||
|
||
import bastion.defiantce.module.combat.*; | ||
import bastion.defiantce.module.movement.*; | ||
import bastion.defiantce.module.player.*; | ||
import bastion.defiantce.module.render.*; | ||
|
||
public class ModuleManager { | ||
|
||
public static ArrayList<Module> mods; | ||
|
||
public ModuleManager() { | ||
mods = new ArrayList<Module>(); | ||
|
||
//COMBAT | ||
newMod(new FastBow()); | ||
newMod(new KillAura()); | ||
|
||
//MOVEMENT | ||
newMod(new AutoJump()); | ||
newMod(new Flight()); | ||
newMod(new NoFallDamage()); | ||
newMod(new ParkourHelper()); | ||
newMod(new Glide()); | ||
newMod(new JumpLock()); | ||
newMod(new SneakLock()); | ||
newMod(new SpeedHack()); | ||
newMod(new SprintLock()); | ||
newMod(new UnlimitedJumps()); | ||
newMod(new WalkLock()); | ||
newMod(new WallClimb()); | ||
newMod(new WaterBobbing()); | ||
|
||
//PLAYER | ||
newMod(new AutoMine()); | ||
newMod(new AutoRespawn()); | ||
newMod(new FastLadder()); | ||
newMod(new FastUse()); | ||
|
||
//RENDER | ||
newMod(new ClickGui()); | ||
newMod(new ESP()); | ||
newMod(new Xray()); | ||
|
||
//MISC | ||
} | ||
|
||
public static void newMod(Module m) { | ||
mods.add(m); | ||
} | ||
|
||
public static ArrayList<Module> getModules() { | ||
return mods; | ||
} | ||
|
||
public static void onUpdate() { | ||
for(Module m : mods) { | ||
m.onUpdate(); | ||
} | ||
} | ||
|
||
public static void onRender() { | ||
for (Module m : mods) { | ||
m.onRender(); | ||
} | ||
} | ||
|
||
public static void onKey(int k) { | ||
for (Module m : mods) { | ||
if (m.getKey() == k) { | ||
m.toggle(); | ||
} | ||
} | ||
} | ||
|
||
} |
23 changes: 23 additions & 0 deletions
23
...metadata/.plugins/org.eclipse.core.resources/.history/46/00417aea161d001d1323852301c2b112
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package bastion.defiantce.utils; | ||
|
||
public class Timer { | ||
|
||
private long prevTime; | ||
|
||
public Timer() { | ||
prevTime = 0; | ||
} | ||
|
||
public boolean hasTimePassed(long miliSec) { | ||
return (float)(getTime() - prevTime) >= miliSec; | ||
} | ||
|
||
public void reset() { | ||
prevTime = getTime(); | ||
} | ||
|
||
public static long getTime() { | ||
return System.nanoTime() / 1000000; | ||
} | ||
|
||
} |
5 changes: 5 additions & 0 deletions
5
...metadata/.plugins/org.eclipse.core.resources/.history/48/70ba8177161d001d1323852301c2b112
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package bastion.defiantce.utils; | ||
|
||
public class Timer { | ||
|
||
} |
74 changes: 74 additions & 0 deletions
74
...metadata/.plugins/org.eclipse.core.resources/.history/5a/500f9733151d001d1323852301c2b112
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
package bastion.defiantce.module; | ||
|
||
import java.util.ArrayList; | ||
|
||
import bastion.defiantce.module.combat.*; | ||
import bastion.defiantce.module.movement.*; | ||
import bastion.defiantce.module.player.*; | ||
import bastion.defiantce.module.render.*; | ||
|
||
public class ModuleManager { | ||
|
||
public static ArrayList<Module> mods; | ||
|
||
public ModuleManager() { | ||
mods = new ArrayList<Module>(); | ||
|
||
//COMBAT | ||
newMod(new FastBow()); | ||
newMod(new KillAura()); | ||
|
||
//MOVEMENT | ||
newMod(new AutoJump()); | ||
newMod(new Flight()); | ||
newMod(new NoFallDamage()); | ||
newMod(new ParkourHelper()); | ||
newMod(new Glide()); | ||
newMod(new SneakLock()); | ||
newMod(new SpeedHack()); | ||
newMod(new SprintLock()); | ||
newMod(new UnlimitedJumps()); | ||
newMod(new WalkLock()); | ||
newMod(new WallClimb()); | ||
newMod(new WaterBobbing()); | ||
|
||
//PLAYER | ||
newMod(new FastUse()); | ||
|
||
//RENDER | ||
newMod(new ClickGui()); | ||
newMod(new ESP()); | ||
newMod(new Xray()); | ||
|
||
//MISC | ||
} | ||
|
||
public static void newMod(Module m) { | ||
mods.add(m); | ||
} | ||
|
||
public static ArrayList<Module> getModules() { | ||
return mods; | ||
} | ||
|
||
public static void onUpdate() { | ||
for(Module m : mods) { | ||
m.onUpdate(); | ||
} | ||
} | ||
|
||
public static void onRender() { | ||
for (Module m : mods) { | ||
m.onRender(); | ||
} | ||
} | ||
|
||
public static void onKey(int k) { | ||
for (Module m : mods) { | ||
if (m.getKey() == k) { | ||
m.toggle(); | ||
} | ||
} | ||
} | ||
|
||
} |
Empty file.
5 changes: 5 additions & 0 deletions
5
...metadata/.plugins/org.eclipse.core.resources/.history/68/20663aa5151d001d1323852301c2b112
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package bastion.defiantce.module.player; | ||
|
||
public class AutoRespwn { | ||
|
||
} |
5 changes: 5 additions & 0 deletions
5
...metadata/.plugins/org.eclipse.core.resources/.history/69/800fa315151d001d1323852301c2b112
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package bastion.defiantce.module.player; | ||
|
||
public class FastLadder { | ||
|
||
} |
77 changes: 77 additions & 0 deletions
77
...metadata/.plugins/org.eclipse.core.resources/.history/69/a0074ee8151d001d1323852301c2b112
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
package bastion.defiantce.module; | ||
|
||
import java.util.ArrayList; | ||
|
||
import bastion.defiantce.module.combat.*; | ||
import bastion.defiantce.module.movement.*; | ||
import bastion.defiantce.module.player.*; | ||
import bastion.defiantce.module.render.*; | ||
|
||
public class ModuleManager { | ||
|
||
public static ArrayList<Module> mods; | ||
|
||
public ModuleManager() { | ||
mods = new ArrayList<Module>(); | ||
|
||
//COMBAT | ||
newMod(new FastBow()); | ||
newMod(new KillAura()); | ||
|
||
//MOVEMENT | ||
newMod(new AutoJump()); | ||
newMod(new Flight()); | ||
newMod(new NoFallDamage()); | ||
newMod(new ParkourHelper()); | ||
newMod(new Glide()); | ||
newMod(new JumpLock()); | ||
newMod(new SneakLock()); | ||
newMod(new SpeedHack()); | ||
newMod(new SprintLock()); | ||
newMod(new UnlimitedJumps()); | ||
newMod(new WalkLock()); | ||
newMod(new WallClimb()); | ||
newMod(new WaterBobbing()); | ||
|
||
//PLAYER | ||
newMod(new AutoRespawn()); | ||
newMod(new FastLadder()); | ||
newMod(new FastUse()); | ||
|
||
//RENDER | ||
newMod(new ClickGui()); | ||
newMod(new ESP()); | ||
newMod(new Xray()); | ||
|
||
//MISC | ||
} | ||
|
||
public static void newMod(Module m) { | ||
mods.add(m); | ||
} | ||
|
||
public static ArrayList<Module> getModules() { | ||
return mods; | ||
} | ||
|
||
public static void onUpdate() { | ||
for(Module m : mods) { | ||
m.onUpdate(); | ||
} | ||
} | ||
|
||
public static void onRender() { | ||
for (Module m : mods) { | ||
m.onRender(); | ||
} | ||
} | ||
|
||
public static void onKey(int k) { | ||
for (Module m : mods) { | ||
if (m.getKey() == k) { | ||
m.toggle(); | ||
} | ||
} | ||
} | ||
|
||
} |
Empty file.
Empty file.
5 changes: 5 additions & 0 deletions
5
...metadata/.plugins/org.eclipse.core.resources/.history/6e/00fbb564151d001d1323852301c2b112
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package bastion.defiantce.module.movement; | ||
|
||
public class JumpLock { | ||
|
||
} |
Empty file.
Oops, something went wrong.