From 61ae9cffd9f4aeea796cecb14a50a356de4678dd Mon Sep 17 00:00:00 2001 From: Josh Freeman Date: Mon, 28 May 2018 13:36:16 +0100 Subject: [PATCH] Update quest_exp_reward.md --- research/quest_exp_reward.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/research/quest_exp_reward.md b/research/quest_exp_reward.md index 638484a9b..9d32797f0 100644 --- a/research/quest_exp_reward.md +++ b/research/quest_exp_reward.md @@ -4,21 +4,21 @@ Quest experience points are generated using a small equation. Why this is done I **CORE FORMULA** -> EXP = Quest.ExpFactor * ParamGrow.QuestExpModifier * (45 + (5 * Quest.ClassJobLevel_0)) / 100 +> `EXP = Quest.ExpFactor * ParamGrow.QuestExpModifier * (45 + (5 * Quest.ClassJobLevel_0)) / 100` All formula's use this as their starting point and ADD onto it. **QUEST LEVEL 50** -> EXP = CORE + ((400 * (Quest.ExpFactor / 100)) + ((Quest.ClassJobLevel_0-52) * (400 * (Quest.ExpFactor/100)))) +> `EXP = CORE + ((400 * (Quest.ExpFactor / 100)) + ((Quest.ClassJobLevel_0-52) * (400 * (Quest.ExpFactor/100))))` **QUEST LEVEL 51** -> EXP = CORE + ((800 * (Quest.ExpFactor / 100)) + ((Quest.ClassJobLevel_0-52) * (800 * (Quest.ExpFactor/100)))) +> `EXP = CORE + ((800 * (Quest.ExpFactor / 100)) + ((Quest.ClassJobLevel_0-52) * (800 * (Quest.ExpFactor/100))))` **QUEST LEVEL 52-59** -> EXP = CORE + ((2000 * (Quest.ExpFactor / 100)) + ((Quest.ClassJobLevel_0-52) * (2000 * (Quest.ExpFactor/100)))) +> `EXP = CORE + ((2000 * (Quest.ExpFactor / 100)) + ((Quest.ClassJobLevel_0-52) * (2000 * (Quest.ExpFactor/100))))` **QUEST LEVEL 60-69** -> EXP =CORE + ((37125 * (Quest.ExpFactor / 100)) + ((Quest.ClassJobLevel_0-60) * (3375 * (Quest.ExpFactor/100)))) +> `EXP =CORE + ((37125 * (Quest.ExpFactor / 100)) + ((Quest.ClassJobLevel_0-60) * (3375 * (Quest.ExpFactor/100))))` #### Formula in PHP: