Capped Combat XP at 800 per kill

Capped Combat XP at 800 per kill
This commit is contained in:
Jaysyn904
2025-04-06 17:05:06 -04:00
parent 1e668844e5
commit b38a47e2d8
5 changed files with 157 additions and 4 deletions

View File

@@ -2,7 +2,7 @@
const int MAX_CHARACTER_LEVEL = 60; //:: Maximum character level
const int MAX_PARTY_SIZE = 12; //:: Maximum party size for XP split
const int LEVEL_DIFFERENCE_LIMIT = 8; //:: Max level difference within party
const int XP_REWARD_CAP = 4000; //:: Max per PC reward, after split
const int XP_REWARD_CAP = 800; //:: Max per PC reward, after split
const float BASE_XP_MULTIPIER = 50.0;
const float BONUS_XP_MODIFIER = 5.0;