Side activities: Difference between revisions

From MediaWiki
Jump to navigation Jump to search
(info transfer)
mNo edit summary
Line 27: Line 27:
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 ===

Revision as of 01:14, 9 October 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.