diff --git a/README.md b/README.md
index d2fa29e00..45f507d09 100644
--- a/README.md
+++ b/README.md
@@ -20,8 +20,6 @@ Raven B4, but not only for Hypixel.
![2024-07-10_14 13 51](https://github.com/xia-mc/Raven-XD/assets/108219418/15470b4f-b29d-49a5-8396-1c1d4bd315a1)
-### ***More functionality while staying in sync with upstream branches.***
-
diff --git a/src/main/java/keystrokesmod/module/impl/other/KillMessage.java b/src/main/java/keystrokesmod/module/impl/other/KillMessage.java
index a6c9a0f00..ea2069749 100644
--- a/src/main/java/keystrokesmod/module/impl/other/KillMessage.java
+++ b/src/main/java/keystrokesmod/module/impl/other/KillMessage.java
@@ -11,6 +11,9 @@
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
import org.jetbrains.annotations.NotNull;
+import java.util.Locale;
+import java.util.Random;
+
public class KillMessage extends Module {
public static String killMessage = "This is a custom killMessage";
@@ -21,7 +24,7 @@ public class KillMessage extends Module {
public KillMessage() {
super("KillMessage", category.other);
- this.registerSetting(mode = new ModeSetting("Mode", new String[]{"yby02", "Custom"}, 0));
+ this.registerSetting(mode = new ModeSetting("Mode", new String[]{"yby02", "Custom", "Heist"}, 0));
}
@SubscribeEvent
@@ -56,6 +59,44 @@ private String getKillMessage() {
return "你们好,我叫Esound。你已经被02开发的Neverlose击杀";
case 1:
return killMessage;
+ case 2:
+ String[] messages = {
+ "Mit Icarus wäre das nicht passiert",
+ "POV: Icarus",
+ "Nova is 'THE BEST CLIENT 2024', trust, no auto ban",
+ "Vesper ist kein Exitscam, vertrau",
+ "Spielst du Fortnite?",
+ "Welcome to Meist... Meist Hacks?... Was ist den Meist Hacks?",
+ "POV Icarus... Und jetzt einmal kurz... POV Augustus...",
+ "Ah... Doof gelaufen für Augustus... Vielleicht nächstes Mal...",
+ "IQ Zellen",
+ "Bro paid for a cheat to lose against me",
+ "It's only cheating when you get caught!",
+ "I'm on Immaculate rn, btw",
+ "I'm on AstroWare rn, btw",
+ "I'm on Wurst rn, btw",
+ "Klientus ist keine Rat",
+ "10/10 im HAZE Rating",
+ "RAT im Clientlauncher / Ich wurde geRATTED!",
+ "ESound Calling",
+ "Adapt ist gut",
+ "Dümmer als Toastbrot",
+ "Jetzt erstmal 10 Minuten Rage Stream",
+ "'Nius ist eine neutrale Quelle'~Verschmxtztxcole(geht so leicht in die rechte Richtung)",
+ "'Alice Weidel ist nicht rechts'~Verschmxtztxcole(geht so leicht in die rechte Richtung)",
+ "foiled again",
+ "I love Nekomame",
+ "slurp",
+ "Polar is always watching",
+ "e.setYaw(RotationUtils.serverYaw)",
+ "Aus Protest Vernunft wählen ~ FDP",
+ "Unser Client zuerst ~ FDP",
+ "Piwo",
+ "Bottom Text"
+ };
+ Random random = new Random();
+ int randomIndex = random.nextInt(messages.length);
+ return messages[randomIndex];
}
return "";
}