Update game-world-settings.md

This commit is contained in:
Lucca Faria Ferri 2023-02-08 17:21:05 -03:00 committed by GitHub
parent be5e757e9c
commit 8ac1d0ab28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,10 +1,10 @@
# Global settings for game # Game World Settings
The parameters of the world can be easily altered using the configuration file located within `config.ini`. The parameters of the world can be easily altered using the configuration file located within `config.ini`.
## Configuration ## Configuration
The parameters specified in the `config.ini` file will be applied to the server folder, overwriting the default settings. For example, all values below use their default settings. The parameters specified in the `config.ini` file will be saved to the server folder, overwriting the default settings. For example, all values below use their default settings.
```ini ```ini
[Game-Server] [Game-Server]
@ -14,15 +14,22 @@ RateDrop = 1
RateChangeDrop = 1 RateChangeDrop = 1
RateMonsterHP = 1 RateMonsterHP = 1
RateMonsterDMG = 1 RateMonsterDMG = 1
ChanceHighQualityUnidentified = 30 ChanceHighQualityUnidentified = 30
ChanceNormalUnidentified = 5 ChanceNormalUnidentified = 5
ResurrectionCharges = 3 ResurrectionCharges = 3
BossHealthMultiplier = 6 BossHealthMultiplier = 6
BossDamageMultiplier = 3 BossDamageMultiplier = 3
AutoSaveQuests = false AutoSaveQuests = false
NephalemRiftProgressMultiplier = 1 NephalemRiftProgressMultiplier = 1
HealthPotionRestorePercentage = 60 HealthPotionRestorePercentage = 60
HealthPotionCooldown = 30 HealthPotionCooldown = 30
UnlockAllWaypoints = false UnlockAllWaypoints = false
``` ```