diff options
| author | Ovalord <1Don7H4v3@m41L.com> | 2016-07-23 18:39:56 +0200 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2016-07-23 18:39:56 +0200 |
| commit | 79aafd5865f11b5ecdd2865829562b981652db75 (patch) | |
| tree | 73b19b280e4b153e8ba10e4f459421d0cc9f6712 /src/server/worldserver | |
| parent | 3b8cdd434133939cec1c7aaceb24fb7dc98000f9 (diff) | |
Core/Players: Initial work on demon hunters
* Added starting level and required level config options as well as rbac permission to ignore the requirements
* Updated max power values for both demon hunter specs
* Fixed a crash during DK and DH creation
* Added playercreateinfo data for demon hunters
Closes #17651
Diffstat (limited to 'src/server/worldserver')
| -rw-r--r-- | src/server/worldserver/worldserver.conf.dist | 31 |
1 files changed, 29 insertions, 2 deletions
diff --git a/src/server/worldserver/worldserver.conf.dist b/src/server/worldserver/worldserver.conf.dist index 49ddb92df24..af8aeae4c91 100644 --- a/src/server/worldserver/worldserver.conf.dist +++ b/src/server/worldserver/worldserver.conf.dist @@ -668,7 +668,8 @@ DeclinedNames = 0 # Expansion # Description: Allow server to use content from expansions. Checks for expansion-related # map files, client compatibility and class/race character creation. -# Default: 5 - (Expansion 5) +# Default: 6 - (Expansion 6) +# 5 - (Expansion 5) # 4 - (Expansion 4) # 3 - (Expansion 3) # 2 - (Expansion 2) @@ -796,7 +797,7 @@ CharactersPerRealm = 12 # # HeroicCharactersPerRealm # Description: Limit number of heroic class characters per account on this realm. -# Range: 1-10 +# Range: 1-12 # Default: 1 HeroicCharactersPerRealm = 1 @@ -812,6 +813,24 @@ HeroicCharactersPerRealm = 1 CharacterCreating.MinLevelForHeroicCharacter = 55 # +# DemonHuntersPerRealm +# Description: Limit number of demon hunter characters per account on this realm. +# Range: 1-12 +# Default: 1 + +DemonHuntersPerRealm = 1 + +# +# CharacterCreating.MinLevelForDemonHunter +# Description: Limit creating demon hunters only for account with another +# character of specific level. +# Default: 70 - (Enabled, Requires at least another level 70 character) +# 0 - (Disabled) +# 1 - (Enabled, Requires at least another level 1 character) + +CharacterCreating.MinLevelForDemonHunter = 70 + +# # SkipCinematics # Description: Disable cinematic intro at first login after character creation. # Prevents buggy intros in case of custom start location coordinates. @@ -854,6 +873,14 @@ StartPlayerLevel = 1 StartHeroicPlayerLevel = 55 # +# StartDemonHunterPlayerLevel +# Description: Staring level for demon hunters after creation. +# Range: 98-MaxPlayerLevel +# Default: 98 + +StartDemonHunterPlayerLevel = 98 + +# # StartPlayerMoney # Description: Amount of money (in Copper) that a character has after creation. # Default: 0 |
