куча полезных модов
This commit is contained in:
parent
185d961a71
commit
8e33f08dc3
21 changed files with 170 additions and 13 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
|
@ -17,3 +17,7 @@ fancymenu_data/last_world.fmdata
|
||||||
profile.json
|
profile.json
|
||||||
screenshots/*
|
screenshots/*
|
||||||
emi.json
|
emi.json
|
||||||
|
servers.dat
|
||||||
|
servers.dat_old
|
||||||
|
.sl_password
|
||||||
|
cherishedworlds-favorites.dat
|
||||||
|
|
|
||||||
8
config/MouseTweaks.cfg
Normal file
8
config/MouseTweaks.cfg
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
RMBTweak=1
|
||||||
|
LMBTweakWithItem=1
|
||||||
|
LMBTweakWithoutItem=1
|
||||||
|
WheelTweak=1
|
||||||
|
WheelSearchOrder=1
|
||||||
|
WheelScrollDirection=0
|
||||||
|
ScrollItemScaling=0
|
||||||
|
Debug=0
|
||||||
20
config/NoChatReports/NCR-Client.json
Normal file
20
config/NoChatReports/NCR-Client.json
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"defaultSigningMode": "PROMPT",
|
||||||
|
"enableMod": true,
|
||||||
|
"showNCRButton": true,
|
||||||
|
"showReloadButton": true,
|
||||||
|
"verifiedIconEnabled": true,
|
||||||
|
"showServerSafety": true,
|
||||||
|
"hideInsecureMessageIndicators": true,
|
||||||
|
"hideModifiedMessageIndicators": true,
|
||||||
|
"hideSystemMessageIndicators": true,
|
||||||
|
"hideWarningToast": true,
|
||||||
|
"hideSigningRequestMessage": false,
|
||||||
|
"alwaysHideReportButton": false,
|
||||||
|
"skipRealmsWarning": false,
|
||||||
|
"disableTelemetry": true,
|
||||||
|
"removeTelemetryButton": true,
|
||||||
|
"demandOnServer": false,
|
||||||
|
"verifiedIconOffsetX": 0,
|
||||||
|
"verifiedIconOffsetY": 0
|
||||||
|
}
|
||||||
7
config/NoChatReports/NCR-Common.json
Normal file
7
config/NoChatReports/NCR-Common.json
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"demandOnClientMessage": "You do not have No Chat Reports, and this server is configured to require it on client!",
|
||||||
|
"demandOnClient": false,
|
||||||
|
"convertToGameMessage": true,
|
||||||
|
"addQueryData": true,
|
||||||
|
"enableDebugLog": false
|
||||||
|
}
|
||||||
28
config/NoChatReports/NCR-Encryption.json
Normal file
28
config/NoChatReports/NCR-Encryption.json
Normal file
|
|
@ -0,0 +1,28 @@
|
||||||
|
{
|
||||||
|
"skipWarning": false,
|
||||||
|
"enableEncryption": false,
|
||||||
|
"encryptPublic": true,
|
||||||
|
"showEncryptionButton": true,
|
||||||
|
"showEncryptionIndicators": true,
|
||||||
|
"encryptionKey": "blfrngArk3chG6wzncOZ5A\u003d\u003d",
|
||||||
|
"encryptionPassphrase": "",
|
||||||
|
"algorithmName": "AES/CFB8+Base64",
|
||||||
|
"encryptableCommands": [
|
||||||
|
"msg:1",
|
||||||
|
"w:1",
|
||||||
|
"whisper:1",
|
||||||
|
"tell:1",
|
||||||
|
"r:0",
|
||||||
|
"dm:1",
|
||||||
|
"me:0",
|
||||||
|
"m:1",
|
||||||
|
"t:1",
|
||||||
|
"pm:1",
|
||||||
|
"emsg:1",
|
||||||
|
"epm:1",
|
||||||
|
"etell:1",
|
||||||
|
"ewhisper:1",
|
||||||
|
"message:1",
|
||||||
|
"reply:0"
|
||||||
|
]
|
||||||
|
}
|
||||||
3
config/NoChatReports/NCR-ServerPreferences.json
Normal file
3
config/NoChatReports/NCR-ServerPreferences.json
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"signingModes": {}
|
||||||
|
}
|
||||||
3
config/NoChatReports/README.md
Normal file
3
config/NoChatReports/README.md
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
# No Chat Reports
|
||||||
|
You can find updated documentation of configuration files on the wiki:
|
||||||
|
https://github.com/Aizistral-Studios/No-Chat-Reports/wiki/Configuration-Files
|
||||||
19
config/balm-common.toml
Normal file
19
config/balm-common.toml
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
#This is an example boolean property
|
||||||
|
exampleBoolean = true
|
||||||
|
#Range: > -2147483648
|
||||||
|
exampleInt = 42
|
||||||
|
exampleString = "Hello World"
|
||||||
|
exampleMultilineString = "Hello World"
|
||||||
|
#Allowed Values: Hello, World
|
||||||
|
exampleEnum = "Hello"
|
||||||
|
exampleStringList = ["Hello", "World"]
|
||||||
|
exampleIntList = [12, 24]
|
||||||
|
exampleEnumList = ["Hello", "World"]
|
||||||
|
|
||||||
|
[exampleCategory]
|
||||||
|
#This is an example category
|
||||||
|
#This is an example string inside a category
|
||||||
|
innerField = "I am inside"
|
||||||
|
#Range: -3.4028234663852886E38 ~ 3.4028234663852886E38
|
||||||
|
exampleFloat = 42.84000015258789
|
||||||
|
|
||||||
49
config/clienttweaks-common.toml
Normal file
49
config/clienttweaks-common.toml
Normal file
|
|
@ -0,0 +1,49 @@
|
||||||
|
|
||||||
|
[tweaks]
|
||||||
|
#This option will let you climb ladders automatically by just looking upwards, rather than requiring a key to be held down.
|
||||||
|
autoClimbLadder = false
|
||||||
|
#This prevents the last torch in the offhand from being placed.
|
||||||
|
doNotUseLastTorch = false
|
||||||
|
#This option will hide your offhand item. It can be toggled via an optional key binding.
|
||||||
|
hideOffhandItem = false
|
||||||
|
#This option will hide your own potion particle effects for your client (other players will still see them).
|
||||||
|
hideOwnParticleEffects = false
|
||||||
|
#This option will hide your shield unless you are holding a weapon.
|
||||||
|
hideShieldUnlessHoldingWeapon = true
|
||||||
|
#This prevents torches from being placed from your offhand at all.
|
||||||
|
noOffhandTorchAtAll = false
|
||||||
|
#This prevents torches from being placed from your offhand if you have a block in your main hand.
|
||||||
|
noOffhandTorchWithBlock = true
|
||||||
|
#This prevents torches from being placed from your offhand if you have food in your main hand.
|
||||||
|
noOffhandTorchWithFood = true
|
||||||
|
#This prevents torches from being placed from your off hand if you have an empty main hand.
|
||||||
|
noOffhandTorchWithEmptyHand = false
|
||||||
|
#This restricts torches to be placed from the offhand only when you're holding a tool in your main hand.
|
||||||
|
offhandTorchWithToolOnly = false
|
||||||
|
#This prevents fireworks from being launched from your off hand if you are wearing an Elytra, unless you're flying.
|
||||||
|
noOffhandFireworksWithElytra = true
|
||||||
|
#This option will disable step assist added by other mods.
|
||||||
|
disableStepAssist = false
|
||||||
|
#This option will disable log stripping.
|
||||||
|
disableLogStripping = false
|
||||||
|
#This adds back the master volume slider to the options screen. Saves you a click!
|
||||||
|
masterVolumeSlider = true
|
||||||
|
#This adds back the music volume slider to the options screen. Saves you a click!
|
||||||
|
musicVolumeSlider = true
|
||||||
|
#This option will make iron fences and glass panes have a bigger hitbox while placing them, making it easier to aim.
|
||||||
|
paneBuildingSupport = true
|
||||||
|
#This option makes the recipe book not shift the inventory when opened. Works best with smaller GUI scales / bigger resolutions.
|
||||||
|
noRecipeBookShifting = false
|
||||||
|
|
||||||
|
[customization]
|
||||||
|
#Items that count as torches for the offhand-torch tweak options.
|
||||||
|
torchItems = ["minecraft:torch", "minecraft:soul_torch", "tconstruct:stone_torch"]
|
||||||
|
#Items that are allowed to place torches from the offhand if offhandTorchWithToolOnly is enabled.
|
||||||
|
torchTools = ["minecraft:wooden_pickaxe", "minecraft:stone_pickaxe", "minecraft:iron_pickaxe", "minecraft:golden_pickaxe", "minecraft:diamond_pickaxe", "minecraft:netherite_pickaxe", "tconstruct:pickaxe", "tconstruct:hammer"]
|
||||||
|
#Items that count as weapons for the offhand-shield hiding tweak options.
|
||||||
|
shieldWeapons = ["tetra:modular_sword"]
|
||||||
|
#Items that count as shields for the offhand-shield hiding tweak options.
|
||||||
|
shieldItems = ["basicshields:wooden_shield", "basicshields:golden_shield", "basicshields:diamond_shield", "basicshields:netherite_shield"]
|
||||||
|
#Items that count as fireworks for the offhand-firework tweak options.
|
||||||
|
fireworkItems = ["minecraft:firework_rocket"]
|
||||||
|
|
||||||
1
config/heracles/groups.txt
Normal file
1
config/heracles/groups.txt
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
Main
|
||||||
9
config/heracles/tutorial.html
Normal file
9
config/heracles/tutorial.html
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
<h2>Tutorial</h2>
|
||||||
|
<p>Quests are a way to guide you through the progression. They are a way to help you learn about things and the world around you.</p>
|
||||||
|
<p>Quests are split into groups. Each group has a set of quests that you can complete. You can complete quests in any order you want, but some quests may require you to complete other quests first.</p>
|
||||||
|
<hr/>
|
||||||
|
<hint color="gray" icon="heracles:quest_book" title="Note:">
|
||||||
|
<p>You can change this file in the tutorial.html file in the Heracles config folder.</p>
|
||||||
|
</hint>
|
||||||
|
<hr/>
|
||||||
|
<p>Happy Questing!</p>
|
||||||
|
|
@ -102,6 +102,17 @@
|
||||||
"electric_container_provider": true,
|
"electric_container_provider": true,
|
||||||
"controllable_provider": true
|
"controllable_provider": true
|
||||||
},
|
},
|
||||||
|
"create": {
|
||||||
|
"filter": true,
|
||||||
|
"backtank_capacity": true,
|
||||||
|
"goggles.requires_goggles": true,
|
||||||
|
"goggles": false,
|
||||||
|
"blaze_burner": true,
|
||||||
|
"exact_block": true,
|
||||||
|
"crafting_blueprint": true,
|
||||||
|
"goggles.detailed": false,
|
||||||
|
"placard": true
|
||||||
|
},
|
||||||
"jade": {
|
"jade": {
|
||||||
"coordinates.rel": false,
|
"coordinates.rel": false,
|
||||||
"distance": false,
|
"distance": false,
|
||||||
|
|
@ -110,17 +121,6 @@
|
||||||
"registry_name": "OFF",
|
"registry_name": "OFF",
|
||||||
"mod_name": true
|
"mod_name": true
|
||||||
},
|
},
|
||||||
"create": {
|
|
||||||
"filter": true,
|
|
||||||
"goggles.requires_goggles": true,
|
|
||||||
"goggles": false,
|
|
||||||
"copper_backtank": true,
|
|
||||||
"blaze_burner": true,
|
|
||||||
"exact_block": true,
|
|
||||||
"crafting_blueprint": true,
|
|
||||||
"goggles.detailed": false,
|
|
||||||
"placard": true
|
|
||||||
},
|
|
||||||
"ae2": {
|
"ae2": {
|
||||||
"part_icon": true,
|
"part_icon": true,
|
||||||
"charger": true,
|
"charger": true,
|
||||||
|
|
|
||||||
|
|
@ -208,7 +208,7 @@
|
||||||
"ae2:part_tooltip": null,
|
"ae2:part_tooltip": null,
|
||||||
"ae2:part_mod_name": null,
|
"ae2:part_mod_name": null,
|
||||||
"create:blaze_burner": null,
|
"create:blaze_burner": null,
|
||||||
"create:copper_backtank": null,
|
"create:backtank_capacity": null,
|
||||||
"create:contraption_inv": null,
|
"create:contraption_inv": null,
|
||||||
"lootr:inventory": null,
|
"lootr:inventory": null,
|
||||||
"create:hide_boiler_tanks": null,
|
"create:hide_boiler_tanks": null,
|
||||||
|
|
|
||||||
|
|
@ -24,6 +24,7 @@
|
||||||
# mixin.bugfix.packet_leak=false # (default)
|
# mixin.bugfix.packet_leak=false # (default)
|
||||||
# mixin.bugfix.paper_chunk_patches=true # (default)
|
# mixin.bugfix.paper_chunk_patches=true # (default)
|
||||||
# mixin.bugfix.recipe_book_type_desync=true # (default)
|
# mixin.bugfix.recipe_book_type_desync=true # (default)
|
||||||
|
# mixin.bugfix.removed_dimensions=true # (default)
|
||||||
# mixin.bugfix.unsafe_modded_shape_caches=true # (default)
|
# mixin.bugfix.unsafe_modded_shape_caches=true # (default)
|
||||||
# mixin.bugfix.world_leaks=true # (default)
|
# mixin.bugfix.world_leaks=true # (default)
|
||||||
# mixin.bugfix.world_screen_skipped=true # (default)
|
# mixin.bugfix.world_screen_skipped=true # (default)
|
||||||
|
|
@ -33,6 +34,7 @@
|
||||||
# mixin.feature.disable_unihex_font=false # (default)
|
# mixin.feature.disable_unihex_font=false # (default)
|
||||||
# mixin.feature.integrated_server_watchdog=true # (default)
|
# mixin.feature.integrated_server_watchdog=true # (default)
|
||||||
# mixin.feature.measure_time=true # (default)
|
# mixin.feature.measure_time=true # (default)
|
||||||
|
# mixin.feature.registry_event_progress=false # (default)
|
||||||
# mixin.feature.snapshot_easter_egg=true # (default)
|
# mixin.feature.snapshot_easter_egg=true # (default)
|
||||||
# mixin.feature.spam_thread_dump=false # (default)
|
# mixin.feature.spam_thread_dump=false # (default)
|
||||||
# mixin.feature.spark_profile_launch=false # (default)
|
# mixin.feature.spark_profile_launch=false # (default)
|
||||||
|
|
@ -41,6 +43,7 @@
|
||||||
# mixin.perf.blast_search_trees=true # (default)
|
# mixin.perf.blast_search_trees=true # (default)
|
||||||
# mixin.perf.cache_blockstate_cache_arrays=true # (default)
|
# mixin.perf.cache_blockstate_cache_arrays=true # (default)
|
||||||
# mixin.perf.cache_model_materials=true # (default)
|
# mixin.perf.cache_model_materials=true # (default)
|
||||||
|
# mixin.perf.cache_profile_texture_url=true # (default)
|
||||||
# mixin.perf.cache_strongholds=true # (default)
|
# mixin.perf.cache_strongholds=true # (default)
|
||||||
# mixin.perf.cache_upgraded_structures=true # (default)
|
# mixin.perf.cache_upgraded_structures=true # (default)
|
||||||
# mixin.perf.clear_mixin_classinfo=false # (default)
|
# mixin.perf.clear_mixin_classinfo=false # (default)
|
||||||
|
|
@ -55,7 +58,6 @@
|
||||||
# mixin.perf.dynamic_entity_renderers=false # (default)
|
# mixin.perf.dynamic_entity_renderers=false # (default)
|
||||||
# mixin.perf.dynamic_resources=false # (default)
|
# mixin.perf.dynamic_resources=false # (default)
|
||||||
# mixin.perf.dynamic_resources.ctm=true # (default)
|
# mixin.perf.dynamic_resources.ctm=true # (default)
|
||||||
# mixin.perf.dynamic_resources.diagonalfences=true # (default)
|
|
||||||
# mixin.perf.dynamic_resources.rs=true # (default)
|
# mixin.perf.dynamic_resources.rs=true # (default)
|
||||||
# mixin.perf.dynamic_resources.supermartijncore=true # (default)
|
# mixin.perf.dynamic_resources.supermartijncore=true # (default)
|
||||||
# mixin.perf.dynamic_sounds=true # (default)
|
# mixin.perf.dynamic_sounds=true # (default)
|
||||||
|
|
|
||||||
4
heracles_options.json
Normal file
4
heracles_options.json
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"pinnedIndex": 0,
|
||||||
|
"showTutorial": true
|
||||||
|
}
|
||||||
BIN
mods/MouseTweaks-forge-mc1.20-2.25.jar
Normal file
BIN
mods/MouseTweaks-forge-mc1.20-2.25.jar
Normal file
Binary file not shown.
BIN
mods/NoChatReports-FORGE-1.20.1-v2.2.2.jar
Normal file
BIN
mods/NoChatReports-FORGE-1.20.1-v2.2.2.jar
Normal file
Binary file not shown.
BIN
mods/SimpleLogin-1.20.1-1.0.2-all.jar
Normal file
BIN
mods/SimpleLogin-1.20.1-1.0.2-all.jar
Normal file
Binary file not shown.
BIN
mods/balm-forge-1.20.1-7.1.4.jar
Normal file
BIN
mods/balm-forge-1.20.1-7.1.4.jar
Normal file
Binary file not shown.
BIN
mods/cherishedworlds-forge-6.1.4+1.20.1.jar
Normal file
BIN
mods/cherishedworlds-forge-6.1.4+1.20.1.jar
Normal file
Binary file not shown.
BIN
mods/clienttweaks-forge-1.20-11.1.0.jar
Normal file
BIN
mods/clienttweaks-forge-1.20-11.1.0.jar
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue