Utsu-Odin wrote: ↑Tue Jan 30, 2024 9:50 am
With these do we know if there may be a way to edit Equipment into the game? The tables let you choose the gear but it doesn't add it into the game. I have tried a few methods looking through memory regions and even editing the JSON of the save file but that just corrupts it...
Editing the json works just fine, you're probably trying to put equipment into the Items (consumables) section.
Equip has it's own section, search the json for
m_equip_stock: this is the start of the equipment section. There are no quantity digits for gear, if you want more than one, you put the same thing in twice.
I'll do you a favor, this is what a single equipment entry looks like
{".ver":3,"b":false,"i":0,"m_exp":0,"m_level":0,"m_skill_list":[{"puid":0},{"puid":0},{"puid":0}],"p":0}]},
Change the "i" to the ID number of the item you want. If it's a weapon and you want to have it at +50 (max), edit 'm_level' to 50. Leave the other puid's at 0 unless you want to add passive skills, which you need to know the numbers for. These are usually populated by Brands, do this in game, don't just edit it if you don't know it, leave it at 0.
For example, this is a fully upgraded Royal Prima Choker with 3x Brands:
{".ver":3,"b":false,"i":826,"m_exp":2400,"m_level":50,"m_skill_list":[{"puid":2012},{"puid":2036},{"puid":2044}],
I can't stress enough, because the save file is one very very crazy long line (yes, turn off word wrap and you'll see it's ONE LINE)... make sure you don't miss commas or have extra spaces. Use Notepad++ for editing for your own sanity.