Skip to content

Commit

Permalink
1/?: HAHAHA
Browse files Browse the repository at this point in the history
  • Loading branch information
Coccocoahelper authored Jun 13, 2024
1 parent b323ea4 commit 7d879eb
Show file tree
Hide file tree
Showing 14 changed files with 67 additions and 920 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Build

on: [ push, pull_request ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive

- name: Java setup
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: 8
cache: gradle

- name: Build
run: |
chmod +x ./gradlew
./gradlew setupCiWorkspace --no-daemon
./gradlew clean --no-daemon
./gradlew build --no-daemon --refresh-dependencies
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: raven
path: build/libs/
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ plugins {

version = "1.2"
group = "keystrokesmod"
archivesBaseName = "[1.8.9] BetterKeystrokes V"
archivesBaseName = "KeystrokesMod"

minecraft {
version = "1.8.9-11.15.1.2318-1.8.9"
Expand Down
5 changes: 2 additions & 3 deletions src/main/java/keystrokesmod/client/main/Raven.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ public class Raven {
public static boolean debugger = false;
public static final VersionManager versionManager = new VersionManager();
public static CommandManager commandManager;
public static final String sourceLocation = "https://github.com/Kopamed/Raven-bPLUS";
public static final String downloadLocation = "https://github.com/Kopamed/Raven-bPLUS/raw/main/build/libs/%5B1.8.9%5D%20BetterKeystrokes%20V-1.2.jar";
public static final String sourceLocation = "https://github.com/Coccocoahelper/Raven-BLITE";
public static final String downloadLocation = "https://github.com/Coccocoahelper/Raven-BLITE/raw/main/build/libs/%5B1.8.9%5D%20BetterKeystrokes%20V-1.2.jar";
public static final String discord = "https://discord.gg/QQMQfCRyNP";
public static String[] updateText = {"Your version of Raven B+ (" + versionManager.getClientVersion().toString() + ") is outdated!", "Enter the command update into client CommandLine to open the download page", "or just enable the update module to get a message in chat.", "", "Newest version: " + versionManager.getLatestVersion().toString()};
public static ConfigManager configManager;
Expand All @@ -80,7 +80,6 @@ public class Raven {
public static void init() {

MinecraftForge.EVENT_BUS.register(new Raven());
MinecraftForge.EVENT_BUS.register(new DebugInfoRenderer());
MinecraftForge.EVENT_BUS.register(new MouseManager());
MinecraftForge.EVENT_BUS.register(new ChatHelper());

Expand Down
9 changes: 0 additions & 9 deletions src/main/java/keystrokesmod/client/module/ModuleManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ public ModuleManager() {
addModule(new LeftClicker());
addModule(new RightClicker());
addModule(new AimAssist());
addModule(new BurstClicker());
addModule(new ClickAssist());
addModule(new DelayRemover());
addModule(new HitBox());
Expand All @@ -51,7 +50,6 @@ public ModuleManager() {
addModule(new BedAura());
addModule(new FallSpeed());
addModule(new FastPlace());
addModule(new Freecam());
addModule(new NoFall());
addModule(new SafeWalk());
addModule(new AntiBot());
Expand All @@ -67,13 +65,11 @@ public ModuleManager() {
addModule(new DuelsStats());
addModule(new MurderMystery());
addModule(new SumoFences());
addModule(new SlyPort());
addModule(new ClientNameSpoof());
addModule(new FakeChat());
addModule(new NameHider());
addModule(new StringEncrypt());
addModule(new WaterBucket());
//addModule(new AutoConfig());
addModule(new Terminal());
addModule(new GuiModule());
addModule(new SelfDestruct());
Expand All @@ -90,17 +86,12 @@ public ModuleManager() {
addModule(new Armour());
addModule(new Healing());
addModule(new Trajectories());
addModule(new WTap());
addModule(new BlockHit());
addModule(new STap());
addModule(new AutoWeapon());
addModule(new BedwarsOverlay());

addModule(new ShiftTap());
addModule(new FPSSpoofer());

addModule(new ExplicitB9NameTags());
addModule(new AutoBlock());
addModule(new MiddleClick());

// why ?
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import keystrokesmod.client.main.Raven;
import keystrokesmod.client.module.Module;
import keystrokesmod.client.utils.ChatHelper;
import keystrokesmod.client.utils.DebugInfoRenderer;
import keystrokesmod.client.utils.MouseManager;
import keystrokesmod.keystroke.KeyStrokeRenderer;
import net.minecraftforge.common.MinecraftForge;
Expand Down Expand Up @@ -32,7 +31,6 @@ public void onEnable() {

// dude your event system doesnt even work bruh
MinecraftForge.EVENT_BUS.unregister(new Raven());
MinecraftForge.EVENT_BUS.unregister(new DebugInfoRenderer());
MinecraftForge.EVENT_BUS.unregister(new MouseManager());
MinecraftForge.EVENT_BUS.unregister(new KeyStrokeRenderer());
MinecraftForge.EVENT_BUS.unregister(new ChatHelper());
Expand Down

This file was deleted.

This file was deleted.

Loading

0 comments on commit 7d879eb

Please sign in to comment.