From b3bbb5f9ae44525515c57ad1c3996d332c6d5b37 Mon Sep 17 00:00:00 2001 From: Josh Freeman Date: Fri, 30 Oct 2015 19:45:36 +0000 Subject: [PATCH] Information on quests --- research/quest_exp_reward.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 research/quest_exp_reward.md diff --git a/research/quest_exp_reward.md b/research/quest_exp_reward.md new file mode 100644 index 000000000..ece0bf74d --- /dev/null +++ b/research/quest_exp_reward.md @@ -0,0 +1,11 @@ +Quest experience points are generated using a small equation. Why this is done I am not sure as the values always seem static. + +```js +(base * paramgrow * (50 + 5 * level)) / 100; +``` + +The `base` value can be found in the quest itself, offset: `reward_exp_bonus` [https://github.com/viion/XIV-Datamining/blob/master/exd-xivdb-offsets/Quest/quest_csv_xivdb.txt#L3](found here) + +The `paramgrow` value is found in the ParamGrow file! offset: `exp_mod` [https://github.com/viion/XIV-Datamining/blob/master/exd-xivdb-offsets/ParamGrow/param_grow_csv_xivdb.txt#L4](found here) + +The `level` is the level of the quest, offset `class_level` [https://github.com/viion/XIV-Datamining/blob/master/exd-xivdb-offsets/Quest/quest_csv_xivdb.txt#L10](found here) \ No newline at end of file