Skip to content

Instantly share code, notes, and snippets.

View OxideWaveLength's full-sized avatar
:atom:

OxideWaveLength

:atom:
View GitHub Profile
@OxideWaveLength
OxideWaveLength / BetterReflection Results (100000000 loops)
Created February 20, 2021 15:02
Results for the BetterReflection tests, the loops amount is set to 100000000
Now testing Normal Reflections.
-------- Starting Test 1 --------
Description: This test gets the public field of the test object through normal reflections.
The test has taken about 14660ms.
-------- Starting Test 2 --------
Description: This test is going to get the public field of the test object through normal reflections, get its value and store it inside of a local variable.
The test has taken about 14550ms.
-------- Starting Test 3 --------
Description: This test gets the private field of the test object through normal reflections.
@OxideWaveLength
OxideWaveLength / BetterReflection Results (10000000 loops)
Created February 20, 2021 15:02
Results for the BetterReflection tests, the loops amount is set to 10000000
Now testing Normal Reflections.
-------- Starting Test 1 --------
Description: This test gets the public field of the test object through normal reflections.
The test has taken about 1401ms.
-------- Starting Test 2 --------
Description: This test is going to get the public field of the test object through normal reflections, get its value and store it inside of a local variable.
The test has taken about 1424ms.
-------- Starting Test 3 --------
Description: This test gets the private field of the test object through normal reflections.
public class AntiCheatExample extends Module {
public AntiCheatExample() {
super("AntiCheats", "This module demonstrates how to use different anticheats", Keyboard.VK_F, Category.MOVEMENT, AntiCheat.VANILLA, AntiCheat.AAC, AntiCheat.VENOM);
}
@Override
public void onUpdate(UpdateEvent event) {
/* Here you can replace the chat messages with your own code for each different anticheat */
switch(antiCheat) {
@OxideWaveLength
OxideWaveLength / autoclicker.java
Last active February 20, 2021 00:51
This is a basic autoclicker for my baseclient
public class AutoClicker extends Module {
public AutoClicker() {
super("AutoClicker", "This is an autoclicker", 0, Category.COMBAT, AntiCheat.VANILLA);
}
@Overerride
public void setup() {
moduleSettings.addDefault("cps", 13);
}