commit f582e414321ce21e23be1022b291c9298d5e9f72 Author: merith-tk Date: Tue Nov 5 14:52:30 2024 -0800 BaseModpack 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..15574ef --- /dev/null +++ b/.minecraft/index.toml @@ -0,0 +1,258 @@ +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 = "be15f799639bbd3b6d696e9210a6c042170270b428dd37cfac5ed72de7afcf70" +metafile = true + +[[files]] +file = "mods/betterf3.pw.toml" +hash = "cbc0973dadd8e4a191ce8e819f212bcfb58708885b4a46a9de7afa29e71aadad" +metafile = true + +[[files]] +file = "mods/bluemap.pw.toml" +hash = "27fb4e6443fd9fdedccb1d02d20f51f1272b26f29533acc12c3bd839fcb61364" +metafile = true + +[[files]] +file = "mods/cloth-config.pw.toml" +hash = "df15648dd4d4e27dd0c45ab4e78277c45886b77a698b129f4ce2d2bc337f7044" +metafile = true + +[[files]] +file = "mods/collective.pw.toml" +hash = "49349d6789c8d49c469d98f0796b260df8f9534625fddd60c37a0bd197dce225" +metafile = true + +[[files]] +file = "mods/command-books.pw.toml" +hash = "cc909e495a7abb7cf2ffc1d6e91b92961feb8fadbf08fcbc3025d232bf1c0543" +metafile = true + +[[files]] +file = "mods/controlify.pw.toml" +hash = "3493429b23739b78a4cd28f886aaa3a50a93d0dc3f83a75907e2568f7eec0aa0" +metafile = true + +[[files]] +file = "mods/entityculling.pw.toml" +hash = "49f8089d53aa0e40f6b9551e7931d4f502faf07f0c72fb7e1d6d8bc471a09482" +metafile = true + +[[files]] +file = "mods/fabric-api.pw.toml" +hash = "099583c94720ec8089dd1a4fdbe9c475ed0764dcbba904e04dc2459089077783" +metafile = true + +[[files]] +file = "mods/fabric-language-kotlin.pw.toml" +hash = "3d0bf4d56ea941f856200934fdc2fb4952fe513d469f47bdb5fc586f99f16097" +metafile = true + +[[files]] +file = "mods/fabricord.pw.toml" +hash = "c207fc803af506db9bbd4a3cfa907adda60fa2f6b133dbb224a45c66b0588240" +metafile = true + +[[files]] +file = "mods/held-item-info.pw.toml" +hash = "25d8b382e17472cec7236a07182c693e4d01525af7cb668944582a85abfac8a1" +metafile = true + +[[files]] +file = "mods/immediatelyfast.pw.toml" +hash = "f54c8f372e98a3bb4808ae4643ef6c22acedf04d8fb17ef2f22b6d9e6a01310f" +metafile = true + +[[files]] +file = "mods/iris.pw.toml" +hash = "3f032ca0324e6d7cc2126a05e812487f14d7ebd911ff15f510386b94481630c9" +metafile = true + +[[files]] +file = "mods/jade.pw.toml" +hash = "c61ca02e5e44ef76f5ea092d2c45ee31d8151f3aeed6ab7339ec15249859b831" +metafile = true + +[[files]] +file = "mods/keybind-fix-plus.pw.toml" +hash = "ef8dd74a596bd5ed6defdbb88d3dc1c61df53de1bd2871870d385e62591896b8" +metafile = true + +[[files]] +file = "mods/krypton.pw.toml" +hash = "c4e45594c8d1ab3dacc3b49142f16fb253178dd31d97cc917bf4a4d54f21e081" +metafile = true + +[[files]] +file = "mods/lambda.pw.toml" +hash = "75b110f09be5d72e6ea6e022a633b99e6b3db5174251d460827cf84200cca9bb" +metafile = true + +[[files]] +file = "mods/lambdynamiclights.pw.toml" +hash = "9752dfb3a2284f00d64d338df2d740e5c55bfcd4eb1aa7819fd9915a007468ef" +metafile = true + +[[files]] +file = "mods/luckperms.pw.toml" +hash = "f17daaee07fa693078844771c26a29811f78f55e9bff3d554165202a3aa5a821" +metafile = true + +[[files]] +file = "mods/mod-loading-screen.pw.toml" +hash = "bee03a9e23c530a510995de10798d634fe63a52edc9e6e1e46a3b8cc75608750" +metafile = true + +[[files]] +file = "mods/modmenu.pw.toml" +hash = "73690bd10798a8d38fbd2001b083cbe09c57997c81945ec545f3c572b2441799" +metafile = true + +[[files]] +file = "mods/no-chat-reports.pw.toml" +hash = "95ff1073b74b23e62cae94569ffb63e6e2f244d99a6d1a38c4a26bdd183a64eb" +metafile = true + +[[files]] +file = "mods/no-kebab.pw.toml" +hash = "a60b56a5d9802162afa065231baeb46bb95e12106e922142ef785ff3c78489bb" +metafile = true + +[[files]] +file = "mods/one-world-folder.pw.toml" +hash = "9bf6909495892a39adf910ded0bacbf333cfdafae3e2db3a4e661241001fc444" +metafile = true + +[[files]] +file = "mods/placeholder-api.pw.toml" +hash = "170af2cc47538de9caf10b714d81402b0e13a6b15a3e1e14d35f483f9cb276bd" +metafile = true + +[[files]] +file = "mods/polydex.pw.toml" +hash = "8d15d56ece59b614d2d93246ae306671bf153cb088c9e771bba693d3b099fb9d" +metafile = true + +[[files]] +file = "mods/raised.pw.toml" +hash = "3728bae14a5c01c45a8f326b1d13bfbe7d0be15bfd18592cd30e63b6fb21a275" +metafile = true + +[[files]] +file = "mods/reeses-sodium-options.pw.toml" +hash = "8d9736922772c3affc0a6845bf4ece656e3d7c576dfc3ecab2283b4b9717a290" +metafile = true + +[[files]] +file = "mods/resourcify.pw.toml" +hash = "f97b1947f3524bbdd2a891931864004a79a0a08b746fea35cff42391e1c65686" +metafile = true + +[[files]] +file = "mods/scoreboard-overhaul.pw.toml" +hash = "1d93599397574f7c92d9fda61ce5fa1d1a178a3107464f026ea9c345a7b54de6" +metafile = true + +[[files]] +file = "mods/scribble.pw.toml" +hash = "6c1bcda17f601d6025daeebcbd0b64e8c79be707322bbef188fb4902ea417400" +metafile = true + +[[files]] +file = "mods/simple-menu.pw.toml" +hash = "d135330b9fdde6aedbfa05f9712dd8c8015fd989ba2697203526ee119dfac866" +metafile = true + +[[files]] +file = "mods/sodium-extra.pw.toml" +hash = "56a0e243140dc1dbdb89c5a7a1cbcbe6e8d6da5499242bd1eabf548bbb8e3481" +metafile = true + +[[files]] +file = "mods/sodium.pw.toml" +hash = "9e86081bcaf8e26343f5d3a70549abd5130788dca766cea9bb8bdd47f1d65ed6" +metafile = true + +[[files]] +file = "mods/spark.pw.toml" +hash = "16e02f523c718baefd9dd42b24bd1aeb7c1142ff0e46a512e958284158bd8461" +metafile = true + +[[files]] +file = "mods/vanilla-permissions.pw.toml" +hash = "3f77e1338349b8f019a11b67b8e4c84055d43fc0183ddd83c2fc5ac3cb3d6538" +metafile = true + +[[files]] +file = "mods/vanish.pw.toml" +hash = "0a24e15aae666832731b6b1a5d9cccd98a9a26728afebb9bb96f97fb13beee8b" +metafile = true + +[[files]] +file = "mods/view-distance-fix.pw.toml" +hash = "fc8b37dc3009071f717c7de54dcb789b6aa56162eddc4f831c8e96f7444cbfdd" +metafile = true + +[[files]] +file = "mods/yacl.pw.toml" +hash = "4b7c266cf6c560aec780394f515cbe880c72fb07286f60694823fde3b926f184" +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..91dbf72 --- /dev/null +++ b/.minecraft/mods/bettercommandblockui.pw.toml @@ -0,0 +1,13 @@ +name = "Better Command Block UI" +filename = "bettercommandblockui-0.5.2a-1.21.4.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/8iQcgjQ2/versions/HkltAat3/bettercommandblockui-0.5.2a-1.21.4.jar" +hash-format = "sha512" +hash = "6d1d7d397a17e82fd25ae19eb97bc91826104b6c3162534ed06b567802111671013e591d83f3832a7e78cbe6e634366ac648e8380ea8a77c47a2a60676731d22" + +[update] +[update.modrinth] +mod-id = "8iQcgjQ2" +version = "HkltAat3" diff --git a/.minecraft/mods/betterf3.pw.toml b/.minecraft/mods/betterf3.pw.toml new file mode 100644 index 0000000..8fb8057 --- /dev/null +++ b/.minecraft/mods/betterf3.pw.toml @@ -0,0 +1,13 @@ +name = "BetterF3" +filename = "BetterF3-13.0.0-Fabric-1.21.4.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/8shC1gFX/versions/729ec3Jf/BetterF3-13.0.0-Fabric-1.21.4.jar" +hash-format = "sha512" +hash = "aab1fc1419e534dfb98b1b33cd07df611f63d43e8975a8fc85b3f448c29bac75e35b8b9bf996689e7fce28e617e436078d244a63b6bd01cb3ae415139abb63c3" + +[update] +[update.modrinth] +mod-id = "8shC1gFX" +version = "729ec3Jf" diff --git a/.minecraft/mods/bluemap.pw.toml b/.minecraft/mods/bluemap.pw.toml new file mode 100644 index 0000000..d2cf2ec --- /dev/null +++ b/.minecraft/mods/bluemap.pw.toml @@ -0,0 +1,13 @@ +name = "BlueMap" +filename = "bluemap-5.5-fabric.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/swbUV1cr/versions/Mvle7bPy/bluemap-5.5-fabric.jar" +hash-format = "sha512" +hash = "cecad52391159d10e16e474b7f8af95b94fd93495f69d211cfb0f3b2110fd363e1bdc6fe894f0d869e23248d4768efa9520dc22f5a3f44a30788cdfc3704ee2e" + +[update] +[update.modrinth] +mod-id = "swbUV1cr" +version = "Mvle7bPy" diff --git a/.minecraft/mods/cloth-config.pw.toml b/.minecraft/mods/cloth-config.pw.toml new file mode 100644 index 0000000..42c93bb --- /dev/null +++ b/.minecraft/mods/cloth-config.pw.toml @@ -0,0 +1,13 @@ +name = "Cloth Config API" +filename = "cloth-config-17.0.144-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/9s6osm5g/versions/TJ6o2sr4/cloth-config-17.0.144-fabric.jar" +hash-format = "sha512" +hash = "ecc59da51149250284b0752475c7b328e0b0325888948391597afc638d6e67fa436297af12d2067376de0098ffa6ca86aa3b8d6011356c179222404c701c6345" + +[update] +[update.modrinth] +mod-id = "9s6osm5g" +version = "TJ6o2sr4" diff --git a/.minecraft/mods/collective.pw.toml b/.minecraft/mods/collective.pw.toml new file mode 100644 index 0000000..c450350 --- /dev/null +++ b/.minecraft/mods/collective.pw.toml @@ -0,0 +1,13 @@ +name = "Collective" +filename = "collective-1.21.4-7.89.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/e0M1UDsY/versions/F3ciVO4i/collective-1.21.4-7.89.jar" +hash-format = "sha512" +hash = "8659df746343e697388b878b52d8eb49027ca528a75f7549177539bf21af26c4f0053acf4552abb36c8d5e5010d6d07976ba64e2b256cda4145785a6acab795d" + +[update] +[update.modrinth] +mod-id = "e0M1UDsY" +version = "F3ciVO4i" diff --git a/.minecraft/mods/command-books.pw.toml b/.minecraft/mods/command-books.pw.toml new file mode 100644 index 0000000..c42927a --- /dev/null +++ b/.minecraft/mods/command-books.pw.toml @@ -0,0 +1,13 @@ +name = "Command Books" +filename = "command-books-1.1.3+1.21.3.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/mF5P2oA1/versions/tuohocqo/command-books-1.1.3%2B1.21.3.jar" +hash-format = "sha512" +hash = "8f00e63046a90119c50361c85e1a88ace66f32a04be5700fd2e854878bccb6665515991474c2fcc2f0c6dc39bbc537d901aec53849ddb976bbe11265b33ff06c" + +[update] +[update.modrinth] +mod-id = "mF5P2oA1" +version = "tuohocqo" diff --git a/.minecraft/mods/controlify.pw.toml b/.minecraft/mods/controlify.pw.toml new file mode 100644 index 0000000..18e9e4e --- /dev/null +++ b/.minecraft/mods/controlify.pw.toml @@ -0,0 +1,13 @@ +name = "Controlify" +filename = "Controlify-2.0.0-beta.21+1.21.4-fabric.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/DOUdJVEm/versions/Co3GkxJc/Controlify-2.0.0-beta.21%2B1.21.4-fabric.jar" +hash-format = "sha512" +hash = "bf692ac3e80a63201cf154e422fb2e0ebcd30bc7dd7a4145bea4af804b5cf800f59820570ff885d24f6a494b035d95ab194dcd9266833a72191ab9905cbc6603" + +[update] +[update.modrinth] +mod-id = "DOUdJVEm" +version = "Co3GkxJc" diff --git a/.minecraft/mods/entityculling.pw.toml b/.minecraft/mods/entityculling.pw.toml new file mode 100644 index 0000000..51b8531 --- /dev/null +++ b/.minecraft/mods/entityculling.pw.toml @@ -0,0 +1,13 @@ +name = "Entity Culling" +filename = "entityculling-fabric-1.7.2-mc1.21.4.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/NNAgCjsB/versions/NkBXk0Ye/entityculling-fabric-1.7.2-mc1.21.4.jar" +hash-format = "sha512" +hash = "ad5689106a00b1ff9a47953cc4a3b64e0735de3e2fc9a9d183f7ae8caa48aa7fb62eff5d1c9419f3fd19d953a5183683aa550de1e513135f89d9d6bd89e4dad4" + +[update] +[update.modrinth] +mod-id = "NNAgCjsB" +version = "NkBXk0Ye" diff --git a/.minecraft/mods/fabric-api.pw.toml b/.minecraft/mods/fabric-api.pw.toml new file mode 100644 index 0000000..af6618f --- /dev/null +++ b/.minecraft/mods/fabric-api.pw.toml @@ -0,0 +1,13 @@ +name = "Fabric API" +filename = "fabric-api-0.112.1+1.21.4.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/P7dR8mSH/versions/UU9QOoeP/fabric-api-0.112.1%2B1.21.4.jar" +hash-format = "sha512" +hash = "657ebfeb81d82cf691d54948eef250d35f8b043b00a512a5ead25c9dc744d66bed024ce4029e269a97476be0024f9f4faa4308bd7d1ba0d280cd5ad52d1ecc49" + +[update] +[update.modrinth] +mod-id = "P7dR8mSH" +version = "UU9QOoeP" 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..11bac2d --- /dev/null +++ b/.minecraft/mods/fabricord.pw.toml @@ -0,0 +1,13 @@ +name = "Fabricord" +filename = "Fabricord-4.1.0.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/xU8Bn98V/versions/vnS3FRZd/Fabricord-4.1.0.jar" +hash-format = "sha512" +hash = "848e0c8b5dc239c9ddc471733754f14c4e2e881a4c385d0d1276c70cbd1782bba5b2cc8784e02962f572b1d781cebe129e5c1e08064b123ca1f527f616b6d734" + +[update] +[update.modrinth] +mod-id = "xU8Bn98V" +version = "vnS3FRZd" diff --git a/.minecraft/mods/held-item-info.pw.toml b/.minecraft/mods/held-item-info.pw.toml new file mode 100644 index 0000000..ddd3d55 --- /dev/null +++ b/.minecraft/mods/held-item-info.pw.toml @@ -0,0 +1,13 @@ +name = "Held Item Info" +filename = "held-item-info-1.7.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/tEcWzCZz/versions/vuqr97iM/held-item-info-1.7.1.jar" +hash-format = "sha512" +hash = "a691531d9f20134bc1062706fa2e796de47b6ba7dfa5f635ff92e497d9148cb33347d1fc951228ab12591a3fe23b8adefc55ce58f5965518f70c70c829e6d55f" + +[update] +[update.modrinth] +mod-id = "tEcWzCZz" +version = "vuqr97iM" diff --git a/.minecraft/mods/immediatelyfast.pw.toml b/.minecraft/mods/immediatelyfast.pw.toml new file mode 100644 index 0000000..dbcdc08 --- /dev/null +++ b/.minecraft/mods/immediatelyfast.pw.toml @@ -0,0 +1,13 @@ +name = "ImmediatelyFast" +filename = "ImmediatelyFast-Fabric-1.3.3+1.21.4.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/5ZwdcRci/versions/gh2TGVZk/ImmediatelyFast-Fabric-1.3.3%2B1.21.4.jar" +hash-format = "sha512" +hash = "29e2ba985c476a190da2686ef567632390ab256efb3b99f0b10caf02d58907796c6cfa97f22ea71aef09a4c73a241ce23a750742dca2f460b2d44db85d7b5045" + +[update] +[update.modrinth] +mod-id = "5ZwdcRci" +version = "gh2TGVZk" diff --git a/.minecraft/mods/iris.pw.toml b/.minecraft/mods/iris.pw.toml new file mode 100644 index 0000000..b18a1e9 --- /dev/null +++ b/.minecraft/mods/iris.pw.toml @@ -0,0 +1,13 @@ +name = "Iris Shaders" +filename = "iris-fabric-1.8.4+mc1.21.4.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/YL57xq9U/versions/J55HRGSf/iris-fabric-1.8.4%2Bmc1.21.4.jar" +hash-format = "sha512" +hash = "6b0e76d013a8641023a69e910ad362cb26cc80f06e35e084ac16b1ce7dc1d4c69cf37692fb8e07e0c7cbf80f1eded23c776e2310be417aff99d404b1a9ca27e4" + +[update] +[update.modrinth] +mod-id = "YL57xq9U" +version = "J55HRGSf" diff --git a/.minecraft/mods/jade.pw.toml b/.minecraft/mods/jade.pw.toml new file mode 100644 index 0000000..d52b13e --- /dev/null +++ b/.minecraft/mods/jade.pw.toml @@ -0,0 +1,13 @@ +name = "Jade 🔍" +filename = "Jade-1.21.4-Fabric-17.1.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/nvQzSEkH/versions/uWLqeB9w/Jade-1.21.4-Fabric-17.1.0.jar" +hash-format = "sha512" +hash = "d3eb6f0e3f6af6e607581635f9d0e9bc3ed4f1d5eba9f301a85290593343aa341da20d2ab8ef3a7329c5074629d8728ddd9298a488f5dab64ab60ba110db507c" + +[update] +[update.modrinth] +mod-id = "nvQzSEkH" +version = "uWLqeB9w" diff --git a/.minecraft/mods/keybind-fix-plus.pw.toml b/.minecraft/mods/keybind-fix-plus.pw.toml new file mode 100644 index 0000000..5018337 --- /dev/null +++ b/.minecraft/mods/keybind-fix-plus.pw.toml @@ -0,0 +1,13 @@ +name = "Keybind Fix Plus" +filename = "keybindfixplus-2.0.0.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/JKuinnWa/versions/jFW6823S/keybindfixplus-2.0.0.jar" +hash-format = "sha512" +hash = "8b965d4af240396d1f0ba88926732faa4efc12b25f47e72bc09e93b1ffdbf18dec83e5e1962ac5145c22b2f56365edddf8df2636b36a2196819c6e227e56dac9" + +[update] +[update.modrinth] +mod-id = "JKuinnWa" +version = "jFW6823S" diff --git a/.minecraft/mods/krypton.pw.toml b/.minecraft/mods/krypton.pw.toml new file mode 100644 index 0000000..5564a02 --- /dev/null +++ b/.minecraft/mods/krypton.pw.toml @@ -0,0 +1,13 @@ +name = "Krypton" +filename = "krypton-0.2.8.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/fQEb0iXm/versions/Acz3ttTp/krypton-0.2.8.jar" +hash-format = "sha512" +hash = "5f8cf96c79bfd4d893f1d70da582e62026bed36af49a7fa7b1e00fb6efb28d9ad6a1eec147020496b4fe38693d33fe6bfcd1eebbd93475612ee44290c2483784" + +[update] +[update.modrinth] +mod-id = "fQEb0iXm" +version = "Acz3ttTp" diff --git a/.minecraft/mods/lambda.pw.toml b/.minecraft/mods/lambda.pw.toml new file mode 100644 index 0000000..7e99006 --- /dev/null +++ b/.minecraft/mods/lambda.pw.toml @@ -0,0 +1,13 @@ +name = "Lambda" +filename = "lambda-1.2.0+1.21.3.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/ov5CWjKZ/versions/97igOB7W/lambda-1.2.0%2B1.21.3.jar" +hash-format = "sha512" +hash = "80134daab2c672d799ebccb7ec3d81234c9b557a1e69997ec7ca9439561796ac57b8593de1071eca1283e46ccb2659dccddb28bd91ded14d4949f199416d616d" + +[update] +[update.modrinth] +mod-id = "ov5CWjKZ" +version = "97igOB7W" diff --git a/.minecraft/mods/lambdynamiclights.pw.toml b/.minecraft/mods/lambdynamiclights.pw.toml new file mode 100644 index 0000000..7d3a1e3 --- /dev/null +++ b/.minecraft/mods/lambdynamiclights.pw.toml @@ -0,0 +1,13 @@ +name = "LambDynamicLights" +filename = "lambdynamiclights-4.0.1+1.21.4.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/yBW8D80W/versions/YgZzYuBw/lambdynamiclights-4.0.1%2B1.21.4.jar" +hash-format = "sha512" +hash = "ed8be22ea4099749a305aa59f86f112acd45e02f1e8b34e012e55666b3d03e385dbecc74fbb11209cb41bed16743834dafbb46676771e7f7e8697fed83d590a8" + +[update] +[update.modrinth] +mod-id = "yBW8D80W" +version = "YgZzYuBw" diff --git a/.minecraft/mods/luckperms.pw.toml b/.minecraft/mods/luckperms.pw.toml new file mode 100644 index 0000000..9e9d895 --- /dev/null +++ b/.minecraft/mods/luckperms.pw.toml @@ -0,0 +1,13 @@ +name = "LuckPerms" +filename = "LuckPerms-Fabric-5.4.150.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/Vebnzrzj/versions/6h9SnsZu/LuckPerms-Fabric-5.4.150.jar" +hash-format = "sha512" +hash = "d616346f5ae1cce2137ce589323e89263a08b4bd26e547fa67d2b87a729740d70dfd2b6b06ffd6b72433f7e20c03bde3b4da69c7cd325f295d1f28f1861c8698" + +[update] +[update.modrinth] +mod-id = "Vebnzrzj" +version = "6h9SnsZu" 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..ee79db6 --- /dev/null +++ b/.minecraft/mods/modmenu.pw.toml @@ -0,0 +1,13 @@ +name = "Mod Menu" +filename = "modmenu-13.0.0-beta.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/mOgUt4GM/versions/2pJcGBVh/modmenu-13.0.0-beta.1.jar" +hash-format = "sha512" +hash = "e142b42a007d7853fe53ca74c8cc933566a75aa3068f6f6216f55d794cd4f3344c56e3a2de3db4cd59363799aa92583c6f45633cd9a4bb6cb24115f60617dd8c" + +[update] +[update.modrinth] +mod-id = "mOgUt4GM" +version = "2pJcGBVh" diff --git a/.minecraft/mods/no-chat-reports.pw.toml b/.minecraft/mods/no-chat-reports.pw.toml new file mode 100644 index 0000000..aef94b6 --- /dev/null +++ b/.minecraft/mods/no-chat-reports.pw.toml @@ -0,0 +1,13 @@ +name = "No Chat Reports" +filename = "NoChatReports-FABRIC-1.21.4-v2.11.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/qQyHxfxd/versions/9xt05630/NoChatReports-FABRIC-1.21.4-v2.11.0.jar" +hash-format = "sha512" +hash = "d343b05c8e50f1de15791ff622ad44eeca6cdcb21e960a267a17d71506c61ca79b1c824167779e44d778ca18dcbdebe594ff234fbe355b68d25cdb5b6afd6e4f" + +[update] +[update.modrinth] +mod-id = "qQyHxfxd" +version = "9xt05630" diff --git a/.minecraft/mods/no-kebab.pw.toml b/.minecraft/mods/no-kebab.pw.toml new file mode 100644 index 0000000..19992d7 --- /dev/null +++ b/.minecraft/mods/no-kebab.pw.toml @@ -0,0 +1,13 @@ +name = "No Kebab" +filename = "no-kebab-1.3.2+1.21.3.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/y82xHklI/versions/DOR3ZrFd/no-kebab-1.3.2%2B1.21.3.jar" +hash-format = "sha512" +hash = "daf9c008bd07913e517e30ee376123eb7121058dc3df07d2e15d648e0bb911e78a31f4b5d6111c701a36b2f3a2bc6d5f83b1c9584aa0e4fea1a82d4de04bf61b" + +[update] +[update.modrinth] +mod-id = "y82xHklI" +version = "DOR3ZrFd" diff --git a/.minecraft/mods/one-world-folder.pw.toml b/.minecraft/mods/one-world-folder.pw.toml new file mode 100644 index 0000000..c7f0804 --- /dev/null +++ b/.minecraft/mods/one-world-folder.pw.toml @@ -0,0 +1,13 @@ +name = "One World Folder" +filename = "oneworldfolder-1.0.12-1.21.4.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/JL35Xbzz/versions/haW84szx/oneworldfolder-1.0.12-1.21.4.jar" +hash-format = "sha512" +hash = "c564e9bb755d89ebe2be01a1c66b32e78403609ed83457b9625aeda115d816884f033971c6d2fb7872142f17c927445c83030f761fb85d76083255299ec8cf6b" + +[update] +[update.modrinth] +mod-id = "JL35Xbzz" +version = "haW84szx" diff --git a/.minecraft/mods/placeholder-api.pw.toml b/.minecraft/mods/placeholder-api.pw.toml new file mode 100644 index 0000000..6525fe9 --- /dev/null +++ b/.minecraft/mods/placeholder-api.pw.toml @@ -0,0 +1,13 @@ +name = "Text Placeholder API" +filename = "placeholder-api-2.5.1+1.21.3.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/eXts2L7r/versions/GtmqzyeE/placeholder-api-2.5.1%2B1.21.3.jar" +hash-format = "sha512" +hash = "c5ef09ad639b8f02592e7da265412f8bf66caabfc1c09a3b8dd1e4f85c0df16def125990e6c0ab25fc83ce25b4d2c525fea76a95c2a04f67b155e85ba182ef7a" + +[update] +[update.modrinth] +mod-id = "eXts2L7r" +version = "GtmqzyeE" diff --git a/.minecraft/mods/polydex.pw.toml b/.minecraft/mods/polydex.pw.toml new file mode 100644 index 0000000..b7ca29a --- /dev/null +++ b/.minecraft/mods/polydex.pw.toml @@ -0,0 +1,13 @@ +name = "Polydex" +filename = "polydex-1.4.0+1.21.4-rc3.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/m5NB7FJE/versions/MCsXy6oq/polydex-1.4.0%2B1.21.4-rc3.jar" +hash-format = "sha512" +hash = "131992e55f7e5b2276aa16149bb224f20383891edc8a573b9d419a4303677279eade2471b5d411301444f44f25a56b8ecb2d9437ca62fd9d61f2cf49bd2536e1" + +[update] +[update.modrinth] +mod-id = "m5NB7FJE" +version = "MCsXy6oq" diff --git a/.minecraft/mods/raised.pw.toml b/.minecraft/mods/raised.pw.toml new file mode 100644 index 0000000..418e1f6 --- /dev/null +++ b/.minecraft/mods/raised.pw.toml @@ -0,0 +1,13 @@ +name = "Raised" +filename = "raised-fabric-1.21.3-4.0.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/nCQRBEiR/versions/ydNmmdDT/raised-fabric-1.21.3-4.0.1.jar" +hash-format = "sha512" +hash = "ff7cd11b2133aacde95532ec01b9097618fa4c391a2abad785fdb408ae3882273231e4a77f26641d896145eb47a905b0eb2f0ec10ff51792b41070d6964e0c39" + +[update] +[update.modrinth] +mod-id = "nCQRBEiR" +version = "ydNmmdDT" diff --git a/.minecraft/mods/reeses-sodium-options.pw.toml b/.minecraft/mods/reeses-sodium-options.pw.toml new file mode 100644 index 0000000..438f02f --- /dev/null +++ b/.minecraft/mods/reeses-sodium-options.pw.toml @@ -0,0 +1,13 @@ +name = "Reese's Sodium Options" +filename = "reeses-sodium-options-fabric-1.8.1+mc1.21.4.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/Bh37bMuy/versions/PxI5NDgM/reeses-sodium-options-fabric-1.8.1%2Bmc1.21.4.jar" +hash-format = "sha512" +hash = "ef522ead901f2b2fd9b0a5835ec3546954b9ef14a13a0d9f9fe8af26d4c9e1c8c536cbf492c81cff2b57273cc0625ee991212bff0b58590eb5c89a858d0fcd20" + +[update] +[update.modrinth] +mod-id = "Bh37bMuy" +version = "PxI5NDgM" diff --git a/.minecraft/mods/resourcify.pw.toml b/.minecraft/mods/resourcify.pw.toml new file mode 100644 index 0000000..e7e66ee --- /dev/null +++ b/.minecraft/mods/resourcify.pw.toml @@ -0,0 +1,13 @@ +name = "Resourcify" +filename = "Resourcify (1.21.3-4-fabric)-1.6.0.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/RLzHAoZe/versions/Z3RGSAVE/Resourcify%20%281.21.3-4-fabric%29-1.6.0.jar" +hash-format = "sha512" +hash = "197b0d5a091dbf74aeb71dae54a62fbd36efee354f185dd2031328dcf6c81504e870455b4b943e391b11f3b87c1dfcd322865d2775b48f34fa09b0249857ece3" + +[update] +[update.modrinth] +mod-id = "RLzHAoZe" +version = "Z3RGSAVE" diff --git a/.minecraft/mods/scoreboard-overhaul.pw.toml b/.minecraft/mods/scoreboard-overhaul.pw.toml new file mode 100644 index 0000000..66ef1e0 --- /dev/null +++ b/.minecraft/mods/scoreboard-overhaul.pw.toml @@ -0,0 +1,13 @@ +name = "Scoreboard Overhaul" +filename = "scoreboardoverhaul-1.2.2-mc1.21.2.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/2YIQkF2v/versions/8bGHpJoK/scoreboardoverhaul-1.2.2-mc1.21.2.jar" +hash-format = "sha512" +hash = "07176cc7869afa0f6082e316097a00d0ae83e5dd171705ad2909f0354d53ebb266caae2949f7be6f332e5bc1a1b43d84b9ffa80ecceb5878e1871952d8a61b76" + +[update] +[update.modrinth] +mod-id = "2YIQkF2v" +version = "8bGHpJoK" diff --git a/.minecraft/mods/scribble.pw.toml b/.minecraft/mods/scribble.pw.toml new file mode 100644 index 0000000..0cfd964 --- /dev/null +++ b/.minecraft/mods/scribble.pw.toml @@ -0,0 +1,13 @@ +name = "Scribble" +filename = "Scribble-1.4.2+mc1.21.4-fabric.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/yXAvIk0x/versions/k0eKcEMN/Scribble-1.4.2%2Bmc1.21.4-fabric.jar" +hash-format = "sha512" +hash = "be73d9280a9e1db41b4164fdff81f38dc8079c7d0dedfea889ff8c427f23b23d5184f6d0e398fd917fef4e5c4e3f3f14f9eeb17e71a95e3952b7e7e5baca31b7" + +[update] +[update.modrinth] +mod-id = "yXAvIk0x" +version = "k0eKcEMN" diff --git a/.minecraft/mods/simple-menu.pw.toml b/.minecraft/mods/simple-menu.pw.toml new file mode 100644 index 0000000..b58c35d --- /dev/null +++ b/.minecraft/mods/simple-menu.pw.toml @@ -0,0 +1,13 @@ +name = "Simple Menu" +filename = "simplemenu-1.21.4-1.5.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/6pdhya1q/versions/ee3PBoJX/simplemenu-1.21.4-1.5.jar" +hash-format = "sha512" +hash = "fd403d6863f860ce6b08bf3dd9bdd894c9ee53c92981e43ccff309d8ae6be988506728f67416b5f425d8ef87d83d3daef2952a6a769c7e72bba53a4373eba353" + +[update] +[update.modrinth] +mod-id = "6pdhya1q" +version = "ee3PBoJX" diff --git a/.minecraft/mods/sodium-extra.pw.toml b/.minecraft/mods/sodium-extra.pw.toml new file mode 100644 index 0000000..ba53e32 --- /dev/null +++ b/.minecraft/mods/sodium-extra.pw.toml @@ -0,0 +1,13 @@ +name = "Sodium Extra" +filename = "sodium-extra-fabric-0.6.1+mc1.21.4.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/PtjYWJkn/versions/f4TfteNb/sodium-extra-fabric-0.6.1%2Bmc1.21.4.jar" +hash-format = "sha512" +hash = "84f33cff29ecdb535cc65d836839003c8739765e0a464e011486ceaf744693b5d40f36c4ea4b117f7f00139c1dbf1b3b0e51170f4055afa03567e4079358a0e9" + +[update] +[update.modrinth] +mod-id = "PtjYWJkn" +version = "f4TfteNb" diff --git a/.minecraft/mods/sodium.pw.toml b/.minecraft/mods/sodium.pw.toml new file mode 100644 index 0000000..8429352 --- /dev/null +++ b/.minecraft/mods/sodium.pw.toml @@ -0,0 +1,13 @@ +name = "Sodium" +filename = "sodium-fabric-0.6.5+mc1.21.4.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/AANobbMI/versions/aHtQZyzN/sodium-fabric-0.6.5%2Bmc1.21.4.jar" +hash-format = "sha512" +hash = "0ccf30749be636733023f5b36f98f9be2d140d997581b0fc0164e30e7207549c87c4d37281f8f1bd5a40d4bce8880027bde275d739699f7a255f4f143e71a854" + +[update] +[update.modrinth] +mod-id = "AANobbMI" +version = "aHtQZyzN" diff --git a/.minecraft/mods/spark.pw.toml b/.minecraft/mods/spark.pw.toml new file mode 100644 index 0000000..a23de50 --- /dev/null +++ b/.minecraft/mods/spark.pw.toml @@ -0,0 +1,13 @@ +name = "spark" +filename = "spark-1.10.121-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/l6YH9Als/versions/X2sypdTL/spark-1.10.121-fabric.jar" +hash-format = "sha512" +hash = "f164ca7dad6baf5e33b3a1b355319ddad264f2b27d2592fd80581d9dcaf35978149d005a159f1e0a116162a31dad4dc553cbaf3af70cc10285f63ca367fe4de5" + +[update] +[update.modrinth] +mod-id = "l6YH9Als" +version = "X2sypdTL" diff --git a/.minecraft/mods/vanilla-permissions.pw.toml b/.minecraft/mods/vanilla-permissions.pw.toml new file mode 100644 index 0000000..a89b72c --- /dev/null +++ b/.minecraft/mods/vanilla-permissions.pw.toml @@ -0,0 +1,13 @@ +name = "Vanilla Permissions" +filename = "vanilla-permissions-0.2.4+1.21.3.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/fdZkP5Bb/versions/7awQNHzw/vanilla-permissions-0.2.4%2B1.21.3.jar" +hash-format = "sha512" +hash = "6f182c3f976fb3a5e9a542094bc0fcf7a120aa55a32e5b0ed7c162034a24287ea1dbb5e5138c4af41c284900b4a05daca6b998c2d8c973e33188879832dcff55" + +[update] +[update.modrinth] +mod-id = "fdZkP5Bb" +version = "7awQNHzw" diff --git a/.minecraft/mods/vanish.pw.toml b/.minecraft/mods/vanish.pw.toml new file mode 100644 index 0000000..a060761 --- /dev/null +++ b/.minecraft/mods/vanish.pw.toml @@ -0,0 +1,13 @@ +name = "Vanish" +filename = "vanish-1.5.9+1.21.4.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/UL4bJFDY/versions/v24ijRym/vanish-1.5.9%2B1.21.4.jar" +hash-format = "sha512" +hash = "2b39f37a39d17b7eb062b5ec279678c60865bf50f9c2dd8247148e8b23b8c498b461ad73d4044f28d6fe7a2b3cde6934409a3a9fd031ab8e9a45ced87306de52" + +[update] +[update.modrinth] +mod-id = "UL4bJFDY" +version = "v24ijRym" diff --git a/.minecraft/mods/view-distance-fix.pw.toml b/.minecraft/mods/view-distance-fix.pw.toml new file mode 100644 index 0000000..ebc083a --- /dev/null +++ b/.minecraft/mods/view-distance-fix.pw.toml @@ -0,0 +1,13 @@ +name = "View Distance Fix" +filename = "viewdistancefix-fabric-1.21.4-1.0.2.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/nxrXbh5K/versions/JHg6ZYop/viewdistancefix-fabric-1.21.4-1.0.2.jar" +hash-format = "sha512" +hash = "803b4d83b4c09c231b66c3f5fd068b4f55491c743207455fda8eb175a70ab51b5c6f09185d589555829906b44da1843e8ac722ea39919c4cc2a15dc4d5493b13" + +[update] +[update.modrinth] +mod-id = "nxrXbh5K" +version = "JHg6ZYop" diff --git a/.minecraft/mods/yacl.pw.toml b/.minecraft/mods/yacl.pw.toml new file mode 100644 index 0000000..9e89fa0 --- /dev/null +++ b/.minecraft/mods/yacl.pw.toml @@ -0,0 +1,13 @@ +name = "YetAnotherConfigLib (YACL)" +filename = "YetAnotherConfigLib-3.6.2+1.21.4-fabric.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/1eAoo2KR/versions/VtWuZoXP/YetAnotherConfigLib-3.6.2%2B1.21.4-fabric.jar" +hash-format = "sha512" +hash = "50f3996aa4382692bbe569ee26506dacd0f4775d86964b5a5c47451e9514d5bf755b5fc1b75e629fc6391fe33d98598977e15c8880ed0f5785c5511ac3360933" + +[update] +[update.modrinth] +mod-id = "1eAoo2KR" +version = "VtWuZoXP" 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..9f483b8 --- /dev/null +++ b/.minecraft/pack.toml @@ -0,0 +1,16 @@ +name = "Dough Template" +author = "Merith.TK" +version = "1.0.1" +pack-format = "packwiz:1.1.0" + +[index] +file = "index.toml" +hash-format = "sha256" +hash = "d4513dccb21fb0675ec4de86e3f34b3a5b53f43ef322725c6f5ff391c0be45d2" + +[versions] +fabric = "0.16.9" +minecraft = "1.21.4" + +[options] +acceptable-game-versions = ["1.21.3", "1.21.4"] 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..a6a9d0d --- /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.21.4/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..4b3517e --- /dev/null +++ b/mmc-pack.json @@ -0,0 +1,21 @@ +{ + "components": [ + { + "uid": "net.minecraft", + "version": "1.21.4" + }, + { + "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) +