From a6e07207c2f1c10d68bdcb224c74719ae53f920f Mon Sep 17 00:00:00 2001 From: Josh Freeman Date: Tue, 26 Sep 2017 17:16:56 +0100 Subject: [PATCH] Update quest_exp_reward.md --- research/quest_exp_reward.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/research/quest_exp_reward.md b/research/quest_exp_reward.md index dcd200ecf..ccc472656 100644 --- a/research/quest_exp_reward.md +++ b/research/quest_exp_reward.md @@ -8,15 +8,15 @@ https://docs.google.com/spreadsheets/d/15h13UbfqhxkD9BoQJkLvR66fnZRq6Wn6YxEMRXO9 ```js // pre level 50 -(exp_factor * quest_exp_modifier * (45 + 5 * class_level_1)) / 100; +(exp_factor * param_grow * (45 + 5 * quest_level)) / 100; // If quest is 50 or above -(exp_factor * quest_exp_modifier * (45 + 5 * class_level_1)) / 100 + (additive * (base / 100)) +(exp_factor * param_grow * (45 + 5 * quest_level)) / 100 + (additive * (base / 100)) ``` - The `exp_factor` value can be found in the **Quest** itself, offset: [found here](https://github.com/viion/XIV-Datamining/blob/master/offsets/3.1_list.txt#L756) -- The `quest_exp_modifier` value is found in the **ParamGrow** file! offset: `quest_exp_modifier` [found here](https://github.com/viion/XIV-Datamining/blob/master/offsets/3.1_list.txt#L725) -- The `class_level_1` is the level of the quest, found in the **Quest** itself, offset `class_level_1` (main class) [found here](https://github.com/viion/XIV-Datamining/blob/master/offsets/3.1_list.txt#L737) +- The `param_grow` value is found in the **ParamGrow** file! offset: `quest_exp_modifier` [found here](https://github.com/viion/XIV-Datamining/blob/master/offsets/3.1_list.txt#L725) +- The `quest_level` is the level of the quest, found in the **Quest** itself, offset `class_level_1` (main class) [found here](https://github.com/viion/XIV-Datamining/blob/master/offsets/3.1_list.txt#L737) If a quest is a bove 50, it has an additional 10k exp per 100th exp_factor value.