Skip to content

Commit

Permalink
FORTNITE
Browse files Browse the repository at this point in the history
  • Loading branch information
evaan committed Aug 13, 2020
1 parent 9b3edd7 commit e880cdd
Show file tree
Hide file tree
Showing 215 changed files with 15,966 additions and 15,915 deletions.
File renamed without changes.
33 changes: 12 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

Very cool client and now reskinned by epearl using spaghetti code.

Works on fabric 1.16.2
Works on fabric 1.16.2 (YOU WILL NEED VIAFABRIC TO CONNECT TO ENDCRYSTAL UNTIL I ADD 1.16.2 CONNECTION SUPPORT!)

> Join Bleach's Discord Cuz He Made The Client Im Skidding: https://discord.gg/b5Wc4nQ
Expand All @@ -26,26 +26,17 @@ That's where you'll put any mods you want to install.

## Differences

epearl edition is blue themed
has the title screen bleachhack mode off by default
has the gui fills removed
has prebinds removed
changed the watermark
other stuff i dont remember
epearl edition is blue themed
has the title screen bleachhack mode off by default
has the gui fills removed
has prebinds removed
other stuff i dont remember

## Plans


- [x] custom blue RPC logo
- [x] UI on by default
- [x] add border to gui
- [ ] auto-trap module
- [ ] better crystal-aura module
- [x] drawn modules command to unlist stuff in arraylist
- [ ] change hover module description colors to match theme
- [ ] make surround walk to center of block not tp
- [x] syncronize all the rgb in the gui color picker
- [ ] draggable or xyz customizable UI modules
- [ ] ability to save configs and switch between them
- [ ] ability to create columns and add/remove modules to them
- [ ] other stuff i dont remember
custom blue rpc logo
UI on by default
add border to gui
auto-trap module
better crystal-aura module
other stuff i dont remember
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ org.gradle.jvmargs=-Xmx1G
loader_version=0.9.1+build.205

# Mod Properties
mod_version = 420
mod_version = 13.37
maven_group = bleach.hack
archives_base_name = bleachhack-epearl-edition
archives_base_name = bleachhack

# Dependencies
# currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 0 additions & 2 deletions online/latestversion.txt

This file was deleted.

Binary file removed online/notebot/songs.zip
Binary file not shown.
4 changes: 0 additions & 4 deletions online/notebot/very important.txt

This file was deleted.

69 changes: 0 additions & 69 deletions online/splashes.txt

This file was deleted.

9 changes: 0 additions & 9 deletions online/updater/info-1.14.csv

This file was deleted.

File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,62 +1,68 @@
/*
* This file is part of the BleachHack distribution (https://github.com/BleachDrinker420/bleachhack-1.14/).
* Copyright (c) 2019 Bleach.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package bleach.hack;

import com.google.common.eventbus.EventBus;

import bleach.hack.gui.BleachMainMenu;
import bleach.hack.module.Module;
import bleach.hack.module.ModuleManager;
import bleach.hack.module.mods.ClickGui;
import bleach.hack.utils.FriendManager;
import bleach.hack.utils.file.BleachFileHelper;
import bleach.hack.utils.file.BleachFileMang;
import net.fabricmc.api.ModInitializer;

public class BleachHack implements ModInitializer {

public static final String VERSION = "B1000";
public static final int INTVERSION = 24;

public static EventBus eventBus = new EventBus();

public static FriendManager friendMang;

@Override
public void onInitialize() {
BleachFileMang.init();
BleachFileHelper.readModules();

ClickGui.clickGui.initWindows();
BleachFileHelper.readClickGui();
BleachFileHelper.readPrefix();
BleachFileHelper.readFriends();

for (Module m: ModuleManager.getModules()) m.init();

//v This makes a scat fetishist look like housekeeping.
eventBus.register(new ModuleManager());
// wait why do we need this ^?
// Because I was too lazy to implement a proper keybind system and I left the keypress handler in ModuleManager as a subscribed event. TODO: Proper Keybind System

String mainMenu = BleachFileHelper.readMiscSetting("customTitleScreen");
if (mainMenu != null && mainMenu.equalsIgnoreCase("false")) {
BleachMainMenu.customTitleScreen = false;
}
}
}
/*
* This file is part of the BleachHack distribution (https://github.com/BleachDrinker420/bleachhack-1.14/).
* Copyright (c) 2019 Bleach.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package bleach.hack;

import bleach.hack.utils.Rainbow;
import com.google.common.eventbus.EventBus;

import bleach.hack.gui.BleachMainMenu;
import bleach.hack.module.Module;
import bleach.hack.module.ModuleManager;
import bleach.hack.module.mods.ClickGui;
import bleach.hack.utils.FriendManager;
import bleach.hack.utils.file.BleachFileHelper;
import bleach.hack.utils.file.BleachFileMang;
import net.fabricmc.api.ModInitializer;
import net.minecraft.client.MinecraftClient;

import java.nio.file.Paths;

public class BleachHack implements ModInitializer {

public static final String VERSION = "B1000";
public static final int INTVERSION = 24;

public static EventBus eventBus = new EventBus();

public static FriendManager friendMang;

@Override
public void onInitialize() {
BleachFileMang.init();
BleachFileHelper.readModules();

ClickGui.clickGui.initWindows();
BleachFileHelper.readClickGui();
BleachFileHelper.readPrefix();
BleachFileHelper.readFriends();

for (Module m: ModuleManager.getModules()) m.init();

eventBus.register(new Rainbow());

//v This makes a scat fetishist look like housekeeping.
eventBus.register(new ModuleManager());
// wait why do we need this ^?
// Because I was too lazy to implement a proper keybind system and I left the keypress handler in ModuleManager as a subscribed event. TODO: Proper Keybind System

String mainMenu = BleachFileHelper.readMiscSetting("customTitleScreen");
if (mainMenu != null && mainMenu.equalsIgnoreCase("false")) {
BleachMainMenu.customTitleScreen = false;
}
}
}
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
/*
* This file is part of the BleachHack distribution (https://github.com/BleachDrinker420/bleachhack-1.14/).
* Copyright (c) 2019 Bleach.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package bleach.hack.command;

import net.minecraft.client.MinecraftClient;

public abstract class Command {

public static String PREFIX = "$";

protected MinecraftClient mc = MinecraftClient.getInstance();

public abstract String getAlias();
public abstract String getDescription();
public abstract String getSyntax();
public abstract void onCommand(String command,String[] args) throws Exception;
}
/*
* This file is part of the BleachHack distribution (https://github.com/BleachDrinker420/bleachhack-1.14/).
* Copyright (c) 2019 Bleach.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package bleach.hack.command;

import net.minecraft.client.MinecraftClient;

public abstract class Command {

public static String PREFIX = "$";

protected MinecraftClient mc = MinecraftClient.getInstance();

public abstract String getAlias();
public abstract String getDescription();
public abstract String getSyntax();
public abstract void onCommand(String command,String[] args) throws Exception;
}
Loading

0 comments on commit e880cdd

Please sign in to comment.