commit aded03595caa12ae82dddbd7be69f91d7ed0db74 Author: Merith-TK Date: Tue Dec 31 12:12:40 2024 -0800 Dough Base diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..e33eab6 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,39 @@ +name: Build Modpack + +on: + pull_request: + push: + branches: + - main # Change this to your preferred branch + tags-ignore: + - 'v*' + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Set up JDK + uses: actions/setup-java@v2 + with: + distribution: 'temurin' + java-version: '16' # Change to '8' for Java 8 + + - name: Install 7z + run: | + sudo apt-get update + sudo apt-get install -y p7zip-full + + - name: Install Go + uses: actions/setup-go@v2 + with: + go-version: '1.23' + + - name: Update Packwiz + run: make update-packwiz + + - name: Make Modpack + run: make preClean multimc curseforge modrinth postClean \ No newline at end of file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..45955a9 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,46 @@ +name: Release Modpack + +on: + push: + tags: + - 'v*' + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Set up JDK + uses: actions/setup-java@v2 + with: + distribution: 'temurin' + java-version: '16' # Change to '8' for Java 8 + + - name: Install 7z + run: | + sudo apt-get update + sudo apt-get install -y p7zip-full + + - name: Install Go + uses: actions/setup-go@v2 + with: + go-version: '1.23' + + - name: Update Packwiz + run: make update-packwiz + + - name: Make Modpack + run: make preClean multimc curseforge modrinth postClean + + - name: Make Modlist + run: make release-file + + - name: Create Release + uses: ncipollo/release-action@v1 + with: + artifacts: ".build/*" + allowUpdates: true + bodyFile: ".build/CHANGELOG.md" diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..857f17c --- /dev/null +++ b/.gitignore @@ -0,0 +1,22 @@ +## Prevent Vanillia Minecraft folders from being tracked +.minecraft/coremods +.minecraft/logs +.minecraft/resourcepacks +.minecraft/saves +.minecraft/screenshots +.minecraft/server-resource-packs +.minecraft/texturepacks +.minecraft/realms_persistence.json + +## Ignore Modpack Updater Script loose files +.build +.run +.server +.technic + +*.zip +*.mrpack + +## Add your modded folders/files to ignore here +.minecraft/packwiz-installer.jar +.minecraft/packwiz.json diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile new file mode 100644 index 0000000..f64ba8d --- /dev/null +++ b/.gitpod.Dockerfile @@ -0,0 +1,7 @@ +FROM gitpod/workspace-go + +RUN sudo apt-get -q update && \ + sudo apt install p7zip-full make && \ + sudo apt install -yq openjdk-17-jdk + +RUN sudo update-java-alternatives --set java-1.17.0-openjdk-amd64 \ No newline at end of file diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000..988b34c --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,5 @@ +image: + file: .gitpod.Dockerfile + +tasks: +- command: make update-packwiz diff --git a/.minecraft/config/simplemenu.json5 b/.minecraft/config/simplemenu.json5 new file mode 100644 index 0000000..6f783dc --- /dev/null +++ b/.minecraft/config/simplemenu.json5 @@ -0,0 +1,30 @@ +{ + // Whether a custom window title should be set. Uses the value set in 'customWindowTitle'. + "setCustomWindowTitle": true, + // The custom window title that's used when 'setCustomWindowTitle' is enabled. + "customWindowTitle": "Dough", + // If a custom window icon should be set. Two files are needed. Both in PNG format. One a 16 pixel square called 'icon_16x16.png', and one a 32 pixel square called 'icon_32x32.png'. Located in './config/simplemenu/icon'. + "setCustomWindowIcon": true, + // If a custom main menu logo should be rendered. This will replace the 'Minecraft' text. A 'logo.png' file is needed. Located in './config/simplemenu/logo'. By default the image dimensions are 1024x256. To remove it completely, use an empty .png file. + "replaceMainMenuLogo": false, + // If a custom main menu 'edition' logo should be rendered. This will replace the 'Java Edition' text. An 'edition.png' file is needed. Located in './config/simplemenu/logo'. By default the image dimensions are 512x64. To remove it completely, use an empty .png file. + "replaceMainMenuEditionLogo": false, + // If a custom background should be rendered. A 'background.png' file is needed. Located in './config/simplemenu/background/'. + "setCustomBackground": false, + // If the Minecraft Realms button should be hidden from the main menu. Enabled by default, since modded Minecraft is incompatible with it. + "hideMinecraftRealmsButton": true, + // Whether the Minecraft Realms button should be replaced by a serverhosting promo button. + "enableServerPromoButton": false, + // The default server promo button text. + "serverPromoButtonTextDefault": "Need a Server?", + // The server promo button text shown when hovering it. + "serverPromoButtonTextOnHover": "Use code PROMO for 25% off", + // The URL that's being navigated to when clicking the server promo button. + "serverPromoButtonClickURL": "https://localhost/exampleurl", + // Whether the splash text should be hidden on the main menu. + "hideSplashText": true, + // Whether experimental/beta mod loader text should be removed from the main menu. + "removeExperimentalModLoaderText": true, + // Whether the text in the bottom left should be removed from the main menu. + "removeTextBottomLeft": true +} \ No newline at end of file diff --git a/.minecraft/config/simplemenu/icon/icon_32x32.png b/.minecraft/config/simplemenu/icon/icon_32x32.png new file mode 100644 index 0000000..9ae8ef4 Binary files /dev/null and b/.minecraft/config/simplemenu/icon/icon_32x32.png differ diff --git a/.minecraft/config/yosbr/config/betterf3.json b/.minecraft/config/yosbr/config/betterf3.json new file mode 100644 index 0000000..0ee81a0 --- /dev/null +++ b/.minecraft/config/yosbr/config/betterf3.json @@ -0,0 +1,155 @@ +{ + "modules_left": [ + { + "name": "minecraft", + "name_color": 10506797, + "value_color": 43520, + "enabled": true, + "lines": { + "minecraft": true + } + }, + { + "name": "fps", + "color_high": 5635925, + "color_med": 16777045, + "color_low": 16733525, + "enabled": true, + "lines": { + "fps": true + } + }, + { + "name": "empty", + "enabled": true, + "lines": { + "nothing": true + } + }, + { + "name": "coords", + "name_color": 16733525, + "color_x": 16733525, + "color_y": 5635925, + "color_z": 5636095, + "enabled": true, + "lines": { + "player_coords": true, + "block_coords": false, + "chunk_relative_coords": false, + "chunk_coords": false + } + }, + { + "name": "location", + "name_color": 43520, + "value_color": 5636095, + "enabled": true, + "lines": { + "dimension": true, + "facing": false, + "rotation": false, + "light": true, + "light_server": true, + "highest_block": false, + "highest_block_server": false, + "biome": true, + "local_difficulty": false, + "days_played": true + } + }, + { + "name": "empty", + "enabled": true, + "lines": { + "nothing": true + } + }, + { + "name": "graphics", + "name_color": 16755200, + "value_color": 5636095, + "enabled": true, + "lines": { + "render_distance": true, + "graphics": true, + "clouds": true, + "biome_blend_radius": true, + "shader": true + } + }, + { + "name": "server", + "name_color": 11184810, + "value_color": 16777045, + "enabled": true, + "lines": { + "server_tick": true, + "packets_sent": true, + "packets_received": true + } + } + ], + "modules_right": [ + { + "name": "system", + "name_color": 16755200, + "value_color": 5636095, + "enabled": true, + "lines": { + "java_version": true, + "memory_usage": true, + "allocated_memory": true, + "cpu": true, + "display": true, + "gpu": true, + "opengl_version": true, + "gpu_driver": true + } + }, + { + "name": "miscright", + "name_color": 16645526, + "value_color": 5636095, + "enabled": false, + "lines": { + "misc_right": true + } + }, + { + "name": "empty", + "enabled": true, + "lines": { + "nothing": true + } + }, + { + "name": "target", + "name_color": 43775, + "value_color": 16777045, + "enabled": true, + "lines": { + "targeted_block": true, + "id_block": true, + "block_states": true, + "block_tags": true, + "blank": true, + "targeted_fluid": true, + "id_fluid": true, + "fluid_states": true, + "fluid_tags": true, + "blank2": true, + "targeted_entity": true + } + } + ], + "general": { + "disable_mod": false, + "space_modules": false, + "shadow_text": true, + "animations": true, + "animationSpeed": 1.0, + "fontScale": 1.0, + "background_color": 1867534416 + } +} \ No newline at end of file diff --git a/.minecraft/config/yosbr/config/luckperms/luckperms.conf b/.minecraft/config/yosbr/config/luckperms/luckperms.conf new file mode 100644 index 0000000..85cebe8 --- /dev/null +++ b/.minecraft/config/yosbr/config/luckperms/luckperms.conf @@ -0,0 +1,652 @@ +#################################################################################################### +# +----------------------------------------------------------------------------------------------+ # +# | __ __ ___ __ __ | # +# | | | | / ` |__/ |__) |__ |__) |\/| /__` | # +# | |___ \__/ \__, | \ | |___ | \ | | .__/ | # +# | | # +# | https://luckperms.net | # +# | | # +# | WIKI: https://luckperms.net/wiki | # +# | DISCORD: https://discord.gg/luckperms | # +# | BUG REPORTS: https://github.com/LuckPerms/LuckPerms/issues | # +# | | # +# | Each option in this file is documented and explained here: | # +# | ==> https://luckperms.net/wiki/Configuration | # +# | | # +# | New options are not added to this file automatically. Default values are used if an | # +# | option cannot be found. The latest config versions can be obtained at the link above. | # +# +----------------------------------------------------------------------------------------------+ # +#################################################################################################### + +# +----------------------------------------------------------------------------------------------+ # +# | | # +# | ESSENTIAL SETTINGS | # +# | | # +# | Important settings that control how LuckPerms functions. | # +# | | # +# +----------------------------------------------------------------------------------------------+ # + +# The name of the server, used for server specific permissions. +# +# - When set to "global" this setting is effectively ignored. +# - In all other cases, the value here is added to all players in a "server" context. +# - See: https://luckperms.net/wiki/Context +server = "global" + +# If the servers own UUID cache/lookup facility should be used when there is no record for a player +# already in LuckPerms. +# +# - When this is set to 'false', commands using a player's username will not work unless the player +# has joined since LuckPerms was first installed. +# - To get around this, you can use a player's uuid directly in the command, or enable this option. +# - When this is set to 'true', the server facility is used. This may use a number of methods, +# including checking the servers local cache, or making a request to the Mojang API. +use-server-uuid-cache = false + + + + +# +----------------------------------------------------------------------------------------------+ # +# | | # +# | STORAGE SETTINGS | # +# | | # +# | Controls which storage method LuckPerms will use to store data. | # +# | | # +# +----------------------------------------------------------------------------------------------+ # + +# How the plugin should store data +# +# - The various options are explained in more detail on the wiki: +# https://luckperms.net/wiki/Storage-types +# +# - Possible options: +# +# | Remote databases - require connection information to be configured below +# |=> MySQL +# |=> MariaDB (preferred over MySQL) +# |=> PostgreSQL +# |=> MongoDB +# +# | Flatfile/local database - don't require any extra configuration +# |=> H2 (preferred over SQLite) +# |=> SQLite +# +# | Readable & editable text files - don't require any extra configuration +# |=> YAML (.yml files) +# |=> JSON (.json files) +# |=> HOCON (.conf files) +# |=> TOML (.toml files) +# | +# | By default, user, group and track data is separated into different files. Data can be combined +# | and all stored in the same file by switching to a combined storage variant. +# | Just add '-combined' to the end of the storage-method, e.g. 'yaml-combined' +# +# - A H2 database is the default option. +# - If you want to edit data manually in "traditional" storage files, we suggest using YAML. +storage-method = "yaml" + +# The following block defines the settings for remote database storage methods. +# +# - You don't need to touch any of the settings here if you're using a local storage method! +# - The connection detail options are shared between all remote storage types. +data { + + # Define the address and port for the database. + # - The standard DB engine port is used by default + # (MySQL = 3306, PostgreSQL = 5432, MongoDB = 27017) + # - Specify as "host:port" if differs + address = "localhost" + + # The name of the database to store LuckPerms data in. + # - This must be created already. Don't worry about this setting if you're using MongoDB. + database = "minecraft" + + # Credentials for the database. + username = "root" + password = "" + + # These settings apply to the MySQL connection pool. + # - The default values will be suitable for the majority of users. + # - Do not change these settings unless you know what you're doing! + pool-settings { + + # Sets the maximum size of the MySQL connection pool. + # - Basically this value will determine the maximum number of actual + # connections to the database backend. + # - More information about determining the size of connection pools can be found here: + # https://github.com/brettwooldridge/HikariCP/wiki/About-Pool-Sizing + maximum-pool-size = 10 + + # Sets the minimum number of idle connections that the pool will try to maintain. + # - For maximum performance and responsiveness to spike demands, it is recommended to not set + # this value and instead allow the pool to act as a fixed size connection pool. + # (set this value to the same as 'maximum-pool-size') + minimum-idle = 10 + + # This setting controls the maximum lifetime of a connection in the pool in milliseconds. + # - The value should be at least 30 seconds less than any database or infrastructure imposed + # connection time limit. + maximum-lifetime = 1800000 # 30 minutes + + # This setting controls how frequently the pool will 'ping' a connection in order to prevent it + # from being timed out by the database or network infrastructure, measured in milliseconds. + # - The value should be less than maximum-lifetime and greater than 30000 (30 seconds). + # - Setting the value to zero will disable the keepalive functionality. + keepalive-time = 0 + + # This setting controls the maximum number of milliseconds that the plugin will wait for a + # connection from the pool, before timing out. + connection-timeout = 5000 # 5 seconds + + # This setting allows you to define extra properties for connections. + # + # By default, the following options are set to enable utf8 encoding. (you may need to remove + # these if you are using PostgreSQL) + # useUnicode = true + # characterEncoding = "utf8" + # + # You can also use this section to disable SSL connections, by uncommenting the 'useSSL' and + # 'verifyServerCertificate' options below. + properties { + useUnicode = true + characterEncoding = "utf8" + #useSSL: false + #verifyServerCertificate: false + } + } + + # The prefix for all LuckPerms SQL tables. + # + # - This only applies for remote SQL storage types (MySQL, MariaDB, etc). + # - Change this if you want to use different tables for different servers. + table-prefix = "luckperms_" + + # The prefix to use for all LuckPerms MongoDB collections. + # + # - This only applies for the MongoDB storage type. + # - Change this if you want to use different collections for different servers. The default is no + # prefix. + mongodb-collection-prefix = "" + + # The connection string URI to use to connect to the MongoDB instance. + # + # - When configured, this setting will override anything defined in the address, database, + # username or password fields above. + # - If you have a connection string that starts with 'mongodb://' or 'mongodb+srv://', enter it + # below. + # - For more information, please see https://docs.mongodb.com/manual/reference/connection-string/ + mongodb-connection-uri = "" +} + +# Define settings for a "split" storage setup. +# +# - This allows you to define a storage method for each type of data. +# - The connection options above still have to be correct for each type here. +split-storage { + # Don't touch this if you don't want to use split storage! + enabled = false + methods { + # These options don't need to be modified if split storage isn't enabled. + user = "h2" + group = "h2" + track = "h2" + uuid = "h2" + log = "h2" + } +} + + + + +# +----------------------------------------------------------------------------------------------+ # +# | | # +# | UPDATE PROPAGATION & MESSAGING SERVICE | # +# | | # +# | Controls the ways in which LuckPerms will sync data & notify other servers of changes. | # +# | These options are documented on greater detail on the wiki under "Instant Updates". | # +# | | # +# +----------------------------------------------------------------------------------------------+ # + +# This option controls how frequently LuckPerms will perform a sync task. +# +# - A sync task will refresh all data from the storage, and ensure that the most up-to-date data is +# being used by the plugin. +# - This is disabled by default, as most users will not need it. However, if you're using a remote +# storage type without a messaging service setup, you may wish to set this to something like 3. +# - Set to -1 to disable the task completely. +sync-minutes = -1 + +# If the file watcher should be enabled. +# +# - When using a file-based storage type, LuckPerms can monitor the data files for changes, and +# automatically update when changes are detected. +# - If you don't want this feature to be active, set this option to false. +watch-files = true + +# Define which messaging service should be used by the plugin. +# +# - If enabled and configured, LuckPerms will use the messaging service to inform other connected +# servers of changes. +# - Use the command "/lp networksync" to manually push changes. +# - Data is NOT stored using this service. It is only used as a messaging platform. +# +# - If you decide to enable this feature, you should set "sync-minutes" to -1, as there is no need +# for LuckPerms to poll the database for changes. +# +# - Possible options: +# => sql Uses the SQL database to form a queue system for communication. Will only work when +# 'storage-method' is set to MySQL or MariaDB. This is chosen by default if the +# option is set to 'auto' and SQL storage is in use. Set to 'notsql' to disable this. +# => pluginmsg Uses the plugin messaging channels to communicate with the proxy. +# LuckPerms must be installed on your proxy & all connected servers backend servers. +# Won't work if you have more than one proxy. +# => redis Uses Redis pub-sub to push changes. Your server connection info must be configured +# below. +# => rabbitmq Uses RabbitMQ pub-sub to push changes. Your server connection info must be +# configured below. +# => nats Uses Nats pub-sub to push changes. Your server connection info must be +# configured below. +# => custom Uses a messaging service provided using the LuckPerms API. +# => auto Attempts to automatically setup a messaging service using redis or sql. +messaging-service = "auto" + +# If LuckPerms should automatically push updates after a change has been made with a command. +auto-push-updates = true + +# If LuckPerms should push logging entries to connected servers via the messaging service. +push-log-entries = true + +# If LuckPerms should broadcast received logging entries to players on this platform. +# +# - If you have LuckPerms installed on your backend servers as well as a BungeeCord proxy, you +# should set this option to false on either your backends or your proxies, to avoid players being +# messaged twice about log entries. +broadcast-received-log-entries = true + +# Settings for Redis. +# Port 6379 is used by default; set address to "host:port" if differs +# Multiple Redis nodes can be specified in the same format as a string list under the name "addresses". +redis { + enabled = false + address = "localhost" + username = "" + password = "" +} + +# Settings for nats. +# Port 4222 is used by default; set address to "host:port" if differs +nats { + enabled = false + address = "localhost" + username = "" + password = "" +} + +# Settings for RabbitMQ. +# Port 5672 is used by default; set address to "host:port" if differs +rabbitmq { + enabled = false + address = "localhost" + vhost = "/" + username = "guest" + password = "guest" +} + + + + +# +----------------------------------------------------------------------------------------------+ # +# | | # +# | CUSTOMIZATION SETTINGS | # +# | | # +# | Settings that allow admins to customize the way LuckPerms operates. | # +# | | # +# +----------------------------------------------------------------------------------------------+ # + +# Controls how temporary permissions/parents/meta should be accumulated. +# +# - The default behaviour is "deny". +# - This behaviour can also be specified when the command is executed. See the command usage +# documentation for more info. +# +# - Possible options: +# => accumulate durations will be added to the existing expiry time +# => replace durations will be replaced if the new duration is later than the current +# expiration +# => deny the command will just fail if you try to add another node with the same expiry +temporary-add-behaviour = "deny" + +# Controls how LuckPerms will determine a users "primary" group. +# +# - The meaning and influence of "primary groups" are explained in detail on the wiki. +# - The preferred approach is to let LuckPerms automatically determine a users primary group +# based on the relative weight of their parent groups. +# +# - Possible options: +# => stored use the value stored against the users record in the file/database +# => parents-by-weight just use the users most highly weighted parent +# => all-parents-by-weight same as above, but calculates based upon all parents inherited from +# both directly and indirectly +primary-group-calculation = "parents-by-weight" + +# If the plugin should check for "extra" permissions with users run LP commands. +# +# - These extra permissions allow finer control over what users can do with each command, and who +# they have access to edit. +# - The nature of the checks are documented on the wiki under "Argument based command permissions". +# - Argument based permissions are *not* static, unlike the 'base' permissions, and will depend upon +# the arguments given within the command. +argument-based-command-permissions = false + +# If the plugin should check whether senders are a member of a given group before they're able to +# edit the groups data or add/remove other users to/from it. +# Note: these limitations do not apply to the web editor! +require-sender-group-membership-to-modify = false + +# If the plugin should send log notifications to users whenever permissions are modified. +# +# - Notifications are only sent to those with the appropriate permission to receive them +# - They can also be temporarily enabled/disabled on a per-user basis using +# '/lp log notify ' +log-notify = true + +# Defines a list of log entries which should not be sent as notifications to users. +# +# - Each entry in the list is a RegEx expression which is matched against the log entry description. +log-notify-filtered-descriptions = [ +# "parent add example" +] + +# If LuckPerms should automatically install translation bundles and periodically update them. +auto-install-translations = true + +# Defines the options for prefix and suffix stacking. +# +# - The feature allows you to display multiple prefixes or suffixes alongside a players username in +# chat. +# - It is explained and documented in more detail on the wiki under "Prefix & Suffix Stacking". +# +# - The options are divided into separate sections for prefixes and suffixes. +# - The 'duplicates' setting refers to how duplicate elements are handled. Can be 'retain-all', +# 'first-only' or 'last-only'. +# - The value of 'start-spacer' is included at the start of the resultant prefix/suffix. +# - The value of 'end-spacer' is included at the end of the resultant prefix/suffix. +# - The value of 'middle-spacer' is included between each element in the resultant prefix/suffix. +# +# - Possible format options: +# => highest Selects the value with the highest weight, from all values +# held by or inherited by the player. +# +# => lowest Same as above, except takes the one with the lowest weight. +# +# => highest_own Selects the value with the highest weight, but will not +# accept any inherited values. +# +# => lowest_own Same as above, except takes the value with the lowest weight. +# +# => highest_inherited Selects the value with the highest weight, but will only +# accept inherited values. +# +# => lowest_inherited Same as above, except takes the value with the lowest weight. +# +# => highest_on_track_ Selects the value with the highest weight, but only if the +# value was inherited from a group on the given track. +# +# => lowest_on_track_ Same as above, except takes the value with the lowest weight. +# +# => highest_not_on_track_ Selects the value with the highest weight, but only if the +# value was inherited from a group not on the given track. +# +# => lowest_not_on_track_ Same as above, except takes the value with the lowest weight. +# +# => highest_from_group_ Selects the value with the highest weight, but only if the +# value was inherited from the given group. +# +# => lowest_from_group_ Same as above, except takes the value with the lowest weight. +# +# => highest_not_from_group_ Selects the value with the highest weight, but only if the +# value was not inherited from the given group. +# +# => lowest_not_from_group_ Same as above, except takes the value with the lowest weight. +meta-formatting { + prefix { + format = [ + "highest" + ] + duplicates = "first-only" + start-spacer = "" + middle-spacer = " " + end-spacer = "" + } + suffix { + format = [ + "highest" + ] + duplicates = "first-only" + start-spacer = "" + middle-spacer = " " + end-spacer = "" + } +} + + + + +# +----------------------------------------------------------------------------------------------+ # +# | | # +# | PERMISSION CALCULATION AND INHERITANCE | # +# | | # +# | Modify the way permission checks, meta lookups and inheritance resolutions are handled. | # +# | | # +# +----------------------------------------------------------------------------------------------+ # + +# The algorithm LuckPerms should use when traversing the "inheritance tree". +# +# - Possible options: +# => breadth-first See: https://en.wikipedia.org/wiki/Breadth-first_search +# => depth-first-pre-order See: https://en.wikipedia.org/wiki/Depth-first_search +# => depth-first-post-order See: https://en.wikipedia.org/wiki/Depth-first_search +inheritance-traversal-algorithm = "depth-first-pre-order" + +# If a final sort according to "inheritance rules" should be performed after the traversal algorithm +# has resolved the inheritance tree. +# +# "Inheritance rules" refers to things such as group weightings, primary group status, and the +# natural contextual ordering of the group nodes. +# +# Setting this to 'true' will allow for the inheritance rules to take priority over the structure of +# the inheritance tree. +# +# Effectively when this setting is 'true': the tree is flattened, and rules applied afterwards, +# and when this setting is 'false':, the rules are just applied during each step of the traversal. +post-traversal-inheritance-sort = false + +# Defines the mode used to determine whether a set of contexts are satisfied. +# +# - Possible options: +# => at-least-one-value-per-key Set A will be satisfied by another set B, if at least one of the +# key-value entries per key in A are also in B. +# => all-values-per-key Set A will be satisfied by another set B, if all key-value +# entries in A are also in B. +context-satisfy-mode = "at-least-one-value-per-key" + +# LuckPerms has a number of built-in contexts. These can be disabled by adding the context key to +# the list below. +disabled-contexts = [ +# "world" +] + +# +----------------------------------------------------------------------------------------------+ # +# | Permission resolution settings | # +# +----------------------------------------------------------------------------------------------+ # + +# If users on this server should have their global permissions applied. +# When set to false, only server specific permissions will apply for users on this server +include-global = true + +# If users on this server should have their global world permissions applied. +# When set to false, only world specific permissions will apply for users on this server +include-global-world = true + +# If users on this server should have global (non-server specific) groups applied +apply-global-groups = true + +# If users on this server should have global (non-world specific) groups applied +apply-global-world-groups = true + +# +----------------------------------------------------------------------------------------------+ # +# | Meta lookup settings | # +# +----------------------------------------------------------------------------------------------+ # + +# Defines how meta values should be selected. +# +# - Possible options: +# => inheritance Selects the meta value that was inherited first +# => highest-number Selects the highest numerical meta value +# => lowest-number Selects the lowest numerical meta value +meta-value-selection-default = "inheritance" + +# Defines how meta values should be selected per key. +meta-value-selection { + #max-homes = "highest-number" +} + +# +----------------------------------------------------------------------------------------------+ # +# | Inheritance settings | # +# +----------------------------------------------------------------------------------------------+ # + +# If the plugin should apply wildcard permissions. +# +# - If set to true, LuckPerms will detect wildcard permissions, and resolve & apply all registered +# permissions matching the wildcard. +apply-wildcards = true + +# If LuckPerms should resolve and apply permissions according to the Sponge style implicit wildcard +# inheritance system. +# +# - That being: If a user has been granted "example", then the player should have also be +# automatically granted "example.function", "example.another", "example.deeper.nesting", +# and so on. +apply-sponge-implicit-wildcards = true + +# If the plugin should parse regex permissions. +# +# - If set to true, LuckPerms will detect regex permissions, marked with "r=" at the start of the +# node, and resolve & apply all registered permissions matching the regex. +apply-regex = true + +# If the plugin should complete and apply shorthand permissions. +# +# - If set to true, LuckPerms will detect and expand shorthand node patterns. +apply-shorthand = true + +# If the owner of an integrated server should bypass permission checks. +# +# - This setting only applies when LuckPerms is active on a single-player world. +# - The owner of an integrated server is the player whose client instance is running the server. +integrated-server-owner-bypasses-checks = true + +# +----------------------------------------------------------------------------------------------+ # +# | Extra settings | # +# +----------------------------------------------------------------------------------------------+ # + +# A list of context calculators which will be skipped when calculating contexts. +# +# - You can disable context calculators by either: +# => specifying the Java class name used by the calculator (e.g. com.example.ExampleCalculator) +# => specifying a sub-section of the Java package used by the calculator (e.g. com.example) +disabled-context-calculators = [] + +# Allows you to set "aliases" for the worlds sent forward for context calculation. +# +# - These aliases are provided in addition to the real world name. Applied recursively. +# - Remove the comment characters for the default aliases to apply. +world-rewrite { + #world_nether = "world" + #world_the_end = "world" +} + +# Define special group weights for this server. +# +# - Group weights can also be applied directly to group data, using the setweight command. +# - This section allows weights to be set on a per-server basis. +group-weight { + #admin = 10 +} + + + +# +----------------------------------------------------------------------------------------------+ # +# | | # +# | FINE TUNING OPTIONS | # +# | | # +# | A number of more niche settings for tweaking and changing behaviour. The section also | # +# | contains toggles for some more specialised features. It is only necessary to make changes to | # +# | these options if you want to fine-tune LuckPerms behaviour. | # +# | | # +# +----------------------------------------------------------------------------------------------+ # + +# +----------------------------------------------------------------------------------------------+ # +# | Server Operator (OP) settings | # +# +----------------------------------------------------------------------------------------------+ # + +# Controls whether server operators should exist at all. +# +# - When set to 'false', all players will be de-opped, and the /op and /deop commands will be +# disabled. Note that vanilla features like the spawn-protection require an operator on the +# server to work. +enable-ops = false + +# Enables or disables a special permission based system in LuckPerms for controlling OP status. +# +# - If set to true, any user with the permission "luckperms.autoop" will automatically be granted +# server operator status. This permission can be inherited, or set on specific servers/worlds, +# temporarily, etc. +# - Additionally, setting this to true will force the "enable-ops" option above to false. All users +# will be de-opped unless they have the permission node, and the op/deop commands will be +# disabled. +# - It is recommended that you use this option instead of assigning a single '*' permission. +# - However, on Fabric this setting can be used as a "pseudo" root wildcard, as many mods support +# the operator system over permissions. +auto-op = false + +# +----------------------------------------------------------------------------------------------+ # +# | Miscellaneous (and rarely used) settings | # +# +----------------------------------------------------------------------------------------------+ # + +# If LuckPerms should produce extra logging output when it handles logins. +# +# - Useful if you're having issues with UUID forwarding or data not being loaded. +debug-logins = false + +# If LuckPerms should allow usernames with non alphanumeric characters. +# +# - Note that due to the design of the storage implementation, usernames must still be 16 characters +# or less. +allow-invalid-usernames = false + +# If LuckPerms should not require users to confirm bulkupdate operations. +# +# - When set to true, operations will be executed immediately. +# - This is not recommended, as bulkupdate has the potential to irreversibly delete large amounts of +# data, and is not designed to be executed automatically. +# - If automation is needed, users should prefer using the LuckPerms API. +skip-bulkupdate-confirmation = false + +# If LuckPerms should prevent bulkupdate operations. +# +# - When set to true, bulkupdate operations (the /lp bulkupdate command) will not work. +# - When set to false, bulkupdate operations will be allowed via the console. +disable-bulkupdate = false + +# If LuckPerms should allow a users primary group to be removed with the 'parent remove' command. +# +# - When this happens, the plugin will set their primary group back to default. +prevent-primary-group-removal = false + +# If LuckPerms should update the list of commands sent to the client when permissions are changed. +update-client-command-list = true + +# If LuckPerms should attempt to resolve Vanilla command target selectors for LP commands. +# See here for more info: https://minecraft.wiki/w/Target_selectors +resolve-command-selectors = false diff --git a/.minecraft/config/yosbr/config/modmenu.json b/.minecraft/config/yosbr/config/modmenu.json new file mode 100644 index 0000000..503b0bd --- /dev/null +++ b/.minecraft/config/yosbr/config/modmenu.json @@ -0,0 +1,31 @@ +{ + "sorting": "ascending", + "count_libraries": true, + "compact_list": false, + "count_children": true, + "mods_button_style": "classic", + "game_menu_button_style": "replace", + "count_hidden_mods": false, + "mod_count_location": "title_screen", + "hide_mod_links": false, + "show_libraries": false, + "hide_mod_license": false, + "hide_badges": false, + "hide_mod_credits": false, + "easter_eggs": true, + "random_java_colors": false, + "translate_names": true, + "translate_descriptions": true, + "update_checker": true, + "button_update_badge": true, + "update_channel": "release", + "quick_configure": true, + "modify_title_screen": true, + "modify_game_menu": true, + "hide_config_buttons": false, + "config_mode": false, + "disable_drag_and_drop": false, + "hidden_mods": [], + "hidden_configs": [], + "disable_update_checker": [] +} \ No newline at end of file diff --git a/.minecraft/config/yosbr/config/oneworldfolder/oneworldfolder.json b/.minecraft/config/yosbr/config/oneworldfolder/oneworldfolder.json new file mode 100644 index 0000000..b4d0f87 --- /dev/null +++ b/.minecraft/config/yosbr/config/oneworldfolder/oneworldfolder.json @@ -0,0 +1,6 @@ +{ + "external_saves_directory": "--auto-detect", + "priority": -1, + "swap_owf_and_singleplayer_button": false, + "replace_singleplayer_button": true +} \ No newline at end of file diff --git a/.minecraft/config/yosbr/mods/luckperms/yaml-storage/groups/admin.yml b/.minecraft/config/yosbr/mods/luckperms/yaml-storage/groups/admin.yml new file mode 100644 index 0000000..eae5f67 --- /dev/null +++ b/.minecraft/config/yosbr/mods/luckperms/yaml-storage/groups/admin.yml @@ -0,0 +1,5 @@ +name: admin +permissions: +- bluemap +- lambda +- minecraft diff --git a/.minecraft/config/yosbr/mods/luckperms/yaml-storage/groups/default.yml b/.minecraft/config/yosbr/mods/luckperms/yaml-storage/groups/default.yml new file mode 100644 index 0000000..970ba0c --- /dev/null +++ b/.minecraft/config/yosbr/mods/luckperms/yaml-storage/groups/default.yml @@ -0,0 +1 @@ +name: default diff --git a/.minecraft/config/yosbr/mods/luckperms/yaml-storage/groups/luckperms.yml b/.minecraft/config/yosbr/mods/luckperms/yaml-storage/groups/luckperms.yml new file mode 100644 index 0000000..c8a7819 --- /dev/null +++ b/.minecraft/config/yosbr/mods/luckperms/yaml-storage/groups/luckperms.yml @@ -0,0 +1,3 @@ +name: luckperms +permissions: +- luckperms diff --git a/.minecraft/config/yosbr/options.txt b/.minecraft/config/yosbr/options.txt new file mode 100644 index 0000000..d35749e --- /dev/null +++ b/.minecraft/config/yosbr/options.txt @@ -0,0 +1,33 @@ +maxFps:60 +enableVsync:true +difficulty:2 +graphicsMode:0 +ao:2 +prioritizeChunkUpdates:0 +biomeBlendRadius:2 +renderClouds:false +guiScale:2 +darkMojangStudiosBackground:true + +narrator:0 +tutorialStep:none +skipMultiplayerWarning:true +hideMatchedNames:true +joinedFirstServer:true +syncChunkWrites:true +showAutosaveIndicator:true +allowServerListing:true +realmsNotifications:false + +soundCategory_master:1.0 +soundCategory_music:0.50 +soundCategory_record:1.0 +soundCategory_weather:0.25 +soundCategory_block:1.0 +soundCategory_hostile:1.0 +soundCategory_neutral:1.0 +soundCategory_player:1.0 +soundCategory_ambient:1.0 +soundCategory_voice:1.0 + +narratorHotkey:false \ No newline at end of file diff --git a/.minecraft/config/yosbr/server.properties b/.minecraft/config/yosbr/server.properties new file mode 100644 index 0000000..c09d7dd --- /dev/null +++ b/.minecraft/config/yosbr/server.properties @@ -0,0 +1,2 @@ +enforce-secure-profile=false +motd=&5Vanillia Minecraft diff --git a/.minecraft/icon.png b/.minecraft/icon.png new file mode 100644 index 0000000..d81d8c4 Binary files /dev/null and b/.minecraft/icon.png differ diff --git a/.minecraft/index.toml b/.minecraft/index.toml new file mode 100644 index 0000000..1993e72 --- /dev/null +++ b/.minecraft/index.toml @@ -0,0 +1,253 @@ +hash-format = "sha256" + +[[files]] +file = "config/simplemenu.json5" +hash = "3f41fbf9725193271ebba21a0e16e99a15bb0331f8449925c8484f7becc22587" + +[[files]] +file = "config/simplemenu/icon/icon_32x32.png" +hash = "6cfd7ed95f1d805d383de2a0743dd0dedb22f15939302e969b304d7e967760e7" + +[[files]] +file = "config/yosbr/config/betterf3.json" +hash = "8254cc98fc6b737bac12f0e368d8918169fb1c2cf6116961cff1bc7d465ee316" + +[[files]] +file = "config/yosbr/config/luckperms/luckperms.conf" +hash = "1e324a30c0efe883cc65f2bb3bae1b02c01d7156533c43ff820c232a2a067e15" + +[[files]] +file = "config/yosbr/config/modmenu.json" +hash = "a12c603f45c5cbf54ea57ffe8903973a6585aa41ec8fa863278bc529aea48ba6" + +[[files]] +file = "config/yosbr/config/oneworldfolder/oneworldfolder.json" +hash = "00b2b137a2062ed20ab5b8953279ea415ba4fd9e7eac075e787ed58373860887" + +[[files]] +file = "config/yosbr/mods/luckperms/yaml-storage/groups/admin.yml" +hash = "0d6411218e498c63fbdc485ec66f8639a4e126d4206cc3cca7db6b1a72a10c47" + +[[files]] +file = "config/yosbr/mods/luckperms/yaml-storage/groups/default.yml" +hash = "505ae288295c265cadf1fbaacddf554d7c3dc9978a0a93e2ea7acc1d035c63d0" + +[[files]] +file = "config/yosbr/mods/luckperms/yaml-storage/groups/luckperms.yml" +hash = "6468ca19a22adee8317d71e1630e6511c3802ed23a1b50c9097de2ce2fa30a6b" + +[[files]] +file = "config/yosbr/options.txt" +hash = "1744eb20307f7a5ff692630fa72de89c06b4cc3a42dd1038a149b1d28dc569c3" + +[[files]] +file = "config/yosbr/server.properties" +hash = "20a4331ae3175651ff24265d8851f45e4e8b3cc580bafc175e12a6c141c6cd2b" + +[[files]] +file = "icon.png" +hash = "50f74a7debb4a852e1384434500515f2478b8dcf0d71b75eba148ca34d89715c" + +[[files]] +file = "mods/bettercommandblockui.pw.toml" +hash = "6da189b0c8713f4c7b81af3fd8207aa4c473ccabeee1770de7da1538efca0b15" +metafile = true + +[[files]] +file = "mods/betterf3.pw.toml" +hash = "a1e024094c28068c99a6da1c5867cbd4e66a315718039659bfa533a138762d9e" +metafile = true + +[[files]] +file = "mods/bluemap.pw.toml" +hash = "f96656076717dcadf38073af32ce253b2cfd0f5ff1785c03450e146f06213ee3" +metafile = true + +[[files]] +file = "mods/cloth-config.pw.toml" +hash = "41a3dc271859b118417946d2fdb2408523563b2f4f49048073672a342fb1aebf" +metafile = true + +[[files]] +file = "mods/collective.pw.toml" +hash = "a0f2e11e55aa98b13ca469e8cee71d38a16a2ed0fba99b95fb0664adfc93e838" +metafile = true + +[[files]] +file = "mods/command-books.pw.toml" +hash = "717140c0c750d0628268b8dba5ac55bca8e600626a49f9c5b88a883719c4361d" +metafile = true + +[[files]] +file = "mods/controlify.pw.toml" +hash = "9267bd5b2e1315c3cdac40e118e006c0c436ddbbc07e25e124eccc442d2721ce" +metafile = true + +[[files]] +file = "mods/entityculling.pw.toml" +hash = "c3bf7d6d25260b023f8cd2906527bf2ddfe36eb7929894ac0ae6d61abe2328cd" +metafile = true + +[[files]] +file = "mods/fabric-api.pw.toml" +hash = "c7763ceed9929d3364030c01a4602628ebf46a028d55e7dd06f5aeb6280d36a3" +metafile = true + +[[files]] +file = "mods/fabric-language-kotlin.pw.toml" +hash = "3d0bf4d56ea941f856200934fdc2fb4952fe513d469f47bdb5fc586f99f16097" +metafile = true + +[[files]] +file = "mods/fabricord.pw.toml" +hash = "f68caf32a91d9dc90b090156f594ca3d1167ed8e5987b56b86a1430fbebcb0a2" +metafile = true + +[[files]] +file = "mods/held-item-info.pw.toml" +hash = "b085a13f441287ee000f3d17b49755741ed738a2a296fe349c79c01ed9d81350" +metafile = true + +[[files]] +file = "mods/immediatelyfast.pw.toml" +hash = "2e441b5e21e8db1cd9102216ce4b8d1a25d77a026182e00f6324aadda402f715" +metafile = true + +[[files]] +file = "mods/iris.pw.toml" +hash = "956298b1bbab6d8bfb5074b169d8d24d04d688182edf8af885bbefc6cc1d9c27" +metafile = true + +[[files]] +file = "mods/jade.pw.toml" +hash = "390c9242cd4bc9eac27379a72081e5e60b6af0ba39706bb4b43dd55399c664f8" +metafile = true + +[[files]] +file = "mods/krypton.pw.toml" +hash = "9063bac3fdf585a43d318e3f9773475a28ecb8fe80bc7689cc480851eef97420" +metafile = true + +[[files]] +file = "mods/lambda.pw.toml" +hash = "7285c595ee4127c2999ac86b67168aadd4ff7fe894ba847d1fbc4d27e0d703a0" +metafile = true + +[[files]] +file = "mods/lambdynamiclights.pw.toml" +hash = "62dcbd50ca504de26da23305b6e1578298b6cfd14fb98118fcd471cf128d4337" +metafile = true + +[[files]] +file = "mods/luckperms.pw.toml" +hash = "ed322399f2f703b5cc9f6652d85e8eb215a53c7acbeef27964c0d6af7400561a" +metafile = true + +[[files]] +file = "mods/mod-loading-screen.pw.toml" +hash = "bee03a9e23c530a510995de10798d634fe63a52edc9e6e1e46a3b8cc75608750" +metafile = true + +[[files]] +file = "mods/modmenu.pw.toml" +hash = "d7145fd1bd8b4bb6a3b84652a96a68870fb3ab32230f27520bb9362fd17ec39f" +metafile = true + +[[files]] +file = "mods/no-chat-reports.pw.toml" +hash = "9ce6efc7149cdae2deb751b4ebf2d220700cc1b204e7a1d026275203387f106b" +metafile = true + +[[files]] +file = "mods/no-kebab.pw.toml" +hash = "38862cdc5bed116ab7faf8e26bfabf3e098f4578374d91de0a710635ad795107" +metafile = true + +[[files]] +file = "mods/one-world-folder.pw.toml" +hash = "5364e86ec495b0aaeb918c1681e43c756569b6402dde602e3d670cd9b56bab46" +metafile = true + +[[files]] +file = "mods/placeholder-api.pw.toml" +hash = "9848548c0071da322137749b1cf228061248ea1dacaf856b0a966d1932980065" +metafile = true + +[[files]] +file = "mods/polydex.pw.toml" +hash = "5746366d8f3d8cfafd480a94b3bbc11ef14c67e237f5d62cab941e2f8a857f0b" +metafile = true + +[[files]] +file = "mods/raised.pw.toml" +hash = "0a9528a9eefb844f3ba9f7663f4b2efdceb8e6f2730039d91613c6368f3190f3" +metafile = true + +[[files]] +file = "mods/reeses-sodium-options.pw.toml" +hash = "4a7d1e46795d2d83b18db85d8dbc63740a1d337e12d2b9e550378de59f2b23ab" +metafile = true + +[[files]] +file = "mods/resourcify.pw.toml" +hash = "9e8acfb4a78d7ab91a16321aa432d01c27a62fd60f7ae51a816c63f135bc983f" +metafile = true + +[[files]] +file = "mods/scoreboard-overhaul.pw.toml" +hash = "7acca672f677d71f15d7600d1228504846176eceb4a2e78edd9acc53bbae719a" +metafile = true + +[[files]] +file = "mods/scribble.pw.toml" +hash = "8b95f219b44b0474020f1c5af80ef46e52804ee5a421d599abad5a4cf2ed29c4" +metafile = true + +[[files]] +file = "mods/simple-menu.pw.toml" +hash = "5c7d82478607ca14645e77b2806a5a6263f93a922d7327f1b80c22186243ed85" +metafile = true + +[[files]] +file = "mods/sodium-extra.pw.toml" +hash = "6b7e9ed619297a29eb6db95f860734144876aa68922de63a05409b65ad8bd163" +metafile = true + +[[files]] +file = "mods/sodium.pw.toml" +hash = "350cd01b8b55cea244c2b0ea7bb3c9a6ba873cea4701528c62101c63af6b027a" +metafile = true + +[[files]] +file = "mods/spark.pw.toml" +hash = "f010bbe486733738e92241d10f403e28a8feeb40b45ec3af3b2270523f955216" +metafile = true + +[[files]] +file = "mods/vanilla-permissions.pw.toml" +hash = "c503ae1b7776f27fb923cf558c70ab90c432b7990838c02a4563d145af6edc11" +metafile = true + +[[files]] +file = "mods/vanish.pw.toml" +hash = "f75ab965e4eb71aefb05a30a80433b94d582e6a68eb5e4d54a06dd43b0181244" +metafile = true + +[[files]] +file = "mods/view-distance-fix.pw.toml" +hash = "31c2a0e56c320f751bf53a44d3f1bcdb4e3ab268b8d26543bc7ec2c638e52487" +metafile = true + +[[files]] +file = "mods/yacl.pw.toml" +hash = "88121fbabab3563f8dbb84a32347c753d23eec466c1df3225570cdb42e251029" +metafile = true + +[[files]] +file = "mods/yosbr.pw.toml" +hash = "1bb9b2e75c6934b1f18648e9b37e20abcf6a4a2547c7cdb0abe88407267e0c10" +metafile = true + +[[files]] +file = "packwiz-installer-bootstrap.jar" +hash = "a8fbb24dc604278e97f4688e82d3d91a318b98efc08d5dbfcbcbcab6443d116c" diff --git a/.minecraft/mods/bettercommandblockui.pw.toml b/.minecraft/mods/bettercommandblockui.pw.toml new file mode 100644 index 0000000..954e24d --- /dev/null +++ b/.minecraft/mods/bettercommandblockui.pw.toml @@ -0,0 +1,13 @@ +name = "Better Command Block UI" +filename = "bettercommandblockui-0.5.2-1.20.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/8iQcgjQ2/versions/i9cfZYZy/bettercommandblockui-0.5.2-1.20.jar" +hash-format = "sha512" +hash = "61a89ccd7be2228b3b4ff365f915dd8daa6558f1a63bf86ef906627ce55ff78ee3ef8f9e29def91c1ed16b4b851da7324980cb49f40b56cb4602d8ee62823954" + +[update] +[update.modrinth] +mod-id = "8iQcgjQ2" +version = "i9cfZYZy" diff --git a/.minecraft/mods/betterf3.pw.toml b/.minecraft/mods/betterf3.pw.toml new file mode 100644 index 0000000..fad5807 --- /dev/null +++ b/.minecraft/mods/betterf3.pw.toml @@ -0,0 +1,13 @@ +name = "BetterF3" +filename = "BetterF3-7.0.2-Fabric-1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/8shC1gFX/versions/7WkFnw9F/BetterF3-7.0.2-Fabric-1.20.1.jar" +hash-format = "sha512" +hash = "1b1f5bae45050bf01a23c57cfe94b7f42c6e0e9d669150effc04d3d09fd43c2dbea6c634117309ab1ee11253fcdb3c6061a9034e963b7f08476a76f1e98c3b8a" + +[update] +[update.modrinth] +mod-id = "8shC1gFX" +version = "7WkFnw9F" diff --git a/.minecraft/mods/bluemap.pw.toml b/.minecraft/mods/bluemap.pw.toml new file mode 100644 index 0000000..d2c235b --- /dev/null +++ b/.minecraft/mods/bluemap.pw.toml @@ -0,0 +1,13 @@ +name = "BlueMap" +filename = "BlueMap-5.3-fabric-1.20.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/swbUV1cr/versions/lHRktt6S/BlueMap-5.3-fabric-1.20.jar" +hash-format = "sha512" +hash = "d3a3173cd3f6d19f5a868562d25a902a3f8936246d8a21613fe57b14497c81b989f094fa899eb6f879ffd8d0768ed354e6d8e6e6c750b4254edef8e9a2b727bc" + +[update] +[update.modrinth] +mod-id = "swbUV1cr" +version = "lHRktt6S" diff --git a/.minecraft/mods/cloth-config.pw.toml b/.minecraft/mods/cloth-config.pw.toml new file mode 100644 index 0000000..0ebc287 --- /dev/null +++ b/.minecraft/mods/cloth-config.pw.toml @@ -0,0 +1,13 @@ +name = "Cloth Config API" +filename = "cloth-config-11.1.136-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/9s6osm5g/versions/2xQdCMyG/cloth-config-11.1.136-fabric.jar" +hash-format = "sha512" +hash = "2da85c071c854223cc30c8e46794391b77e53f28ecdbbde59dc83b3dbbdfc74be9e68da9ed464e7f98b4361033899ba4f681ebff1f35edc2c60e599a59796f1c" + +[update] +[update.modrinth] +mod-id = "9s6osm5g" +version = "2xQdCMyG" diff --git a/.minecraft/mods/collective.pw.toml b/.minecraft/mods/collective.pw.toml new file mode 100644 index 0000000..1c3d985 --- /dev/null +++ b/.minecraft/mods/collective.pw.toml @@ -0,0 +1,13 @@ +name = "Collective" +filename = "collective-1.20.1-7.87.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/e0M1UDsY/versions/aNzU64AT/collective-1.20.1-7.87.jar" +hash-format = "sha512" +hash = "65acb74e5acd56f1507ff83cee86fa2a78efea5ff2577828bd1c38323af4bcb594bfa4deb9d511060035c9503046a5da7fccc034228e6e799c2fb36fbf59e1a8" + +[update] +[update.modrinth] +mod-id = "e0M1UDsY" +version = "aNzU64AT" diff --git a/.minecraft/mods/command-books.pw.toml b/.minecraft/mods/command-books.pw.toml new file mode 100644 index 0000000..15e9bb7 --- /dev/null +++ b/.minecraft/mods/command-books.pw.toml @@ -0,0 +1,13 @@ +name = "Command Books" +filename = "command-books-1.1.0+1.19.4.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/mF5P2oA1/versions/8BAhPBFt/command-books-1.1.0%2B1.19.4.jar" +hash-format = "sha512" +hash = "206b345c2710865d71c2e45226e28166b71278a868a08a0dc1cd2213058ad931f50b22358c056d598f728fbf342df4230dd776dffca675b69b5e216ae664220d" + +[update] +[update.modrinth] +mod-id = "mF5P2oA1" +version = "8BAhPBFt" diff --git a/.minecraft/mods/controlify.pw.toml b/.minecraft/mods/controlify.pw.toml new file mode 100644 index 0000000..05046bd --- /dev/null +++ b/.minecraft/mods/controlify.pw.toml @@ -0,0 +1,13 @@ +name = "Controlify" +filename = "Controlify-2.0.0-beta.21+1.20.1-fabric.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/DOUdJVEm/versions/CKlawqCt/Controlify-2.0.0-beta.21%2B1.20.1-fabric.jar" +hash-format = "sha512" +hash = "5a5221e9bcf6c102bd57c348dc22b665c3fb9d63a430b04212926bde22bea8c78361303c014f63a5731a0cbb8fbb14eb926bd08f54892a41f4883476d86ec9b3" + +[update] +[update.modrinth] +mod-id = "DOUdJVEm" +version = "CKlawqCt" diff --git a/.minecraft/mods/entityculling.pw.toml b/.minecraft/mods/entityculling.pw.toml new file mode 100644 index 0000000..f4b126a --- /dev/null +++ b/.minecraft/mods/entityculling.pw.toml @@ -0,0 +1,13 @@ +name = "Entity Culling" +filename = "entityculling-fabric-1.7.2-mc1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/NNAgCjsB/versions/naHGCw23/entityculling-fabric-1.7.2-mc1.20.1.jar" +hash-format = "sha512" +hash = "27aa520f2e5ee881ce95f4925f7a0acea530555b1c5e312a05e961cbd3f874ffe88db26b2b072c6698c0ea469b4944f6451e388f69fbf6c5efb4866a18aa6ef3" + +[update] +[update.modrinth] +mod-id = "NNAgCjsB" +version = "naHGCw23" diff --git a/.minecraft/mods/fabric-api.pw.toml b/.minecraft/mods/fabric-api.pw.toml new file mode 100644 index 0000000..0092edc --- /dev/null +++ b/.minecraft/mods/fabric-api.pw.toml @@ -0,0 +1,13 @@ +name = "Fabric API" +filename = "fabric-api-0.92.3+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/P7dR8mSH/versions/SKPWumQf/fabric-api-0.92.3%2B1.20.1.jar" +hash-format = "sha512" +hash = "073c045791ddf14c28a1ec163e7ef40dcb014a73d72856f881aab04df018e1c62774978c95cda3a07bb324198bd586040e466eabc46bd2f09a16115c7d97e459" + +[update] +[update.modrinth] +mod-id = "P7dR8mSH" +version = "SKPWumQf" diff --git a/.minecraft/mods/fabric-language-kotlin.pw.toml b/.minecraft/mods/fabric-language-kotlin.pw.toml new file mode 100644 index 0000000..e0f3882 --- /dev/null +++ b/.minecraft/mods/fabric-language-kotlin.pw.toml @@ -0,0 +1,13 @@ +name = "Fabric Language Kotlin" +filename = "fabric-language-kotlin-1.13.0+kotlin.2.1.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/Ha28R6CL/versions/csX9r2wS/fabric-language-kotlin-1.13.0%2Bkotlin.2.1.0.jar" +hash-format = "sha512" +hash = "bd6acac5e2196aae0095ec453aec46d54e0d925289895fac94b1426cabd3db7e275302502475c61b9719fc8f026e7aaa305122dcdf374c58620bc38b8b4e99a7" + +[update] +[update.modrinth] +mod-id = "Ha28R6CL" +version = "csX9r2wS" diff --git a/.minecraft/mods/fabricord.pw.toml b/.minecraft/mods/fabricord.pw.toml new file mode 100644 index 0000000..a663f8c --- /dev/null +++ b/.minecraft/mods/fabricord.pw.toml @@ -0,0 +1,13 @@ +name = "Fabricord" +filename = "Fabricord-3.1.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/xU8Bn98V/versions/D2Q77UfL/Fabricord-3.1.jar" +hash-format = "sha512" +hash = "c9b97c3646b4cc93201ab0c78bb8f0f4b317d3ba2944290b3946890914e81c975592cf21712687c1967258fcbd1203a7ef057f17b841c8c405d2e661ec9aecaa" + +[update] +[update.modrinth] +mod-id = "xU8Bn98V" +version = "D2Q77UfL" diff --git a/.minecraft/mods/held-item-info.pw.toml b/.minecraft/mods/held-item-info.pw.toml new file mode 100644 index 0000000..fbef8ed --- /dev/null +++ b/.minecraft/mods/held-item-info.pw.toml @@ -0,0 +1,13 @@ +name = "Held Item Info" +filename = "held-item-info-1.5.0.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/tEcWzCZz/versions/Rir70mD8/held-item-info-1.5.0.jar" +hash-format = "sha512" +hash = "d4730d0efbbbd0ba2f080f5580da00fc7d54a3fbdc7f35fdba6ee695449a9f5409543941a90cf389224fc5e854e23cc328adc8579649edc2607e2f125461ce6f" + +[update] +[update.modrinth] +mod-id = "tEcWzCZz" +version = "Rir70mD8" diff --git a/.minecraft/mods/immediatelyfast.pw.toml b/.minecraft/mods/immediatelyfast.pw.toml new file mode 100644 index 0000000..8bdad2d --- /dev/null +++ b/.minecraft/mods/immediatelyfast.pw.toml @@ -0,0 +1,13 @@ +name = "ImmediatelyFast" +filename = "ImmediatelyFast-Fabric-1.3.3+1.20.4.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/5ZwdcRci/versions/H62RYZyG/ImmediatelyFast-Fabric-1.3.3%2B1.20.4.jar" +hash-format = "sha512" +hash = "c35e7b83067ecd095eebc76a650230ed8599d0028ca56c8bd6945c1df2a088b4dbd92ec80976428c6ba8d88b7e819b09b138a5e1056cda7dd15fd8d3925c1d42" + +[update] +[update.modrinth] +mod-id = "5ZwdcRci" +version = "H62RYZyG" diff --git a/.minecraft/mods/iris.pw.toml b/.minecraft/mods/iris.pw.toml new file mode 100644 index 0000000..043507e --- /dev/null +++ b/.minecraft/mods/iris.pw.toml @@ -0,0 +1,13 @@ +name = "Iris Shaders" +filename = "iris-1.7.5+mc1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/YL57xq9U/versions/Bi9nvICq/iris-1.7.5%2Bmc1.20.1.jar" +hash-format = "sha512" +hash = "6bc2ab52aae576062d1f4673ee7b92a7fdc64717a8aa13e76cea574623badfef692037bfc6ef6e979e716d52cf15cf24c90694baf69a584f44e1b121550292a3" + +[update] +[update.modrinth] +mod-id = "YL57xq9U" +version = "Bi9nvICq" diff --git a/.minecraft/mods/jade.pw.toml b/.minecraft/mods/jade.pw.toml new file mode 100644 index 0000000..18d998f --- /dev/null +++ b/.minecraft/mods/jade.pw.toml @@ -0,0 +1,13 @@ +name = "Jade 🔍" +filename = "Jade-1.20-Fabric-11.12.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/nvQzSEkH/versions/Lvyx1o7I/Jade-1.20-Fabric-11.12.0.jar" +hash-format = "sha512" +hash = "ce292fd0ea419b18bbd59ee631b322a7d3101080c55780a1ca8fde29bdf61ffef1eec5e781463e540254ff175cffa1af4d59e4ee31a5f63fb1e4a4539c124915" + +[update] +[update.modrinth] +mod-id = "nvQzSEkH" +version = "Lvyx1o7I" diff --git a/.minecraft/mods/krypton.pw.toml b/.minecraft/mods/krypton.pw.toml new file mode 100644 index 0000000..d321ad3 --- /dev/null +++ b/.minecraft/mods/krypton.pw.toml @@ -0,0 +1,13 @@ +name = "Krypton" +filename = "krypton-0.2.3.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/fQEb0iXm/versions/jiDwS0W1/krypton-0.2.3.jar" +hash-format = "sha512" +hash = "92b73a70737cfc1daebca211bd1525de7684b554be392714ee29cbd558f2a27a8bdda22accbe9176d6e531d74f9bf77798c28c3e8559c970f607422b6038bc9e" + +[update] +[update.modrinth] +mod-id = "fQEb0iXm" +version = "jiDwS0W1" diff --git a/.minecraft/mods/lambda.pw.toml b/.minecraft/mods/lambda.pw.toml new file mode 100644 index 0000000..f3e3943 --- /dev/null +++ b/.minecraft/mods/lambda.pw.toml @@ -0,0 +1,13 @@ +name = "Lambda" +filename = "lambda-1.0.0+1.20.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/ov5CWjKZ/versions/Ifa8lLC2/lambda-1.0.0%2B1.20.jar" +hash-format = "sha512" +hash = "18f966207f29f4499560e1795fbc4685f1126475b52496222ce1b78bdcc2aea3bb3db326725585e7b14f1fe1a07e70c328cfdcfb9a4a723a2fa92990322d7639" + +[update] +[update.modrinth] +mod-id = "ov5CWjKZ" +version = "Ifa8lLC2" diff --git a/.minecraft/mods/lambdynamiclights.pw.toml b/.minecraft/mods/lambdynamiclights.pw.toml new file mode 100644 index 0000000..0b5f0c4 --- /dev/null +++ b/.minecraft/mods/lambdynamiclights.pw.toml @@ -0,0 +1,13 @@ +name = "LambDynamicLights" +filename = "lambdynamiclights-2.3.2+1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/yBW8D80W/versions/mYl4RvKg/lambdynamiclights-2.3.2%2B1.20.1.jar" +hash-format = "sha512" +hash = "4870953196e22d02844b76fdcae29823922401a5b238d134374308a256a7ffcfb9f087369fc0ec23b5cb218b995d2efa6f60ac0b99fbf9b298ee7ffbb4f6937a" + +[update] +[update.modrinth] +mod-id = "yBW8D80W" +version = "mYl4RvKg" diff --git a/.minecraft/mods/luckperms.pw.toml b/.minecraft/mods/luckperms.pw.toml new file mode 100644 index 0000000..7f6939e --- /dev/null +++ b/.minecraft/mods/luckperms.pw.toml @@ -0,0 +1,13 @@ +name = "LuckPerms" +filename = "LuckPerms-Fabric-5.4.102.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/Vebnzrzj/versions/7PNj6nCm/LuckPerms-Fabric-5.4.102.jar" +hash-format = "sha512" +hash = "45058fd2bbd2e7723af01a093ef7233d8a6fa2278a2232dfcc2aa53dae6df7ed78dbfbdb9ee133b19bc36655ccff5a4facdd476319c18e290b284733bf10edff" + +[update] +[update.modrinth] +mod-id = "Vebnzrzj" +version = "7PNj6nCm" diff --git a/.minecraft/mods/mod-loading-screen.pw.toml b/.minecraft/mods/mod-loading-screen.pw.toml new file mode 100644 index 0000000..de86e01 --- /dev/null +++ b/.minecraft/mods/mod-loading-screen.pw.toml @@ -0,0 +1,13 @@ +name = "Mod Loading Screen" +filename = "mod-loading-screen-1.0.4.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/xAGJ6rQS/versions/BWSHJY2J/mod-loading-screen-1.0.4.jar" +hash-format = "sha512" +hash = "08761444a10ab63c956c8f57925867662de59e16a251cfc9b57e7d6cca8a9ef5ac3fdc1bea781392cd6c625d8fe983c1292a44817abb825fb391611bc231da60" + +[update] +[update.modrinth] +mod-id = "xAGJ6rQS" +version = "BWSHJY2J" diff --git a/.minecraft/mods/modmenu.pw.toml b/.minecraft/mods/modmenu.pw.toml new file mode 100644 index 0000000..dbe985d --- /dev/null +++ b/.minecraft/mods/modmenu.pw.toml @@ -0,0 +1,13 @@ +name = "Mod Menu" +filename = "modmenu-7.2.2.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/mOgUt4GM/versions/lEkperf6/modmenu-7.2.2.jar" +hash-format = "sha512" +hash = "9a7837e04bb34376611b207a3b20e5fe1c82a4822b42929d5b410809ec4b88ff3cac8821c4568f880775bafa3c079dfc7800f8471356a4046248b12607e855eb" + +[update] +[update.modrinth] +mod-id = "mOgUt4GM" +version = "lEkperf6" diff --git a/.minecraft/mods/no-chat-reports.pw.toml b/.minecraft/mods/no-chat-reports.pw.toml new file mode 100644 index 0000000..7865ba7 --- /dev/null +++ b/.minecraft/mods/no-chat-reports.pw.toml @@ -0,0 +1,13 @@ +name = "No Chat Reports" +filename = "NoChatReports-FABRIC-1.20.1-v2.2.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/qQyHxfxd/versions/HeZZR2kF/NoChatReports-FABRIC-1.20.1-v2.2.2.jar" +hash-format = "sha512" +hash = "3213e37fc12205e49f69a6c295c8c3237d8464d63dedbfbac4901892752741d22ebf7e1b40d6683143e70ca158fc95b00c2af177a1263038edce9a46b6cbeb79" + +[update] +[update.modrinth] +mod-id = "qQyHxfxd" +version = "HeZZR2kF" diff --git a/.minecraft/mods/no-kebab.pw.toml b/.minecraft/mods/no-kebab.pw.toml new file mode 100644 index 0000000..cf156f5 --- /dev/null +++ b/.minecraft/mods/no-kebab.pw.toml @@ -0,0 +1,13 @@ +name = "No Kebab" +filename = "no-kebab-1.2.1+1.20.1.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/y82xHklI/versions/V5roepgj/no-kebab-1.2.1%2B1.20.1.jar" +hash-format = "sha512" +hash = "2726f9db5b147071bb6aa2b15baac3b195ea7c15789efe8043daa5ff145d6f2528a0b00a0ddc90a6eeb0f5094843ed9f7d5f2b36020f381cda55956c5150db5f" + +[update] +[update.modrinth] +mod-id = "y82xHklI" +version = "V5roepgj" diff --git a/.minecraft/mods/one-world-folder.pw.toml b/.minecraft/mods/one-world-folder.pw.toml new file mode 100644 index 0000000..ee3c8b7 --- /dev/null +++ b/.minecraft/mods/one-world-folder.pw.toml @@ -0,0 +1,13 @@ +name = "One World Folder" +filename = "oneworldfolder-1.0.2-1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/JL35Xbzz/versions/FWDTR0Ff/oneworldfolder-1.0.2-1.20.1.jar" +hash-format = "sha512" +hash = "5d09bf4d15be990efc5df40d7643759eec85c6c0ca685dc5453e570a27168f45ce1e856b3579ee2806528ad1b47a343628298872b92206fe309a9a92cc888301" + +[update] +[update.modrinth] +mod-id = "JL35Xbzz" +version = "FWDTR0Ff" diff --git a/.minecraft/mods/placeholder-api.pw.toml b/.minecraft/mods/placeholder-api.pw.toml new file mode 100644 index 0000000..95a5c9b --- /dev/null +++ b/.minecraft/mods/placeholder-api.pw.toml @@ -0,0 +1,13 @@ +name = "Text Placeholder API" +filename = "placeholder-api-2.1.3+1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/eXts2L7r/versions/wrxtLoOX/placeholder-api-2.1.3%2B1.20.1.jar" +hash-format = "sha512" +hash = "8aefeb50ff5b835ceb055573a683d32b014015697063f169d6e665c1c5f1b3ed771cbc00930551365f8d4e192b0cd22106ea0af2010306c5710e10ecdb342280" + +[update] +[update.modrinth] +mod-id = "eXts2L7r" +version = "wrxtLoOX" diff --git a/.minecraft/mods/polydex.pw.toml b/.minecraft/mods/polydex.pw.toml new file mode 100644 index 0000000..af61c2b --- /dev/null +++ b/.minecraft/mods/polydex.pw.toml @@ -0,0 +1,13 @@ +name = "Polydex" +filename = "polydex-1.0.0-beta.2.2+1.20.1.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/m5NB7FJE/versions/hx2bY7Tl/polydex-1.0.0-beta.2.2%2B1.20.1.jar" +hash-format = "sha512" +hash = "04ee051a5bb3cb5b7af2067b4b181248344e9a0298f7d2186fbaf0e7d1df017e144baeda4335c3fa01f64181a29045777ea6db08378e82ab71c065e970418df7" + +[update] +[update.modrinth] +mod-id = "m5NB7FJE" +version = "hx2bY7Tl" diff --git a/.minecraft/mods/raised.pw.toml b/.minecraft/mods/raised.pw.toml new file mode 100644 index 0000000..032c4c5 --- /dev/null +++ b/.minecraft/mods/raised.pw.toml @@ -0,0 +1,13 @@ +name = "Raised" +filename = "raised-fabric-1.20.1-4.0.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/nCQRBEiR/versions/rJuvV8zU/raised-fabric-1.20.1-4.0.1.jar" +hash-format = "sha512" +hash = "401da1764b05e510291041b031bfd55c4f5158ba98c871bd7f0fb3487bd8d1bf3c42489a0e9e96a5073f7bf697c604f73a2665c86625544b22ba13e8ee32ac45" + +[update] +[update.modrinth] +mod-id = "nCQRBEiR" +version = "rJuvV8zU" diff --git a/.minecraft/mods/reeses-sodium-options.pw.toml b/.minecraft/mods/reeses-sodium-options.pw.toml new file mode 100644 index 0000000..39b46e6 --- /dev/null +++ b/.minecraft/mods/reeses-sodium-options.pw.toml @@ -0,0 +1,13 @@ +name = "Reese's Sodium Options" +filename = "reeses_sodium_options-1.7.2+mc1.20.1-build.101.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/Bh37bMuy/versions/Rc9pkPug/reeses_sodium_options-1.7.2%2Bmc1.20.1-build.101.jar" +hash-format = "sha512" +hash = "efb5eab3caea346f9d13ea7c73e856f286bba1c87508c7250deada7bf4e9ad179a12e9861f61145d5c9578d88f740abf19c564f14579aac5da1f46bf6f086977" + +[update] +[update.modrinth] +mod-id = "Bh37bMuy" +version = "Rc9pkPug" diff --git a/.minecraft/mods/resourcify.pw.toml b/.minecraft/mods/resourcify.pw.toml new file mode 100644 index 0000000..1e81f2e --- /dev/null +++ b/.minecraft/mods/resourcify.pw.toml @@ -0,0 +1,13 @@ +name = "Resourcify" +filename = "Resourcify (1.20-1.20.1-fabric)-1.6.0.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/RLzHAoZe/versions/Jqxy2ipu/Resourcify%20%281.20-1.20.1-fabric%29-1.6.0.jar" +hash-format = "sha512" +hash = "dcf46fbb5bffe95ce1ca72231123fd55deb51eb2c44edb7e6bafea903ac76f377ec3c52b1dadbd4a65437a91b6d18236c0d8f82f15cfca689d6dc498700ee6b1" + +[update] +[update.modrinth] +mod-id = "RLzHAoZe" +version = "Jqxy2ipu" diff --git a/.minecraft/mods/scoreboard-overhaul.pw.toml b/.minecraft/mods/scoreboard-overhaul.pw.toml new file mode 100644 index 0000000..a5a6653 --- /dev/null +++ b/.minecraft/mods/scoreboard-overhaul.pw.toml @@ -0,0 +1,13 @@ +name = "Scoreboard Overhaul" +filename = "scoreboardoverhaul-1.2.2-mc1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/2YIQkF2v/versions/s9IZ5pT5/scoreboardoverhaul-1.2.2-mc1.20.1.jar" +hash-format = "sha512" +hash = "3181629bf0886ae7c0c4afa33e1fde1b13d3a6ab55923c1134327a8122722e25b9e0b5b3dbf737a70ee36b9fc7141e28e8f13b5e83cc57f23fd2664f0ec9efe6" + +[update] +[update.modrinth] +mod-id = "2YIQkF2v" +version = "s9IZ5pT5" diff --git a/.minecraft/mods/scribble.pw.toml b/.minecraft/mods/scribble.pw.toml new file mode 100644 index 0000000..4392e54 --- /dev/null +++ b/.minecraft/mods/scribble.pw.toml @@ -0,0 +1,13 @@ +name = "Scribble" +filename = "Scribble-1.4.4+mc1.20.1-fabric.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/yXAvIk0x/versions/Jzdyv0Cx/Scribble-1.4.4%2Bmc1.20.1-fabric.jar" +hash-format = "sha512" +hash = "a2f01f8cc7d9ff3e68aea94d01309da949447b422f7b3dcd380df7cc15a036d8047f50c1d47f618790da3577939eadf5ea38b475fd5d752188104dab4d0ad08c" + +[update] +[update.modrinth] +mod-id = "yXAvIk0x" +version = "Jzdyv0Cx" diff --git a/.minecraft/mods/simple-menu.pw.toml b/.minecraft/mods/simple-menu.pw.toml new file mode 100644 index 0000000..d5ee74d --- /dev/null +++ b/.minecraft/mods/simple-menu.pw.toml @@ -0,0 +1,13 @@ +name = "Simple Menu" +filename = "simplemenu-1.20.1-1.5.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/6pdhya1q/versions/vy7kMoRN/simplemenu-1.20.1-1.5.jar" +hash-format = "sha512" +hash = "86ea79938de8580bcd90354d84acb231fdbcadd2753fd0d5b6d085b1d9aed85d7d2b58f612114f6423e20cbcb60c629d1faa34cb48d9296c6b60162bc231ce43" + +[update] +[update.modrinth] +mod-id = "6pdhya1q" +version = "vy7kMoRN" diff --git a/.minecraft/mods/sodium-extra.pw.toml b/.minecraft/mods/sodium-extra.pw.toml new file mode 100644 index 0000000..a993424 --- /dev/null +++ b/.minecraft/mods/sodium-extra.pw.toml @@ -0,0 +1,13 @@ +name = "Sodium Extra" +filename = "sodium-extra-0.5.4+mc1.20.1-build.115.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/PtjYWJkn/versions/I7ggF6B5/sodium-extra-0.5.4%2Bmc1.20.1-build.115.jar" +hash-format = "sha512" +hash = "ab561186421776d0db506dcbf1a724f80b345be5769ff00aa4327161c79af6e3f353eb65345ce06da30546ffa6b43e1c4a4c41dd246b7e473b131fd727997a85" + +[update] +[update.modrinth] +mod-id = "PtjYWJkn" +version = "I7ggF6B5" diff --git a/.minecraft/mods/sodium.pw.toml b/.minecraft/mods/sodium.pw.toml new file mode 100644 index 0000000..47b04e9 --- /dev/null +++ b/.minecraft/mods/sodium.pw.toml @@ -0,0 +1,13 @@ +name = "Sodium" +filename = "sodium-fabric-0.5.11+mc1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/AANobbMI/versions/ygf8cVZg/sodium-fabric-0.5.11%2Bmc1.20.1.jar" +hash-format = "sha512" +hash = "628129702e830fe88d79f0b87ef0591b708fb39045ce3d985703d6a3a78c30c9beb518df8e70151e55ca6c82d9274fea904c016f60085d889a4f7ac431cccd9e" + +[update] +[update.modrinth] +mod-id = "AANobbMI" +version = "ygf8cVZg" diff --git a/.minecraft/mods/spark.pw.toml b/.minecraft/mods/spark.pw.toml new file mode 100644 index 0000000..7f62a96 --- /dev/null +++ b/.minecraft/mods/spark.pw.toml @@ -0,0 +1,13 @@ +name = "spark" +filename = "spark-1.10.53-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/l6YH9Als/versions/XGW2fviP/spark-1.10.53-fabric.jar" +hash-format = "sha512" +hash = "ce6e8f7071bb37369ad3e90d844926b424e82d0fe0ffd0db7058abddc9cfcdd594e145c9395677ad70ec532f3da0b23b6862d1f1c20f7600263c215abb4fcea7" + +[update] +[update.modrinth] +mod-id = "l6YH9Als" +version = "XGW2fviP" diff --git a/.minecraft/mods/vanilla-permissions.pw.toml b/.minecraft/mods/vanilla-permissions.pw.toml new file mode 100644 index 0000000..51923cd --- /dev/null +++ b/.minecraft/mods/vanilla-permissions.pw.toml @@ -0,0 +1,13 @@ +name = "Vanilla Permissions" +filename = "vanilla-permissions-0.2.2+1.20.1.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/fdZkP5Bb/versions/POy2ZtwI/vanilla-permissions-0.2.2%2B1.20.1.jar" +hash-format = "sha512" +hash = "453df20dbe542d30f237c96b6102b83deb6463e8db687efa07784f11e12b2c8f5f5e697c8f6a24efbba02ed664cc483a5247bcb6694e6448dd43bb1fa6f55802" + +[update] +[update.modrinth] +mod-id = "fdZkP5Bb" +version = "POy2ZtwI" diff --git a/.minecraft/mods/vanish.pw.toml b/.minecraft/mods/vanish.pw.toml new file mode 100644 index 0000000..c6e6450 --- /dev/null +++ b/.minecraft/mods/vanish.pw.toml @@ -0,0 +1,13 @@ +name = "Vanish" +filename = "vanish-1.5.5+1.20.1.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/UL4bJFDY/versions/2D19CPkZ/vanish-1.5.5%2B1.20.1.jar" +hash-format = "sha512" +hash = "594adb0dd14ca251d8f190edeb71e761bee190603fa89864b1aeb172f0de8c73b31866c5c257398ac68f587aa42255e8429a64385c6f056ad5ed922c33258806" + +[update] +[update.modrinth] +mod-id = "UL4bJFDY" +version = "2D19CPkZ" diff --git a/.minecraft/mods/view-distance-fix.pw.toml b/.minecraft/mods/view-distance-fix.pw.toml new file mode 100644 index 0000000..7181f7f --- /dev/null +++ b/.minecraft/mods/view-distance-fix.pw.toml @@ -0,0 +1,13 @@ +name = "View Distance Fix" +filename = "viewdistancefix-fabric-1.20.1-1.0.2.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/nxrXbh5K/versions/EkpvfTep/viewdistancefix-fabric-1.20.1-1.0.2.jar" +hash-format = "sha512" +hash = "fcc69465656bf507ae94973a727d546394a96f3d7a5921d1c23ba8ff31ef57df6e762798373c8876897be7ee75c15b8dc5a31fe0d1cdc6dddaaafdc6ccfdc315" + +[update] +[update.modrinth] +mod-id = "nxrXbh5K" +version = "EkpvfTep" diff --git a/.minecraft/mods/yacl.pw.toml b/.minecraft/mods/yacl.pw.toml new file mode 100644 index 0000000..0961a9b --- /dev/null +++ b/.minecraft/mods/yacl.pw.toml @@ -0,0 +1,13 @@ +name = "YetAnotherConfigLib (YACL)" +filename = "YetAnotherConfigLib-3.6.2+1.20.1-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/1eAoo2KR/versions/yDSgD8Iz/YetAnotherConfigLib-3.6.2%2B1.20.1-fabric.jar" +hash-format = "sha512" +hash = "f155e42f9af56e552b422fe8906331366de0c957f2bf3910820bc6531980ce9004fe61e61f2b7860fe56ceb63da4cac84a807f8017e309cc3fe01c2f1ef8d031" + +[update] +[update.modrinth] +mod-id = "1eAoo2KR" +version = "yDSgD8Iz" diff --git a/.minecraft/mods/yosbr.pw.toml b/.minecraft/mods/yosbr.pw.toml new file mode 100644 index 0000000..7c450b3 --- /dev/null +++ b/.minecraft/mods/yosbr.pw.toml @@ -0,0 +1,13 @@ +name = "Your Options Shall Be Respected (YOSBR)" +filename = "yosbr-0.1.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/WwbubTsV/versions/KMOzdYko/yosbr-0.1.2.jar" +hash-format = "sha512" +hash = "254f2225f6446523aa8c8274e83b31e27f3b2afc8fe4f490fb1b169dd518e10c7993acda5db0ab597474ddf9d69506b5e794242fada1e2f89ed7bf9d412a8f78" + +[update] +[update.modrinth] +mod-id = "WwbubTsV" +version = "KMOzdYko" diff --git a/.minecraft/pack.toml b/.minecraft/pack.toml new file mode 100644 index 0000000..ce2a6b9 --- /dev/null +++ b/.minecraft/pack.toml @@ -0,0 +1,13 @@ +name = "Dough Template" +author = "Merith.TK" +version = "1.0.1" +pack-format = "packwiz:1.1.0" + +[index] +file = "index.toml" +hash-format = "sha256" +hash = "0bfadc0cde32bc3454d44f62c440f48658c7eabfb2967be620dd084f5c377158" + +[versions] +fabric = "0.16.9" +minecraft = "1.20.1" diff --git a/.minecraft/packwiz-installer-bootstrap.jar b/.minecraft/packwiz-installer-bootstrap.jar new file mode 100644 index 0000000..84b934c Binary files /dev/null and b/.minecraft/packwiz-installer-bootstrap.jar differ diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..3c577b0 --- /dev/null +++ b/LICENSE @@ -0,0 +1,24 @@ +This is free and unencumbered software released into the public domain. + +Anyone is free to copy, modify, publish, use, compile, sell, or +distribute this software, either in source code form or as a compiled +binary, for any purpose, commercial or non-commercial, and by any +means. + +In jurisdictions that recognize copyright laws, the author or authors +of this software dedicate any and all copyright interest in the +software to the public domain. We make this dedication for the benefit +of the public at large and to the detriment of our heirs and +successors. We intend this dedication to be an overt act of +relinquishment in perpetuity of all present and future rights to this +software under copyright law. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR +OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. + +For more information, please refer to \ No newline at end of file diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..98d44e8 --- /dev/null +++ b/Makefile @@ -0,0 +1,110 @@ +default: + @echo "No Default make command configured" + @echo "Please use either" + @echo " - make multimc" + @echo " - make local multimc" + @echo " - make curseforge" + @echo " - make modrinth" + @echo " - make local technic" + @echo " - make technic" + @echo " - make server" + @echo " - make all" + @echo "" + +PACKNAME := $(notdir $(shell pwd)) +ICONNAME := $(shell echo $(PACKNAME) | sed 's/[^a-zA-Z0-9]/_/g') + +build: refresh + @mkdir -p .build + @echo "PACKNAME: ${PACKNAME}" + @echo "ICONNAME: ${ICONNAME}" + @echo "PACKURL: $(shell pw detect)" + +curseforge: build + @echo "Making Curseforge pack" + packwiz curseforge export --pack-file .minecraft/pack.toml + mv ./*.zip ./.build/${PACKNAME}-curseforge.zip + +modrinth: build + @echo "Making Modrinth pack" + packwiz modrinth export --pack-file .minecraft/pack.toml + mv ./*.mrpack ./.build/${PACKNAME}-modrinth.mrpack + +multimc: build + @echo "Making MultiMC pack" + cp .minecraft/icon.png ./${ICONNAME}_icon.png + 7z d .build/${PACKNAME}-multimc.zip ./* -r + 7z d .build/${PACKNAME}-multimc.zip ./.minecraft -r + @sed -i 's#{PACKURL}#$(shell pw detect)#g' instance.cfg + @sed -i 's#{ICONNAME}#${ICONNAME}#g' instance.cfg + 7z a .build/${PACKNAME}-multimc.zip ./* -r + 7z a .build/${PACKNAME}-multimc.zip ./.minecraft -r + 7z d .build/${PACKNAME}-multimc.zip ./.build ./.minecraft/mods ./.minecraft/pack.toml ./.minecraft/index.toml -r + -rm ./${ICONNAME}_icon.png + @-sed -i 's#$(shell pw detect)#{PACKURL}#g' instance.cfg + @-sed -i 's#${ICONNAME}#{ICONNAME}#g' instance.cfg + +technic: build + @echo "Making Technic pack" + @mkdir -p .technic + -rm -rf .technic + cp -r .minecraft .technic + cp .minecraft/icon.png .technic/icon.png + cd .technic && java -jar ../.minecraft/packwiz-installer-bootstrap.jar ../.minecraft/pack.toml && cd .. + -rm -rf .technic/packwiz* .technic/index.toml .technic/pack.toml .technic/mods/*.toml + 7z d .build/${PACKNAME}-technic.zip ./* ./.* -r + 7z a .build/${PACKNAME}-technic.zip ./.technic/* -r + +server: build + @echo "Making Server pack" + -rm -rf .server + @mkdir -p .server + mc-server-icon --icon .minecraft/icon.png --output .server/server-icon.png + cd .server && java -jar ../.minecraft/packwiz-installer-bootstrap.jar -s server ../.minecraft/pack.toml && cd .. + 7z d .build/${PACKNAME}-server.zip ./* ./.* -r + 7z a .build/${PACKNAME}-server.zip ./.server/* -r + +preClean: + -rm -rf .build .server .technic + -rm -f ./instance.cfga* + +postClean: + -git gc --aggressive --prune + -rm -f ./*_icon.png + +clean: preClean postClean + +all: preClean curseforge modrinth multimc technic server postClean + +refresh: + pw refresh + pw modlist + +update-packwiz: + go install github.com/packwiz/packwiz@latest + go install github.com/Merith-TK/packwiz-wrapper/cmd/pw@main + go install github.com/Merith-TK/utils/cmd/mc-server-icon@main + -clear + @echo "Packwiz has been Updated" + +release-file: build + @echo "Generating changelog" + @pw modlist versions + @git log --pretty=format:"%h - %s (%ci)" --abbrev-commit > .build/CHANGELOG.md + @echo "" >> .build/CHANGELOG.md + @echo "
Mod List" >> .build/CHANGELOG.md + @echo "" >> .build/CHANGELOG.md + @cat modlist.md >> .build/CHANGELOG.md + @echo "
" >> .build/CHANGELOG.md + +run-server: + @cd .minecraft && pw refresh + @mkdir -p .run + @echo "eula=true" > .run/eula.txt + @mc-server-icon --icon .minecraft/icon.png --output .run/server-icon.png + @cd .run && java -jar ../.minecraft/packwiz-installer-bootstrap.jar ../.minecraft/pack.toml -s server + @if [ ! -f .run/server.jar ]; then \ + echo "Downloading Fabric server jar..."; \ + curl -o .run/server.jar https://meta.fabricmc.net/v2/versions/loader/1.20.1/0.16.9/1.0.1/server/jar; \ + fi + @cd .run && java -Xmx2G -Xms2G -jar server.jar nogui diff --git a/README.md b/README.md new file mode 100644 index 0000000..60cc3d9 --- /dev/null +++ b/README.md @@ -0,0 +1,42 @@ +## Update Pack Template +This is a template modpack makers can use to easily release their modpack onto multiple platforms. +currently this template only supports +- Curseforge + - Please note recent API changes to curseforge have broken support for most mods from curseforge in the other three formats + - Multi/PolyMC requires users to download mods manually + - Technc requires modpack makers to download mods manually + - Modrinth just doesnt support it at all +- [Multi/PolyMC](https://polymc.org) +- Technic +- Modrinth + + +### How to use this? +[![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-908a85?logo=gitpod)](https://gitpod.io/from-referrer/) +- Modpack Makers + - Well first your going to need to install `busybox`, `git`, `go` `7zip`, and `make` on your computer, + - On Windows I personally reccomend getting all of these through [Scoop](https://scoop.sh/) + - After installing scoop, just run + - `scoop install busybox git go make 7zip` + - On Linux, + - Ubuntu/Debian + - `sudo apt install git p7zip make` + - golang needs the latest release, which is unfortunately not in the repos, please manually install it, there are plenty of guides online for this + - Arch + - please use an AUR helper such as `yay` + - `yay -Syu git go p7zip make` + + - after you install go, run this command to install packwiz + - `go install github.com/packwiz/packwiz@latest` + + - I reccomend using VSCode to manage your modpack as you have a full visual editor and git manager built in. + - to add mods, run `packwiz install ` + - for sodium from curseforge, `packwiz cf install sodium` + - to make a release, run `make multimc` or `make technic` + + - Dont forget to make a git repo for your modpack, I reccomend using [GitLab](https://gitlab.com) due to its free Large File Support. + - or a place to host the packwiz-data folder! + +- Modpack Users + - MultiMC + - Use Java 17, MC 1.16.5 runs just fine on forge AND fabric on java 17 diff --git a/instance.cfg b/instance.cfg new file mode 100644 index 0000000..55b212b --- /dev/null +++ b/instance.cfg @@ -0,0 +1,6 @@ +[General] +InstanceType=OneSix +iconKey={ICONNAME}_icon +name=Modpack Template +OverrideCommands=true +PreLaunchCommand="$INST_JAVA" -jar packwiz-installer-bootstrap.jar {PACKURL} \ No newline at end of file diff --git a/mmc-pack.json b/mmc-pack.json new file mode 100644 index 0000000..fbf1448 --- /dev/null +++ b/mmc-pack.json @@ -0,0 +1,21 @@ +{ + "components": [ + { + "uid": "net.minecraft", + "version": "1.20.1" + }, + { + "cachedName": "LWJGL 3", + "cachedVersion": "3.3.1", + "cachedVolatile": true, + "dependencyOnly": true, + "uid": "org.lwjgl3", + "version": "3.3.1" + }, + { + "uid": "net.fabricmc.fabric-loader", + "version": "0.16.9" + } + ], + "formatVersion": 1 +} \ No newline at end of file diff --git a/modlist.md b/modlist.md new file mode 100644 index 0000000..d4aa372 --- /dev/null +++ b/modlist.md @@ -0,0 +1,52 @@ +# Modlist + +## Client Mods + +- [Better Command Block UI](https://modrinth.com/mod/8iQcgjQ2) +- [BetterF3](https://modrinth.com/mod/8shC1gFX) +- [Controlify](https://modrinth.com/mod/DOUdJVEm) +- [Entity Culling](https://modrinth.com/mod/NNAgCjsB) +- [Held Item Info](https://modrinth.com/mod/tEcWzCZz) +- [ImmediatelyFast](https://modrinth.com/mod/5ZwdcRci) +- [Iris Shaders](https://modrinth.com/mod/YL57xq9U) +- [Keybind Fix Plus](https://modrinth.com/mod/JKuinnWa) +- [LambDynamicLights](https://modrinth.com/mod/yBW8D80W) +- [Mod Loading Screen](https://modrinth.com/mod/xAGJ6rQS) +- [Mod Menu](https://modrinth.com/mod/mOgUt4GM) +- [One World Folder](https://modrinth.com/mod/JL35Xbzz) +- [Raised](https://modrinth.com/mod/nCQRBEiR) +- [Reese's Sodium Options](https://modrinth.com/mod/Bh37bMuy) +- [Resourcify](https://modrinth.com/mod/RLzHAoZe) +- [Scoreboard Overhaul](https://modrinth.com/mod/2YIQkF2v) +- [Scribble](https://modrinth.com/mod/yXAvIk0x) +- [Simple Menu](https://modrinth.com/mod/6pdhya1q) +- [Sodium Extra](https://modrinth.com/mod/PtjYWJkn) +- [Sodium](https://modrinth.com/mod/AANobbMI) + +## Shared Mods + +- [Cloth Config API](https://modrinth.com/mod/9s6osm5g) +- [Collective](https://modrinth.com/mod/e0M1UDsY) +- [Command Books](https://modrinth.com/mod/mF5P2oA1) +- [Fabric API](https://modrinth.com/mod/P7dR8mSH) +- [Fabric Language Kotlin](https://modrinth.com/mod/Ha28R6CL) +- [Jade 🔍](https://modrinth.com/mod/nvQzSEkH) +- [Krypton](https://modrinth.com/mod/fQEb0iXm) +- [No Chat Reports](https://modrinth.com/mod/qQyHxfxd) +- [Text Placeholder API](https://modrinth.com/mod/eXts2L7r) +- [spark](https://modrinth.com/mod/l6YH9Als) +- [YetAnotherConfigLib (YACL)](https://modrinth.com/mod/1eAoo2KR) +- [Your Options Shall Be Respected (YOSBR)](https://modrinth.com/mod/WwbubTsV) + +## Server Mods + +- [BlueMap](https://modrinth.com/mod/swbUV1cr) +- [Fabricord](https://modrinth.com/mod/xU8Bn98V) +- [Lambda](https://modrinth.com/mod/ov5CWjKZ) +- [LuckPerms](https://modrinth.com/mod/Vebnzrzj) +- [No Kebab](https://modrinth.com/mod/y82xHklI) +- [Polydex](https://modrinth.com/mod/m5NB7FJE) +- [Vanilla Permissions](https://modrinth.com/mod/fdZkP5Bb) +- [Vanish](https://modrinth.com/mod/UL4bJFDY) +- [View Distance Fix](https://modrinth.com/mod/nxrXbh5K) +