Add Unlimited Players Mod to both Docker compose files
Incorporated the Unlimited Players Mod in the docker compose files for both steam and gog versions. This mod allows for a dynamic number of players to join, and the number can be set via the UNLIMITED_PLAYERS_PLAYER_LIMIT environment variable. Additionally, new configuration and manifest files were added for the UnlimitedPlayers mod.
This commit is contained in:
parent
27490dd7a9
commit
d6a008ded0
@ -105,6 +105,10 @@ environment:
|
||||
- AUTO_LOAD_GAME_FORGET_LAST_FILE_ON_TITLE=${AUTO_LOAD_GAME_FORGET_LAST_FILE_ON_TITLE-true}
|
||||
- AUTO_LOAD_GAME_LOAD_INTO_MULTIPLAYER=${AUTO_LOAD_GAME_LOAD_INTO_MULTIPLAYER-true}
|
||||
|
||||
# Unlimited Players Mod
|
||||
- ENABLE_UNLIMITEDPLAYERS_MOD=${ENABLE_UNLIMITEDPLAYERS-true}
|
||||
- UNLIMITED_PLAYERS_PLAYER_LIMIT=${UNLIMITED_PLAYERS_PLAYER_LIMIT-8}
|
||||
|
||||
# Save Backup mod
|
||||
## Disabling this will stop saves being backed up
|
||||
- ENABLE_SAVEBACKUP_MOD=${ENABLE_SAVEBACKUP_MOD-true}
|
||||
|
@ -52,6 +52,10 @@ services:
|
||||
- AUTO_LOAD_GAME_FORGET_LAST_FILE_ON_TITLE=${AUTO_LOAD_GAME_FORGET_LAST_FILE_ON_TITLE-true}
|
||||
- AUTO_LOAD_GAME_LOAD_INTO_MULTIPLAYER=${AUTO_LOAD_GAME_LOAD_INTO_MULTIPLAYER-true}
|
||||
|
||||
# Unlimited Players Mod
|
||||
- ENABLE_UNLIMITEDPLAYERS_MOD=${ENABLE_UNLIMITEDPLAYERS-true}
|
||||
- UNLIMITED_PLAYERS_PLAYER_LIMIT=${UNLIMITED_PLAYERS_PLAYER_LIMIT-10}
|
||||
|
||||
# Save Backup mod
|
||||
## Disabling this will stop saves being backed up
|
||||
- ENABLE_SAVEBACKUP_MOD=${ENABLE_SAVEBACKUP_MOD-true}
|
||||
|
@ -61,6 +61,10 @@ services:
|
||||
- AUTO_LOAD_GAME_FORGET_LAST_FILE_ON_TITLE=${AUTO_LOAD_GAME_FORGET_LAST_FILE_ON_TITLE-true}
|
||||
- AUTO_LOAD_GAME_LOAD_INTO_MULTIPLAYER=${AUTO_LOAD_GAME_LOAD_INTO_MULTIPLAYER-true}
|
||||
|
||||
# Unlimited Players Mod
|
||||
- ENABLE_UNLIMITEDPLAYERS_MOD=${ENABLE_UNLIMITEDPLAYERS-true}
|
||||
- UNLIMITED_PLAYERS_PLAYER_LIMIT=${UNLIMITED_PLAYERS_PLAYER_LIMIT-10}
|
||||
|
||||
# Save Backup mod
|
||||
## Disabling this will stop saves being backed up
|
||||
- ENABLE_SAVEBACKUP_MOD=${ENABLE_SAVEBACKUP_MOD-true}
|
||||
|
BIN
docker/mods/UnlimitedPlayers/UnlimitedPlayers.dll
Normal file
BIN
docker/mods/UnlimitedPlayers/UnlimitedPlayers.dll
Normal file
Binary file not shown.
9
docker/mods/UnlimitedPlayers/config.json.template
Normal file
9
docker/mods/UnlimitedPlayers/config.json.template
Normal file
@ -0,0 +1,9 @@
|
||||
{
|
||||
"PlayerLimit": "${UNLIMITED_PLAYERS_PLAYER_LIMIT}",
|
||||
"ClientMods": {
|
||||
"Denylist": [
|
||||
"CJBok.CheatsMenu",
|
||||
"Ryaon.JunimoKartCheater"
|
||||
]
|
||||
}
|
||||
}
|
9
docker/mods/UnlimitedPlayers/manifest.json
Normal file
9
docker/mods/UnlimitedPlayers/manifest.json
Normal file
@ -0,0 +1,9 @@
|
||||
{
|
||||
"Author": "Armitxes",
|
||||
"Description": "Remove the maximum player restrictions, build endless cabins.",
|
||||
"Name": "Unlimited Players by Armitxes",
|
||||
"EntryDll": "UnlimitedPlayers.dll",
|
||||
"UniqueID": "Armitxes.UnlimitedPlayers",
|
||||
"UpdateKeys": [ "GitHub:Armitxes/StardewValley_UnlimitedPlayers" ],
|
||||
"Version": "2024.4.16"
|
||||
}
|
Loading…
Reference in New Issue
Block a user