diff options
| author | Tuxity <kevin.darcel@gmail.com> | 2013-01-09 20:37:02 +0100 |
|---|---|---|
| committer | Tuxity <kevin.darcel@gmail.com> | 2013-01-09 20:37:02 +0100 |
| commit | 71b0b307129c502ccaf2129fff30963fdf9ffdd5 (patch) | |
| tree | 5ae8c44b6c06f02f1ea7c0ba3ae29f2d0e7a4eca /src/server/worldserver | |
| parent | db330750b7b0b0bf774089df60c0651b327d9c76 (diff) | |
Core/Battleground:
- Fix team logo after countdown timer expire. close #8887
- Add more options with justice and honor points in conf file, also fix a wrong cap value.
- Grant back currencies when refunding an item and fix price.
ref #8892
Diffstat (limited to 'src/server/worldserver')
| -rw-r--r-- | src/server/worldserver/worldserver.conf.dist | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/src/server/worldserver/worldserver.conf.dist b/src/server/worldserver/worldserver.conf.dist index 05c756c757c..22f99dbb04c 100644 --- a/src/server/worldserver/worldserver.conf.dist +++ b/src/server/worldserver/worldserver.conf.dist @@ -2860,12 +2860,33 @@ Guild.WeeklyReputationCap = 4375 # CURRENCIES SETTINGS # # Currency.StartHonorPoints -# Amount of honor that new players will start with +# Amount of honor points that new players will start with # Default: 0 (with precision) # Currency.StartHonorPoints = 0 +# Currency.MaxHonorPoints +# Max honor points of players +# Default: 400000 (with precision) +# + +Currency.MaxHonorPoints = 400000 + +# Currency.StartJusticePoints +# Amount of justice points that new players will start with +# Default: 0 (with precision) +# + +Currency.StartJusticePoints = 0 + +# Currency.MaxJusticePoints +# Max justice points of players +# Default: 400000 (with precision) +# + +Currency.MaxJusticePoints = 400000 + # # Currency.StartConquestPoints # Amount of conquest points that new players will start with |
