-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
291 additions
and
275 deletions.
There are no files selected for viewing
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
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
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
21 changes: 21 additions & 0 deletions
21
src/main/java/net/aspw/client/features/module/impl/exploit/Debug.kt
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,21 @@ | ||
package net.aspw.client.features.module.impl.exploit | ||
|
||
import net.aspw.client.event.EventTarget | ||
import net.aspw.client.event.Render3DEvent | ||
import net.aspw.client.features.module.Module | ||
import net.aspw.client.features.module.ModuleCategory | ||
import net.aspw.client.features.module.ModuleInfo | ||
import net.aspw.client.utils.MovementUtils | ||
import net.aspw.client.utils.render.RenderUtils | ||
import net.aspw.client.value.IntegerValue | ||
|
||
@ModuleInfo(name = "Debug", category = ModuleCategory.EXPLOIT) | ||
class Debug : Module() { | ||
private val rangeValue = IntegerValue("Range", 100, 0, 200) | ||
|
||
@EventTarget | ||
fun onRender3D(event: Render3DEvent) { | ||
val positions = MovementUtils.predict(rangeValue.get()) | ||
RenderUtils.renderLine(positions) | ||
} | ||
} |
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
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
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
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
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
Oops, something went wrong.