This repository was archived by the owner on Nov 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 8 files changed +2
-20
lines changed
1.16_combat-6/src/main/java/io/github/axolotlclient/modules/hypixel
1.20/src/main/java/io/github/axolotlclient/modules/hypixel
1.21.4/src/main/java/io/github/axolotlclient/modules/hypixel
1.21/src/main/java/io/github/axolotlclient/modules/hypixel
1.8.9/src/main/java/io/github/axolotlclient/modules/hypixel
common/src/main/resources/assets/axolotlclient/lang Expand file tree Collapse file tree 8 files changed +2
-20
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,6 @@ public class HypixelMods extends AbstractModule {
5151 private final OptionCategory category = OptionCategory .create ("hypixel-mods" );
5252 private final List <AbstractHypixelMod > subModules = new ArrayList <>();
5353 private final BooleanOption removeLobbyJoinMessages = new BooleanOption ("removeLobbyJoinMessages" , false );
54- private final BooleanOption removeMysteryBoxFindings = new BooleanOption ("removeMysteryBoxFindings" , false );
5554
5655 public static HypixelMods getInstance () {
5756 return INSTANCE ;
@@ -61,7 +60,6 @@ public static HypixelMods getInstance() {
6160 public void init () {
6261 category .add (cacheMode );
6362 category .add (removeLobbyJoinMessages );
64- category .add (removeMysteryBoxFindings );
6563
6664 addSubModule (LevelHead .getInstance ());
6765 addSubModule (AutoGG .getInstance ());
@@ -80,7 +78,6 @@ public void init() {
8078 Events .RECEIVE_CHAT_MESSAGE_EVENT .register (event -> {
8179 AutoBoop .getInstance ().handleMessage (event .getOriginalMessage ());
8280 HypixelMessages .getInstance ().process (removeLobbyJoinMessages , "lobby_join" , event );
83- HypixelMessages .getInstance ().process (removeMysteryBoxFindings , "mysterybox_find" , event );
8481 });
8582 }
8683
Original file line number Diff line number Diff line change @@ -50,7 +50,6 @@ public class HypixelMods extends AbstractModule {
5050 private final OptionCategory category = OptionCategory .create ("hypixel-mods" );
5151 private final List <AbstractHypixelMod > subModules = new ArrayList <>();
5252 private final BooleanOption removeLobbyJoinMessages = new BooleanOption ("removeLobbyJoinMessages" , false );
53- private final BooleanOption removeMysteryBoxFindings = new BooleanOption ("removeMysteryBoxFindings" , false );
5453
5554 public static HypixelMods getInstance () {
5655 return INSTANCE ;
@@ -60,7 +59,6 @@ public static HypixelMods getInstance() {
6059 public void init () {
6160 category .add (cacheMode );
6261 category .add (removeLobbyJoinMessages );
63- category .add (removeMysteryBoxFindings );
6462
6563 addSubModule (LevelHead .getInstance ());
6664 addSubModule (AutoGG .getInstance ());
@@ -79,7 +77,6 @@ public void init() {
7977 Events .RECEIVE_CHAT_MESSAGE_EVENT .register (event -> {
8078 AutoBoop .getInstance ().handleMessage (event .getOriginalMessage ());
8179 HypixelMessages .getInstance ().process (removeLobbyJoinMessages , "lobby_join" , event );
82- HypixelMessages .getInstance ().process (removeMysteryBoxFindings , "mysterybox_find" , event );
8380 });
8481 }
8582
Original file line number Diff line number Diff line change @@ -50,7 +50,6 @@ public class HypixelMods extends AbstractModule {
5050 private final OptionCategory category = OptionCategory .create ("hypixel-mods" );
5151 private final List <AbstractHypixelMod > subModules = new ArrayList <>();
5252 private final BooleanOption removeLobbyJoinMessages = new BooleanOption ("removeLobbyJoinMessages" , false );
53- private final BooleanOption removeMysteryBoxFindings = new BooleanOption ("removeMysteryBoxFindings" , false );
5453
5554 public static HypixelMods getInstance () {
5655 return INSTANCE ;
@@ -60,7 +59,6 @@ public static HypixelMods getInstance() {
6059 public void init () {
6160 category .add (cacheMode );
6261 category .add (removeLobbyJoinMessages );
63- category .add (removeMysteryBoxFindings );
6462
6563 addSubModule (LevelHead .getInstance ());
6664 addSubModule (AutoGG .getInstance ());
@@ -79,7 +77,6 @@ public void init() {
7977 Events .RECEIVE_CHAT_MESSAGE_EVENT .register (event -> {
8078 AutoBoop .getInstance ().handleMessage (event .getOriginalMessage ());
8179 HypixelMessages .getInstance ().process (removeLobbyJoinMessages , "lobby_join" , event );
82- HypixelMessages .getInstance ().process (removeMysteryBoxFindings , "mysterybox_find" , event );
8380 });
8481 }
8582
Original file line number Diff line number Diff line change @@ -50,7 +50,6 @@ public class HypixelMods extends AbstractModule {
5050 private final OptionCategory category = OptionCategory .create ("hypixel-mods" );
5151 private final List <AbstractHypixelMod > subModules = new ArrayList <>();
5252 private final BooleanOption removeLobbyJoinMessages = new BooleanOption ("removeLobbyJoinMessages" , false );
53- private final BooleanOption removeMysteryBoxFindings = new BooleanOption ("removeMysteryBoxFindings" , false );
5453
5554 public static HypixelMods getInstance () {
5655 return INSTANCE ;
@@ -60,7 +59,6 @@ public static HypixelMods getInstance() {
6059 public void init () {
6160 category .add (cacheMode );
6261 category .add (removeLobbyJoinMessages );
63- category .add (removeMysteryBoxFindings );
6462
6563 addSubModule (LevelHead .getInstance ());
6664 addSubModule (AutoGG .getInstance ());
@@ -79,7 +77,6 @@ public void init() {
7977 Events .RECEIVE_CHAT_MESSAGE_EVENT .register (event -> {
8078 AutoBoop .getInstance ().handleMessage (event .getOriginalMessage ());
8179 HypixelMessages .getInstance ().process (removeLobbyJoinMessages , "lobby_join" , event );
82- HypixelMessages .getInstance ().process (removeMysteryBoxFindings , "mysterybox_find" , event );
8380 });
8481 }
8582
Original file line number Diff line number Diff line change 3434import io .github .axolotlclient .AxolotlClientConfig .impl .options .BooleanOption ;
3535import io .github .axolotlclient .util .GsonHelper ;
3636import io .github .axolotlclient .util .events .impl .ReceiveChatMessageEvent ;
37- import io .github .moehreag .searchInResources .SearchableResourceManager ;
3837import lombok .Getter ;
3938import net .minecraft .client .Minecraft ;
4039import net .minecraft .client .resource .manager .ResourceManager ;
@@ -54,7 +53,7 @@ public void load() {
5453
5554 AxolotlClient .LOGGER .debug ("Loading Hypixel Messages" );
5655 ResourceManager manager = Minecraft .getInstance ().getResourceManager ();
57- (( SearchableResourceManager ) manager ) .findResources ("" , "lang" ,
56+ manager .findResources ("" , "lang" ,
5857 identifier -> identifier .getPath ().endsWith (".hypixel.json" )).values ().forEach (resource -> {
5958 int i = resource .getLocation ().getPath ().lastIndexOf ("/" ) + 1 ;
6059 String lang = resource .getLocation ().getPath ().substring (i , i + 5 );
Original file line number Diff line number Diff line change @@ -49,7 +49,6 @@ public class HypixelMods extends AbstractModule {
4949 private final OptionCategory category = OptionCategory .create ("hypixel-mods" );
5050 private final List <AbstractHypixelMod > subModules = new ArrayList <>();
5151 private final BooleanOption removeLobbyJoinMessages = new BooleanOption ("removeLobbyJoinMessages" , false );
52- private final BooleanOption removeMysteryBoxFindings = new BooleanOption ("removeMysteryBoxFindings" , false );
5352
5453
5554 public static HypixelMods getInstance () {
@@ -60,7 +59,6 @@ public static HypixelMods getInstance() {
6059 public void init () {
6160 category .add (cacheMode );
6261 category .add (removeLobbyJoinMessages );
63- category .add (removeMysteryBoxFindings );
6462
6563 addSubModule (LevelHead .getInstance ());
6664 addSubModule (AutoGG .getInstance ());
@@ -79,7 +77,6 @@ public void init() {
7977 Events .RECEIVE_CHAT_MESSAGE_EVENT .register (event -> {
8078 AutoBoop .getInstance ().handleMessage (event .getOriginalMessage ());
8179 HypixelMessages .getInstance ().process (removeLobbyJoinMessages , "lobby_join" , event );
82- HypixelMessages .getInstance ().process (removeMysteryBoxFindings , "mysterybox_find" , event );
8380 });
8481 }
8582
Original file line number Diff line number Diff line change 11{
2- "lobby_join" : " ^.*§f §6(?:joined|slid into) the lobby!(?: §a<§c<§b<)?$" ,
3- "mysterybox_find" : " ^✦ .* found an? .*Mystery Box(?:.*)?!$"
2+ "lobby_join" : " ^.*§f §6(?:joined|slid into) the lobby!(?: §a<§c<§b<)?$"
43}
Original file line number Diff line number Diff line change 416416 "zoomScrolling" : " Zoom Scrolling" ,
417417 "zoomScrolling.tooltip" : " Whether to allow scrolling to modify the zoom factor." ,
418418 "removeLobbyJoinMessages" : " Remove Lobby Join Messages" ,
419- "removeMysteryBoxFindings" : " Remove Mystery Box Findings Messages" ,
420419 "zoomSpeed" : " Animation Speed" ,
421420 "api.error.userNotFound" : " The specified User could not be found." ,
422421 "api.error.friendRequestNotFound" : " You do not have a friend request from this user." ,
You can’t perform that action at this time.
0 commit comments