Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
MicrocontrollersDev committed Jun 21, 2024
2 parents 1a99106 + 7595c42 commit cdcf5bb
Show file tree
Hide file tree
Showing 15 changed files with 713 additions and 150 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
mod_name = Hytils Reborn
mod_id = hytils-reborn
mod_version = 1.6.2
mod_version = 1.7.0
# Sets the name of the jar file that you put in your 'mods' folder.
mod_archives_name=Hytils Reborn

Expand Down
58 changes: 58 additions & 0 deletions src/dummy/java/club/sk1er/lobbysounds/config/Sounds.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
/*
* Hytils Reborn - Hypixel focused Quality of Life mod.
* Copyright (C) 2020, 2021, 2022, 2023 Polyfrost, Sk1er LLC and contributors
*
* 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 <https://www.gnu.org/licenses/>.
*/

package club.sk1er.lobbysounds.config;

public class Sounds {

public static boolean DISABLE_SLIME_SOUNDS;

public static boolean DISABLE_DRAGON_SOUNDS;

public static boolean DISABLE_WITHER_SOUNDS;

public static boolean DISABLE_ITEM_PICKUP_SOUNDS;

public static boolean DISABLE_EXPERIENCE_SOUNDS;

public static boolean DISABLE_TNT_PRIME_SOUNDS;

public static boolean DISABLE_EXPLOSION_SOUNDS;

public static boolean DISABLE_DELIVERY_MAN_SOUNDS;

public static boolean DISABLE_NOTE_SOUNDS;

public static boolean DISABLE_FIREWORKS_SOUNDS;

public static boolean DISABLE_LEVELUP_SOUNDS;

public static boolean DISABLE_STEP_SOUNDS;

public static boolean DISABLE_ARROW_SOUNDS;

public static boolean DISABLE_BAT_SOUNDS;

public static boolean DISABLE_FIRE_SOUNDS;

public static boolean DISABLE_ENDERMEN_SOUNDS;

public void markDirty() {}

public void writeData() {}
}
29 changes: 29 additions & 0 deletions src/dummy/java/club/sk1er/mods/autogg/AutoGG.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
/*
* Hytils Reborn - Hypixel focused Quality of Life mod.
* Copyright (C) 2020, 2021, 2022, 2023 Polyfrost, Sk1er LLC and contributors
*
* 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 <https://www.gnu.org/licenses/>.
*/

package club.sk1er.mods.autogg;

import club.sk1er.mods.autogg.config.AutoGGConfig;

public class AutoGG {
public static AutoGG INSTANCE = new AutoGG();

public AutoGGConfig getAutoGGConfig() {
return new AutoGGConfig();
}
}
72 changes: 72 additions & 0 deletions src/dummy/java/club/sk1er/mods/autogg/config/AutoGGConfig.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
/*
* Hytils Reborn - Hypixel focused Quality of Life mod.
* Copyright (C) 2020, 2021, 2022, 2023 Polyfrost, Sk1er LLC and contributors
*
* 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 <https://www.gnu.org/licenses/>.
*/

package club.sk1er.mods.autogg.config;

public class AutoGGConfig {

private boolean autoGGEnabled = true;
private boolean casualAutoGGEnabled;
private boolean antiGGEnabled;
private boolean antiKarmaEnabled;
private int autoGGDelay = 1;
private int autoGGPhrase = 0;
private boolean secondaryEnabled;
private int autoGGPhrase2 = 0;
private int secondaryDelay = 1;

public boolean isModEnabled() {
return autoGGEnabled;
}

public boolean isCasualAutoGGEnabled() {
return casualAutoGGEnabled;
}

public boolean isAntiGGEnabled() {
return antiGGEnabled;
}

public boolean isAntiKarmaEnabled() {
return antiKarmaEnabled;
}

public int getAutoGGDelay() {
return autoGGDelay;
}

public int getAutoGGPhrase() {
return autoGGPhrase;
}

public boolean isSecondaryEnabled() {
return secondaryEnabled;
}

public int getAutoGGPhrase2() {
return autoGGPhrase2;
}

public int getSecondaryDelay() {
return secondaryDelay;
}

public void markDirty() {}

public void writeData() {}
}
1 change: 1 addition & 0 deletions src/main/java/org/polyfrost/hytils/HytilsReborn.java
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ public class HytilsReborn {

public boolean isPatcher;
public boolean isChatting;
public boolean isSk1erAutoGG;
private boolean loadedCall;

private RankType rank;
Expand Down
Loading

0 comments on commit cdcf5bb

Please sign in to comment.