diff --git a/TrotCraft/client/config/yosbr/config/bobby.conf b/TrotCraft/client/config/yosbr/config/bobby.conf new file mode 100644 index 0000000..b07e96f --- /dev/null +++ b/TrotCraft/client/config/yosbr/config/bobby.conf @@ -0,0 +1,39 @@ +# Delete regions from the cache when they have not been loaded for X days. +# +# The cache for a given world is cleaned up whenever you disconnect from the server. +# Entire worlds are cleaned up when the game starts and you have not visited them for X days. +# +# Set to -1 to disabled. +# Set to 0 to clean up everything after every disconnect. +delete-unused-regions-after-days=-1 +# Enables support for servers with multiple identically-named worlds. +# +# When enabled, a new local cache is started on each world change. If there are enough chunks with similar content in two caches, they will automatically be merged. +# This does mean that you may need to walk around a little before Bobby loads in cached chunks if there is little identifying information in your world (e.g. flat worlds). +# +# You may need to delete your existing cache if it is comprised of multiple worlds to prevent Bobby from merging into it. +# Requires a `/bobby upgrade` after enabling with existing cache. +dynamic-multi-world=true +enabled=true +# Changes the maximum value configurable for Render Distance. +# +# Requires Sodium. +max-render-distance=128 +# Do not load block entities (e.g. chests) in fake chunks. +# These need updating every tick which can add up. +# +# Enabled by default because the render distance for block entities is usually smaller than the server-view distance anyway. +no-block-entities=true +# Reduces the light levels in fake chunks so you can tell the difference from real ones. +taint-fake-chunks=false +# Delays the unloading of chunks which are outside your view distance. +# Saves you from having to reload all chunks when leaving the area for a short moment (e.g. cut scenes). +# Does not work across dimensions. +unload-delay-secs=60 +# Overwrites the view-distance of the integrated server. +# This allows Bobby to be useful in Singleplayer. +# +# Disabled when at 0. +# Bobby is active in singleplayer only if this is enabled. +# Requires re-log to en-/disable. +view-distance-overwrite=0 diff --git a/TrotCraft/client/config/yosbr/config/fabrishot.properties b/TrotCraft/client/config/yosbr/config/fabrishot.properties index 889a3fd..9c2b949 100644 --- a/TrotCraft/client/config/yosbr/config/fabrishot.properties +++ b/TrotCraft/client/config/yosbr/config/fabrishot.properties @@ -1,4 +1,4 @@ -custom_file_name=%time%_4K +custom_file_name=%time% hide_hud=false override_screenshot_key=true save_file=true @@ -6,4 +6,4 @@ disable_gui_scaling=false width=3840 height=2160 delay=3 -file_format=PNG +file_format=JPG diff --git a/TrotCraft/client/config/yosbr/config/minelp.json b/TrotCraft/client/config/yosbr/config/minelp.json new file mode 100644 index 0000000..1b46763 --- /dev/null +++ b/TrotCraft/client/config/yosbr/config/minelp.json @@ -0,0 +1,74 @@ +{ + "settings": { + // Adjust camera intersection checks to properly cull entities when they're not in view. + // Helps to prevent entities from vanishing when they're in long stacks + "frustrum": true, + // (Experimental) Use priority to decide between displaying the HDSkins' texture, or vanilla mojang server skin, + // (Experimental) eg. On pony level = HUMANS, + // (Experimental) Any time both skins resolve to the same race (eg. on pony-level HUMANS, or if both are ponies), + // (Experimental) the skin with the highest priority will be chosen., + "dualskinmode": false, + // Adjusts pony scales to match the show (approximate), + "showscale": true, + // Turn on to adjust the player's camera position to their model, + "fillycam": true, + // Enables the alternative horsey models from the April Fools 2023 update, + "horsiemode": false, + // Allows ponies of different sizes/ages, + "sizes": true, + // Not enough ponies? Turn this on to turn player heads and skulls into ponies too!, + "ponyskulls": true, + // Uses magic effects in first person, + // Turn this off if you encounter any compatibility issues with other mods, + "fpsmagic": true, + // Uses magic effects in third person, + "tpsmagic": true, + // Controls whether ponies have snouts, + "snuzzles": true + }, + "debug": { + // Overrides pony races + // Possible values: HUMAN (default), EARTH, PEGASUS, UNICORN, ALICORN, CHANGELING, ZEBRA, CHANGEDLING, GRYPHON, HIPPOGRIFF, KIRIN, BAYPONT, SEAPONY + "raceoverride": "HUMAN", + // Overrides pony sizes, + // Possible values: TALL, BULKY, LANKY, NORMAL, YEARLING, FOAL, UNSET (default), + "sizeoverride": "UNSET", + // Disables pony armour textures., + // If enabled, only the vanilla textures will be considered, + "useponifiedarmour": false + }, + "entities": { + "allays": true, + "pigzombies": true, + "endermen": true, + "striders": true, + "skeletons": true, + "inanimates": true, + "villagers": true, + "illagers": true, + "guardians": true, + "zombies": true + }, + "root": { + // How much pony do you want? + // PONIES - all players are turned into ponies + // HUMANS - all players are humans + // BOTH - players with compatible skins will be ponies whilst the rest are humans + "ponylevel": "BOTH", + // Whether to show the mine little pony settings button on the main menu, + // AUTO (default) - only show when HDSkins is not installed, + // ON - always show, + // OFF - never show, + "horsebutton": "AUTO", + // How large do you want your ponies to be?, + // Default is show scale (0.9), + "globalscalefactor": 0.9 + }, + "customisation": { + // Pegasi will use their wings to fly even when they're wearing an elytra + "flappyelytras": false, + // Disables certain easter eggs and secrets (party pooper), + // Turning this off may help with compatibility in some cases, + "nofun": false + } +} diff --git a/TrotCraft/client/config/yosbr/options.txt b/TrotCraft/client/config/yosbr/options.txt index 05800dd..223664a 100644 --- a/TrotCraft/client/config/yosbr/options.txt +++ b/TrotCraft/client/config/yosbr/options.txt @@ -20,3 +20,4 @@ key_iris.keybind.reload:key.keyboard.unknown key_iris.keybind.toggleShaders:key.keyboard.unknown key_iris.keybind.shaderPackSelection:key.keyboard.unknown key_key.fabricskyboxes.toggle:key.keyboard.unknown +key_key.fabrishot.screenshot:key.keyboard.unknown diff --git a/TrotCraft/client/config/yosbr/servers.dat b/TrotCraft/client/config/yosbr/servers.dat new file mode 100644 index 0000000..7087488 Binary files /dev/null and b/TrotCraft/client/config/yosbr/servers.dat differ diff --git a/TrotCraft/client/index.toml b/TrotCraft/client/index.toml index 45cf21e..b8bfbf8 100644 --- a/TrotCraft/client/index.toml +++ b/TrotCraft/client/index.toml @@ -16,6 +16,10 @@ hash = "d7c81fae39b82fbc4be62a0fef141c7da80e96b6f97a0d80b44c245cb9a8bff6" file = "config/yosbr/config/PaginatedAdvancements.json5" hash = "3a1c71d2011cac176e00697237148ee882393b19394374862f8025f129d4c5a2" +[[files]] +file = "config/yosbr/config/bobby.conf" +hash = "372881012951c7ad5f9821ed2f683f785280bfab174ef87aeef9730ed95834df" + [[files]] file = "config/yosbr/config/capes.json5" hash = "c88ac7aec7bc08f867f8a9f6c7bf9396871d03d12b0f4d7100e8ef1fddfac68e" @@ -46,7 +50,7 @@ hash = "cef51db1150ae1f30f504c8932c274ba174441d4fa177cda048b407da59d5865" [[files]] file = "config/yosbr/config/fabrishot.properties" -hash = "b1fef2dded638cf5bc54fc95abc3af3e0b7156bd5739d7b8e1f54429aeff3d30" +hash = "b7091f7cec535de8ee9b3cc869dbe6f3399d03c8a9748ca736fad6aa264698bb" [[files]] file = "config/yosbr/config/fastquit.toml" @@ -76,6 +80,10 @@ hash = "b792f2977c2889e388d0a0e83e316ed4f27050729d86c8623e8472accb8a2a46" file = "config/yosbr/config/midnightlib.json" hash = "57b848fb6d7c03b6124297de49b1e4cb169e74db042c74aecf79f035ae2f3980" +[[files]] +file = "config/yosbr/config/minelp.json" +hash = "0b2f495db27e96e93aaf02ca0f15342959377c4c8be1f01d3f66135a505b2f76" + [[files]] file = "config/yosbr/config/modernfix-mixins.properties" hash = "3c5317882a50941e2384b9739ec3aa688f297105691c9d8d577936ad29c1d575" @@ -102,7 +110,11 @@ hash = "37aaf52aa7545527c7ade71ac77ad2fcf6019995bf58b6ea1fe0f52949919d18" [[files]] file = "config/yosbr/options.txt" -hash = "25a9e011b462c92d8d76ec762356736091dbfed94678ca2b28d480cf85a78d83" +hash = "cf35de0f439f6c23ca231e9e30b9819ea6c626f59c9afa77ea6f70fa902897a7" + +[[files]] +file = "config/yosbr/servers.dat" +hash = "cc18570a07ec88ec11dd1eb366a3bdfc600ace64f9c0ce38a0f3d53be7e42782" [[files]] file = "mods/appleskin.pw.toml" diff --git a/TrotCraft/client/pack.toml b/TrotCraft/client/pack.toml index d98a9e3..76676d9 100644 --- a/TrotCraft/client/pack.toml +++ b/TrotCraft/client/pack.toml @@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "73c3f9b0b0f40a92e7cf02be16e5608fd04bf2be3475900af06626521f244f23" +hash = "4b14b5a3e4c956a9c19aa7bfa74895586c91bc53d99f53504605c1d83e210351" [versions] fabric = "0.15.9" diff --git a/TrotCraft/server/config/yosbr/options.txt b/TrotCraft/server/config/yosbr/options.txt deleted file mode 100644 index e69de29..0000000