Merge remote-tracking branch 'origin/community' into community

This commit is contained in:
Lucca Faria Ferri 2023-02-09 21:22:50 -08:00
commit 1e80bb2084
2 changed files with 23 additions and 4 deletions

View File

@ -15,7 +15,7 @@ WebPort = 9800
Port = 1119 Port = 1119
BindIPv6 = ::1 BindIPv6 = ::1
MotdEnabled = true MotdEnabled = true
Motd = Welcome to Diablo 3! Motd = Welcome to Blizzless D3!
; ------------------------ ; ------------------------
; [IWServer] ; [IWServer]
@ -54,6 +54,10 @@ ChanceNormalUnidentified = 5
ResurrectionCharges = 3 ResurrectionCharges = 3
BossHealthMultiplier = 6 BossHealthMultiplier = 6
BossDamageMultiplier = 3 BossDamageMultiplier = 3
NephalemRiftProgressMultiplier = 1
HealthPotionRestorePercentage = 60
HealthPotionCooldown = 30
UnlockAllWaypoints = false
; ------------------------ ; ------------------------
; Network address translation ; Network address translation

View File

@ -1,10 +1,10 @@
# Global settings for game # Game World Settings
Using the configuration file you can easily change the parameters of the world. The parameters of the world can be easily altered using the configuration file located within `config.ini`.
## Configuration ## Configuration
Apply parameters in `config.ini` file to the server folder (It overwrites the 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,12 +14,23 @@ 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
HealthPotionRestorePercentage = 60
HealthPotionCooldown = 30
UnlockAllWaypoints = false
``` ```
## Description ## Description
@ -38,4 +49,8 @@ AutoSaveQuests = false
| `BossHealthMultiplier` | Boss Health Multiplier | | `BossHealthMultiplier` | Boss Health Multiplier |
| `BossDamageMultiplier` | Boss Damage Multiplier | | `BossDamageMultiplier` | Boss Damage Multiplier |
| `AutoSaveQuests` *in tests* | Force Save Quests/Step, even if Act's quest setup marked as Saveable = FALSE. Doesn't apply to OpenWorld games. | | `AutoSaveQuests` *in tests* | Force Save Quests/Step, even if Act's quest setup marked as Saveable = FALSE. Doesn't apply to OpenWorld games. |
| `NephalemRiftProgressMultiplier` | Nephalem Rift Progress Modifier |
| `HealthPotionRestorePercentage` | How much (from 1-100) a health potion will heal. |
| `HealthPotionCooldown` | How much (in seconds) to use a health potion again. |
| `UnlockAllWaypoints` | Unlocks all waypoints in campaign |