Update quest_exp_reward.md

This commit is contained in:
Josh Freeman
2015-12-02 11:16:09 +00:00
parent 0a03519427
commit 0f0f595a06
+2 -2
View File
@@ -10,14 +10,14 @@ Quest experience points are generated using a small equation. Why this is done I
If a quest is a bove 50, it has an additional 10k exp per 100th exp_factor value. If a quest is a bove 50, it has an additional 10k exp per 100th exp_factor value.
If the `exp_factor` is 100, you ad 10,000 exp, if its 200, you add 20,000. etc. If the `exp_factor` is 100, you add 10000 exp, if its 200, you add 20000. etc.
So after the question, you would do: So after the question, you would do:
```js ```js
exp = (exp_factor * quest_exp_modifier * (45 + 5 * class_level_1)) / 100; exp = (exp_factor * quest_exp_modifier * (45 + 5 * class_level_1)) / 100;
exp + (exp_factor / 100) * 10000; exp = exp + (exp_factor / 100) * 10000;
``` ```
Not fully confirmed this, but it has worked for a few 50+ quests I tested against. Not fully confirmed this, but it has worked for a few 50+ quests I tested against.