Post: Disgaea 5 Item Modding
08-12-2017, 04:22 AM #1
(adsbygoogle = window.adsbygoogle || []).push({}); Disgaea 5 Item Modding:
(Note: This is still a work in progress, there are a few things missing...)
This guide has only been tested on US saves.



Hey all! For those of you who don't know me, I'm MakaiKing0, the King of Disgaea. I'm the guy who made the tutorials for item modding for the Disgaea 3, 4 & D2 games on the PS3 Game Genie forums. And you guessed it, I'm back with the tutorial on Disgaea 5 Item Modding. So without further delay....

The first thing you should be aware of is there are a couple of major differences from previous Disgaea saves, which I will mention as we go.

Let's get started with the full item image.
Note that because of the item offset, every other item will be slightly different in appearance than this first item. But if you use the item offset you will find the code you need. That offset for Disgaea 5 Item Bag items is: 0x258 -> This is a Hex value by the way. So you would add it to the hex value of the code location and that will give you the next item's value. An easy equation to find the correct item code would be: Code + ( Item Position * 258 )
You must login or register to view this content.

This is the first item in the character's inventory. As you can see the item save layout is roughly the same as previous Disgaea saves.


Item Innocents:
You must login or register to view this content.
The first section of code deals with the Innocents currently on the item. The very first position, in orange, is the innocent's type. There will be tables with the type codes posted below. The second two positions are the innocent's current level, in green, and the innocent's current maximum level, in blue. This is one of those major differences I was talking about. Due to the new Innocent Farm feature and how innocents work in Disgaea 5, there are now two level values for Innocents. How this works is: the innocent's level will be whatever the current level is, multiplied by 2 if the innocent is subdued, but never higher than the innocent's current max level. So if you want a level 900 Statistician, either the current and max level must be 900, or the current level must be 450-900, the max level 900 and the subdued value set to 1. Which brings us to the last position, the subdued boolean, in red. This will be either 00 for unsubdued or 01 for subdued.

This is also as good a place as any to mention the second major difference. As you can see by the innocent's level value, this first innocent is level 1, but the hex value is 01 00. This is because the values are backwards. For example, say you want a level 9999 something, instead of it being in the order 27 0F, it would actually be 0F 27. Basically the bytes are backwards throughout the save file for all values larger than 1 byte.

Quick Mode Cheats:
You must login or register to view this content.


Item Stats:
You must login or register to view this content.
This next section of code deals with the item's stat values. The area surrounded by a thick black border is the item's total stats. You can leave this area alone because the game will auto-calculate it. The second section of code surrounded by a gold border is the item's current base stats. These are the ones you want to modify. As you can see they go in standard status screen order: HP, SP, ATK, DEF, INT, RES, HIT & SPD. There is however a trick to item stats. An item has a maximum value for all it's stats which the game will, again auto-calculate, and it will not allow the item to go over these maximum values. So don't bother trying to make an item with 999,999,999,999 HP or ATK, it wont work! As with the game's standard item leveling process, any values entered into the stats fields will be subject to the same rules. That means with a regular item at level 0 with a rarity of 0, the maximum HP value will be ~20,000,000 and all other stats will be ~99,999. And an item at level 9999 with a rarity of 100, the maximum HP value will be ~280,000,000 and all other stats will be ~1,419,984.

Quick Mode Cheats:
You must login or register to view this content.

Other Item Values:
You must login or register to view this content.
There a 3 lines of interest here.

On the first line we have 3 positions of note. The first position, in blue, is the item's type. This is the value for whether the item is a Rubber Glove or a Rusted Sword. (I will post the item type codes down below) The second position, in pink, is the item's level. The last position, in gold, is the item's graphic. This is the large graphic shown in the item menu and what you see in combat on their back. (I will post the item graphic codes down below)

On the second line we have 4 positions of note. The first position, in purple, is the item world level. I'm sure you all know how this works. The second position, in orange, is the item's counter number. I know, odd place considering where the other similar values are located. The third position, in pale, is the item's rarity value. This goes from 0-100. And the last position, in brown, is the icon the image shows in the inventory.

And finally on the third line we have 6 positions of note. The first position, in burnt red, is the item's maximum innocent population. This goes from 4-8. The second position, in blue, is the item's movement value. The third position, in gold, is the item's jump value. The fourth position, in dark brown, is the item's rank. As in the item Rank 1-40. (I will post the item ranks for each item down below. Note that Carnage level items have different ranks than normal items, this is how the system determines which item is Carnage level or not.) The fifth position, in green, is the item's range. I've tried modifying this but it always resets itself. And the last position, in an odd purple color, is the item's Critical chance modifier.

Note: I have yet to find the item's throw position.

Quick Mode Cheats:
You must login or register to view this content.

Innocent Values:
You must login or register to view this content.
You must login or register to view this content.
You must login or register to view this content.


Item Rank Codes:
You must login or register to view this content.


Item Type/Graphic Codes:
Coming soon....


I'll work on the Item type and graphic codes soon!
Enjoy!

Updates:
8/19/2017
- Updated the Innocent Lists
- Added Quick Mode cheats

8/16/2017
- Added the item rank list
- Added sub-section pictures

8/15/2017
- Made several changes to code descriptions
- Did a major remake of the tutorial!
- Updated post with full descriptions of codes (More to Come)
- Updated the main item images

8/12/2017
- Updated the list of Innocent codes
Last edited by MakaiKing0 ; 08-19-2017 at 09:54 PM.

The following 9 users say thank you to MakaiKing0 for this useful post:

Cloud, Demichaelas, Mago de Oz, miyuayu, NHJZ, Parzival3D, Sleepy_Samurai, Tiggerrn, traffydlaw
08-16-2017, 09:31 AM #20
vosszaa
Do a barrel roll!
Originally posted by E2Avenger View Post
First 100 items will have 99999999999999 stats for everything
424858C0 3B9AAC00
40640258 00000000
424858C8 000F423F
40640258 00000000
424858D0 000F423F
40640258 00000000
424858D8 000F423F
40640258 00000000
424858E0 000F423F
40640258 00000000
424858E8 000F423F
40640258 00000000
424858F0 000F423F
40640258 00000000
424858F8 000F423F
40640258 00000000
41485904 0000270F
40640258 00000000
4048591D 00000064
40640258 00000000


This code give ur item max stats


Can you post a stats screenshot of your character after equipping all 5 maxed stats gear?
08-16-2017, 10:56 AM #21
Originally posted by vosszaa View Post
Can you post a stats screenshot of your character after equipping all 5 maxed stats gear?
Here my max out attacker but I'll post another when I get off work todayYou must login or register to view this content.
08-16-2017, 03:12 PM #22
Cloud
Life Savior
Originally posted by E2Avenger View Post
Here my max out attacker but I'll post another when I get off work todayYou must login or register to view this content.


Can you upload your save with max out character and items please? cheers
08-16-2017, 09:21 PM #23
vosszaa
Do a barrel roll!
Originally posted by E2Avenger View Post
Here my max out attacker but I'll post another when I get off work todayYou must login or register to view this content.


No, I want to see to see the character stats, not item stats. Like this page You must login or register to view this content.
Last edited by vosszaa ; 08-16-2017 at 09:24 PM.
08-16-2017, 09:38 PM #24
Originally posted by vosszaa View Post
No, I want to see to see the character stats, not item stats. Like this page You must login or register to view this content.
This is what the character stars looking like just need to give her another and reincarnate her You must login or register to view this content.
08-17-2017, 01:05 AM #25
vosszaa
Do a barrel roll!
Originally posted by E2Avenger View Post
This is what the character stars looking like just need to give her another and reincarnate her You must login or register to view this content.


Thanks for that. I just wanna use it as a reference thats all

Couple of questions
1. Sub weapon not stats cheat?
2. Have u done LoC Baal? Was it easy with these kind of stats?
08-17-2017, 01:55 AM #26
Originally posted by vosszaa View Post
Thanks for that. I just wanna use it as a reference thats all

Couple of questions
1. Sub weapon not stats cheat?
2. Have u done LoC Baal? Was it easy with these kind of stats?
Sub weapon not stat cheat??? What do u mean by that???

LoC Baal still difficult as hell but I think sumone posted on YouTube how to beat carnage Baal within a few turns I think
08-17-2017, 06:13 AM #27
vosszaa
Do a barrel roll!
Originally posted by E2Avenger View Post
Sub weapon not stat cheat??? What do u mean by that???

LoC Baal still difficult as hell but I think sumone posted on YouTube how to beat carnage Baal within a few turns I think


It's not level 9999?
08-17-2017, 08:51 AM #28
Originally posted by vosszaa View Post
It's not level 9999?
Yea its level 9999

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo