Side activities: Difference between revisions

From MediaWiki
Jump to navigation Jump to search
(info transfer)
(added info)
(One intermediate revision by the same user not shown)
Line 13: Line 13:


==== Rewards ====
==== Rewards ====
User also gets rewards besides the items gained from respective side activities.<br />
User also gets rewards besides the items gained from respective side activities.
The rewards are XP and skill XP.<br />
 
The XP and skill XP gained are calculated as below:<br />
The rewards are XP and skill XP.
 
The XP and skill XP gained are calculated as below:


<blockquote><pre>
<blockquote><pre>
Line 27: Line 29:
let skillXP = Common.rInt(minSkillXP, maxSkillXP);
let skillXP = Common.rInt(minSkillXP, maxSkillXP);
</pre></blockquote>
</pre></blockquote>
=== Cracking ===
'''Level Requirement: 20'''
'''Cooldown:''' 10 Seconds
You can crack {{ItemLink|Geode}} open with the <code>#!crack [amount]</code> command.
A list of items obtainable through cracking can be found [[items:items_map#cracking|here]].


=== Searching ===
=== Searching ===
Line 45: Line 37:
This command is primarily used in [[quests]].
This command is primarily used in [[quests]].


=== 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 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]]

Revision as of 23:05, 5 November 2019

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.