ROM Hack Discussion Requesting Minecraft Dungeons Cheats

CaptSaveAHoe

Well-Known Member
OP
Newcomer
Joined
May 16, 2018
Messages
67
Trophies
0
Age
33
XP
412
Country
United States
I think we are all looking for cheats for this game. Anything will do like.....

1 Hit Kill
Inf Health
Inf Arrows
Inf Souls
Inf Gems
Inf Enchanting Points
Inf Lives
And anything else yall can think of.
 

Falo

Well-Known Member
Member
Joined
Jul 22, 2012
Messages
680
Trophies
2
XP
2,628
Country
Germany
Game uses json text files without checksum for the savegame, just mod your save with Notepad++, thats easier than making unreal engine cheats.

example modded currency:
Code:
    "currency": [
       {
           "count": 9999999,
           "type": "Emerald"
       }
   ],

example modded item:
Code:
       {
           "enchantments": [
               { "id": "Sharpness", level": 3 },
               { "id": "Stunning", "level": 0 },
               { "id": "Freezing", "level": 0 },
               { "id": "Rampaging", "level": 0 },
               { "id": "Thundering", "level": 3 },
               { "id": "Echo", "level": 0 }
           ],
           "equipmentSlot": "MeleeGear",
           "power": 600,
           "rarity": "Unique",
           "type": "Sickles_Unique2",
           "upgraded": false
       },

ingame:
2020052817084700-7031CCD4553F03F65910A5C7CAEC6066.jpg
 

SnaXe

Active Member
Newcomer
Joined
May 29, 2020
Messages
34
Trophies
0
Age
27
XP
112
Country
Australia
The files are pretty easy to understand, but I couldn't seem to fin the enchantment points, would someone mind highlighting what the line for those look like?
 

Falo

Well-Known Member
Member
Joined
Jul 22, 2012
Messages
680
Trophies
2
XP
2,628
Country
Germany
Enchantment points are automatically calculated from the entire inventory and your current level.
See my screenshot, i did mod some enchantments on items and i got negative points.
 

Flashpass

Active Member
Newcomer
Joined
Jan 8, 2018
Messages
35
Trophies
0
XP
183
Country
United States
is there a way to do this on the PC version of the game? When I edit the .dat files in notepad++ all I get is lines of NULL
 

Veroniica

Member
Newcomer
Joined
Dec 1, 2019
Messages
21
Trophies
0
XP
172
Country
Norway
Would be awesome if anyone could give me the id to add Heartstealer as the name itself is not enough to get the weapon added
 

TGG181

Active Member
Newcomer
Joined
Sep 17, 2019
Messages
27
Trophies
0
Age
27
XP
153
Country
United Kingdom
hi, i managed to edit most things apart from player level or player xp, i cant seem to find the code for this anywhere?
 

Veroniica

Member
Newcomer
Joined
Dec 1, 2019
Messages
21
Trophies
0
XP
172
Country
Norway
hi, i managed to edit most things apart from player level or player xp, i cant seem to find the code for this anywhere?
I've not tried to edit my xp, but I can see that the "xp" key is multiple places in the savefile, so try to set a value for them all. Regarding player lvl. There isn't a lvl system in the game, but power lvl which is based upon your items. So, if all your items are power 30, then your player lvl (power) is 30. So, simply raise the power of your equipments.
 
Last edited by Veroniica,

TGG181

Active Member
Newcomer
Joined
Sep 17, 2019
Messages
27
Trophies
0
Age
27
XP
153
Country
United Kingdom
I've not tried to edit my xp, but I can see that the "xp" key is multiple places in the savefile, so try to set a value for them all. Regarding player lvl. There isn't a lvl system in the game, but power lvl which is based upon your items. So, if all your items are power 30, then your player lvl (power) is 30. So, simply raise the power of your equipments.

i figured it out, there are 2 xp values, both must say the same amount in order to make a difference, i am now trying to find the item codes for the different equipment, trying to hack the fox armor in without much luck. although modding the actual values of the armor and weapons is really very easy.

edit- as for the level system, it appears there is, as as soon as i modded both xp values my character went from level 4 to level 183, where my power levels stayed the same.
 
Last edited by TGG181,

sourSEVN

New Member
Newbie
Joined
May 15, 2020
Messages
4
Trophies
0
Age
27
XP
52
Country
United Kingdom
hi, i managed to edit most things apart from player level or player xp, i cant seem to find the code for this anywhere?
Search for {"hintType":"Merchants_Interact"}],"version":1,"xp" in your file, there's two numbers after that, I just added a 1 to the front end of the number and it boosted my XP, got loads of enchantment points now.
 

Veroniica

Member
Newcomer
Joined
Dec 1, 2019
Messages
21
Trophies
0
XP
172
Country
Norway
i am now trying to find the item codes for the different equipment, trying to hack the fox armor in without much luck.
Here is fox armor:
Code:
"inventoryIndex":0,"power":1.0,"rarity":"Unique","type":"WolfArmor_Unique1","upgraded":false}

I've not verified if one have to add the item to the itemsFound list as well or if it get's automatically added

Here are all the items I've found so far:
Code:
"itemsFound":["FireworksArrowItem","FishingRod","Axe","Sword","Bow","TastyBone","ArchersStrappings","WolfArmor","Crossbow","HeavyCrossbow","Glaive","EvocationRobe","Daggers","ScatterCrossbow","Cutlass","HuntingBow","Harvester","Daggers_Unique1","TotemOfRegeneration","Sickles","MercenaryArmor","Longbow","RapidCrossbow","SpelunkersArmor_Unique1","Pickaxe_Unique1","Pickaxe","Longbow_Unique2","Trickbow_Unique1","SpelunkersArmor","ScaleMail","RapidCrossbow_Unique1","ArchersStrappings_Unique1","HuntingBow_Unique1","HuntingBow_Unique2","Trickbow","ScaleMail_Unique1","Bow_Unique2","Longbow_Unique1","Sickles_Unique2","Trickbow_Unique2","MercenaryArmor_Unique1","EvocationRobe_Unique1","Cutlass_Unique2","Crossbow_Unique2","Bow_Unique1","WolfArmor_Unique1"]
 
Last edited by Veroniica,

Falo

Well-Known Member
Member
Joined
Jul 22, 2012
Messages
680
Trophies
2
XP
2,628
Country
Germany
is there a way to do this on the PC version of the game? When I edit the .dat files in notepad++ all I get is lines of NULL

Depends on what the PC Version is doing, this is unreal engine and very often the pc saves are encrypted or in other strange serialized formats, i would need a save from the pc version to check that.

About certain items and other values, here a full english textdump:
https://pastebin.com/0abK1hR4
dumped from "Dungeons/Content/Localization/Game/en/Game.locres"
useful namespaces: Enchantment, ItemPowerEffect, ItemType
 

Veroniica

Member
Newcomer
Joined
Dec 1, 2019
Messages
21
Trophies
0
XP
172
Country
Norway
Thx for posting the list, Falo! So happy to find that Heartstealer is simply Claymore_Unique1, Whirlwind is DoubleAxe_Unique1 etc. :)
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • Sicklyboy @ Sicklyboy:
    It is nice and loud and thunder and lightning stormy outside, love it
    +1
  • Sicklyboy @ Sicklyboy:
    Can't wait for the inevitable power outage where it's initially funny because I have half of my apartment on UPSes, then I realize I have literal minutes to start shutting down all of my servers.
  • BigOnYa @ BigOnYa:
    You must be north of me, Im in Ohio.. It been storming on off all day here, coming from the north
  • Sicklyboy @ Sicklyboy:
    just barely maybe, more so just dead east.
    I'm in NJ
    +1
  • BigOnYa @ BigOnYa:
    Is weird looking at the radar, it is making a circle
  • Morganna @ Morganna:
    @BigOnYa well, starting with, idk which emulator should i use for switch, i got a gtx 1650, do you know which one would it better for my pc?
  • BigOnYa @ BigOnYa:
    The switch emulators on pc rely on your CPU mostly, and they only use a single core, so GPU not as important as a good CPU. I don't use switch emulator, but many here do, and willing to help.
  • BigOnYa @ BigOnYa:
    @K3Nv2 do you want to chime in, don't you use yuzu or ryujinx? Which do you prefer?
  • BigOnYa @ BigOnYa:
    @Morganna I'd say try them both, and see which work better for your setup, good luck, and have fun!
  • Morganna @ Morganna:
    i tried just yuzu so far, not even played, just open the game to see if it run
    +1
  • Morganna @ Morganna:
    By the way, is there any website you recommend to search for some roms?
  • BigOnYa @ BigOnYa:
    No you are not allowed to discuss them here, against the rules of the site. Sorry. But you can Google Nintendo NSP and there will be a few listed.
  • Morganna @ Morganna:
    @BigOnYa that was actually very helpful, thank you very much
    +1
  • BigOnYa @ BigOnYa:
    Game on!
  • K3Nv2 @ K3Nv2:
    Actually looking forward to that new m&ms song Friday
  • DTApple @ DTApple:
    Water is the Wii Startup Disc of the soul.
  • BigOnYa @ BigOnYa:
    I won't listen till they bring back the purple ones
  • K3Nv2 @ K3Nv2:
    For every Nintendo question that gets asked I'll post a Taylor swift song in return
    +1
  • BigOnYa @ BigOnYa:
    Whatever happened to D12?
  • K3Nv2 @ K3Nv2:
    Split after their friends death but still friends
    +1
  • BakerMan @ BakerMan:
    still waiting on my salsa lmao
    em you lied to us
  • BigOnYa @ BigOnYa:
    I remb that song, i just never knew that was what he was talking bout.
  • a_username_that_is_cool @ a_username_that_is_cool:
    the backwards d looks so weird
  • a_username_that_is_cool @ a_username_that_is_cool:
    like :D or D: is nowhere near as odd as ꓷ:
    a_username_that_is_cool @ a_username_that_is_cool: like :D or D: is nowhere near as odd as ꓷ: