Here is a guide on how to get all achievements just in one hour?
Introduction
You got here to farm achievements and get +1 perfect game for your Steam library, right?
Well, you’re on the right way
P.S. Currently you can’t change language in the game, so I took in-game screenshots with russian localisation, but that shouldn’t be a problem, because the process is described step by step
Starting location quests
Click on it and see quest list:
That’s exactly what we need to complete to get Steam achievements
A bit of magic
We need to get a bunny from a hat change game values, responsible for quest completion
For that we are heading to this directory (folder with a game):
\steamapps\common\MrMine\win-unpacked\resources\app
Open file quests.js with any text editor
For example, I’ll be using common .txt editor
Find section QUEST COMPLETION CHECK
Here we are interested in first 14 quests, which can be completed on starting location
Find line if(numGoldOwned() >= 100 && quest[0] == 0)
And change if(numGoldOwned() >= 100
To if(numCoalOwned() >= 20
It means completion of first quest after you get 20 coal (1 lvl ore), not 100 gold (4 lvl ore), so it is right after tutorial ends
Then we change other 13 quests, looking like this:
Don’t forget about Ctrl+C / Ctrl+V (you want to do that faster, don’t you?)
For example, first 3 quests should look like this:
I guess, you found out that there are no quest #1 “Share with friend” – we can add it by yourself:
Add right here (between 0 and 2 quests):
That code:
if(numCoalOwned() >= 20 && quest[1] == 0)
{
quest[1] = 1;
newNews(_(“You Completed The Quest”) + “: ” + _(“SHARE WITH FRIEND”), true);
}
Get:
Finally:
Road to El Dorado
To speed up the process, we cen use magic, if you understand what I am talking about
For that we are heading to that path:
\steamapps\common\MrMine\win-unpacked\resources\app
Open file drillmanagement.js with any text editor
Find section Logic for the drill
Add right here:
That code:
if(depth >= 10 && depth <= 300)
{
depth += 303;
}
Get:
From now, at a depth of 10 km (first 5 minutes of a gameplay) – underworld city will be unlocked
A little bit more magic
Now we change the values of the remaining 14 quests
Find line if(quest[15] == 0 && depth >= 303)
And change depth >= 303)
To numPainiteOwned() >= 1)
(Idk why developer decided to swap conditions)
This will complete 15th quest when you get just 1 painite, on such depth you’ll get it just immidiately
Then we change other 13 quests, looking like that:
For example of first 3 quests, you should see that:
Finally:
Related Posts:
- Mr.Mine: Automated Chest Grabbing (V.018)
- Mr.Mine: Automation Guide V0.4
- Mr.Mine: Everything You’ll Need to Know