Side activities: Difference between revisions

From Discord Dungeons Wiki
Jump to navigation Jump to search
(added info)
m (Change prefix #! To / and fix typo)
 
Line 12: Line 12:
   * [[Trapping]]
   * [[Trapping]]


==== Rewards ====
====Rewards====
User also gets rewards besides the items gained from respective side activities.
User also gets rewards besides the items gained from respective side activities.


Line 30: Line 30:
</pre></blockquote>
</pre></blockquote>


=== Searching ===
===Searching===
----'''Cooldown:''' 600 Seconds
----'''Cooldown:''' 600 Seconds


You can search your surroundings in the location you are at using <code>#!search</code>
You can search your surroundings in the location you are at using <code>/search</code>


This command is primarily used in [[quests]].
This command is primarily used in [[quests]].


=== More Information ===
===More Information===
----Skill XP is the experience gained when youre doing the 4 main side skills/activities: <code>[[Mine|#!Mine]]</code>, <code>[[Forage|#!forage]]</code>, <code>[[Chop|#!chop]]</code>, and <code>[[Fish|#!fish]]</code>
----Skill XP is the experience gained when youre doing the 4 main side skills/activities: <code>[[Mine|/mine]]</code>, <code>[[Forage|/forage]]</code>, <code>[[Chop|/chop]]</code>, and <code>[[Fish|/fish]]</code>


Skill XP is used to level up your side skills/activities, so you may get more output when doing the sides and in order to use better skill/activity tools.
Skill XP is used to level up your side skills/activities, so you may get more output when doing the sides and in order to use better skill/activity tools.
[[Category:Commands]]
[[Category:Commands]]
[[Category:Pages]]
[[Category:Pages]]

Latest revision as of 22:50, 21 August 2022

In Discord Dungeons, there are other activities besides adventuring.

Some activities reward the players with XP and skill points, increasing their level and skill levels.

Certain activities require specific items, and certain activities are not considered skills and therefore no skill points will be obtained.

 * Mining
 * Chopping
 * Fishing
 * Foraging
 * Planting
 * Trapping

Rewards

User also gets rewards besides the items gained from respective side activities.

The rewards are XP and skill XP.

The XP and skill XP gained are calculated as below:

let minXP = Math.round(Math.sqrt((Math.sqrt(level)*0.25)*Common.rInt(5, 10) / 2));
let maxXP = Math.round(Math.sqrt((Math.sqrt(level)*0.25)*Common.rInt(10, 15) / 2));

let minSkillXP = Math.round(Math.sqrt((Math.sqrt(skillLevel)*0.25)*Common.rInt(5, 10) / 2));
let maxSkillXP = Math.round(Math.sqrt((Math.sqrt(skillLevel)*0.25)*Common.rInt(10, 15) / 2));

let xp = Common.rInt(minXP, maxXP);
let skillXP = Common.rInt(minSkillXP, maxSkillXP);

Searching


Cooldown: 600 Seconds

You can search your surroundings in the location you are at using /search

This command is primarily used in quests.

More Information


Skill XP is the experience gained when youre doing the 4 main side skills/activities: /mine, /forage, /chop, and /fish

Skill XP is used to level up your side skills/activities, so you may get more output when doing the sides and in order to use better skill/activity tools.