From 5a0a1e7c60a5876aba49301f0ad2668b5904160f Mon Sep 17 00:00:00 2001 From: MSpreckels Date: Thu, 8 Feb 2024 12:09:31 +0100 Subject: [PATCH 1/4] Introduce documentation for converting settings to env vars, add link to detailed list of settings --- README.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6ade570db..23ee855a8 100644 --- a/README.md +++ b/README.md @@ -377,6 +377,16 @@ timezone set with TZ > These Environment Variables/Settings are subject to change since the game is still in beta. > Check out the [official webpage for the supported parameters.](https://tech.palworldgame.com/optimize-game-balance) +Converting server settings to environment variables follow the same principles (with some exceptions): +- all capital letters +- split words by inserting an underscore +- remove the single letter if the setting starts with one (like 'b') + +For example: +Difficulty -> DIFFICULTY +PalSpawnNumRate -> PAL_SPAWN_NUM_RATE +bIsPvP -> IS_PVP + | Variable | Description | Default Value | Allowed Value | |-------------------------------------------|----------------------------------------------------------------|----------------------------------------------------------------------------------------------|----------------------------------------| | DIFFICULTY | Game Difficulty | None | `None`,`Normal`,`Difficult` | @@ -444,7 +454,8 @@ Please keep in mind that the ENV variables will always overwrite the changes mad > > Any changes made while the server is live will be overwritten when the server stops. -For a more detailed list of explanations of server settings go to: [shockbyte](https://shockbyte.com/billing/knowledgebase/1189/How-to-Configure-your-Palworld-server.html) +For a more detailed list of server settings go to: [Palworld Wiki](https://palworld.wiki.gg/wiki/PalWorldSettings.ini) +For more detailed server settings explanations go to: [shockbyte](https://shockbyte.com/billing/knowledgebase/1189/How-to-Configure-your-Palworld-server.html) ## Using discord webhooks From 48e8c6afb98f0fb31c5ca93a6f53b309c7ac3772 Mon Sep 17 00:00:00 2001 From: MSpreckels Date: Thu, 8 Feb 2024 12:14:02 +0100 Subject: [PATCH 2/4] Fix markdown --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 23ee855a8..51a2a3087 100644 --- a/README.md +++ b/README.md @@ -378,14 +378,16 @@ timezone set with TZ > Check out the [official webpage for the supported parameters.](https://tech.palworldgame.com/optimize-game-balance) Converting server settings to environment variables follow the same principles (with some exceptions): + - all capital letters - split words by inserting an underscore - remove the single letter if the setting starts with one (like 'b') For example: -Difficulty -> DIFFICULTY -PalSpawnNumRate -> PAL_SPAWN_NUM_RATE -bIsPvP -> IS_PVP + +- Difficulty -> DIFFICULTY +- PalSpawnNumRate -> PAL_SPAWN_NUM_RATE +- bIsPvP -> IS_PVP | Variable | Description | Default Value | Allowed Value | |-------------------------------------------|----------------------------------------------------------------|----------------------------------------------------------------------------------------------|----------------------------------------| From 263f1364ef3c170dd6bd65be905cd3dc9d80762f Mon Sep 17 00:00:00 2001 From: MSpreckels Date: Thu, 8 Feb 2024 12:14:39 +0100 Subject: [PATCH 3/4] Fix markdown --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 51a2a3087..0db5875a5 100644 --- a/README.md +++ b/README.md @@ -457,6 +457,7 @@ Please keep in mind that the ENV variables will always overwrite the changes mad > Any changes made while the server is live will be overwritten when the server stops. For a more detailed list of server settings go to: [Palworld Wiki](https://palworld.wiki.gg/wiki/PalWorldSettings.ini) + For more detailed server settings explanations go to: [shockbyte](https://shockbyte.com/billing/knowledgebase/1189/How-to-Configure-your-Palworld-server.html) ## Using discord webhooks From 4d423868b38cf3e2c7f851b6f81b6a75f91d89eb Mon Sep 17 00:00:00 2001 From: MSpreckels Date: Thu, 8 Feb 2024 12:18:57 +0100 Subject: [PATCH 4/4] Fix markdown --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 0db5875a5..43502dec8 100644 --- a/README.md +++ b/README.md @@ -379,15 +379,15 @@ timezone set with TZ Converting server settings to environment variables follow the same principles (with some exceptions): -- all capital letters -- split words by inserting an underscore -- remove the single letter if the setting starts with one (like 'b') +* all capital letters +* split words by inserting an underscore +* remove the single letter if the setting starts with one (like 'b') For example: -- Difficulty -> DIFFICULTY -- PalSpawnNumRate -> PAL_SPAWN_NUM_RATE -- bIsPvP -> IS_PVP +* Difficulty -> DIFFICULTY +* PalSpawnNumRate -> PAL_SPAWN_NUM_RATE +* bIsPvP -> IS_PVP | Variable | Description | Default Value | Allowed Value | |-------------------------------------------|----------------------------------------------------------------|----------------------------------------------------------------------------------------------|----------------------------------------|