It's from github. Since I'm not allowed to post links, I'll just post some of the lines here.
#define digimon_addr (global_addr + 0x1FE18)
// Name (Utf16 string)(0x10): 0x0
// Species ID (u32): 0x14
// Current HP (u32): 0x20
// Max HP (u32): 0x24
// Current MP (u32): 0x28
// Max MP (u32): 0x2C
// Attack (u16): 0x30
// Defense (u16): 0x32
// Speed (u16): 0x34
// Brains (u16): 0x36
// Weight (u32): 0x38
// Nature (u8): 0x3C
// Lives (u8): 0x3D
// Happiness (float): 0x40
// Discipline (float): 0x44
// Poop/Corruption (u8): 0x48
// Sleep Timer (u32): 0x510
// Health Status (u8): 0x518
// Hunger Care Mistake Timer (u32): 0x51C
// Exhaustion (u8): 0x530
// Fullness (u8): 0x538
// isHungry Flag (u8): 0x539
// Care Mistakes (u32): 0x53C
// Battles (u32): 0x540
// Digested (u8): 0x548
// hasToPoop Flag (u8): 0x549
// Poop Timer (u32): 0x54C
// Poop Timer to Icon (u32): 0x550
// Lifetime (u32): 0x55C
// Evolution Timer (u32): 0x560
// Bitmask of learned skills (0x8): 0x69C
And this one
// Overwrites current HP amount with max HP value
void infHPBattleFunc(MenuEntry *entry)
{
static u32 maxHP_addr = digimon_addr + 0x24;
u32 maxHP;
u32 currentHP;
if (isInBattle())
{
if (!READ32(playerBattlePointer_addr, ptr_addr)) return;
if (!READ32(maxHP_addr, maxHP)) return;
if (!READ32(ptr_addr + 0x170, currentHP)) return;
if (currentHP < maxHP)
WRITE16(ptr_addr + 0x170, maxHP);
}
}
// Overwrites current MP amount with max MP value
void infMPBattleFunc(MenuEntry *entry)
{
static u32 maxMP_addr = digimon_addr + 0x2C;
u32 maxMP;
u32 currentMP;
if (isInBattle())
{
if (!READ32(playerBattlePointer_addr, ptr_addr)) return;
if (!READ32(maxMP_addr, maxMP)) return;
if (!READ32(ptr_addr + 0x178, currentMP)) return;
if (currentMP < maxMP)
WRITE16(ptr_addr + 0x178, maxMP);
}
}
// Sets SP amount to 100 to allow infinite Special move use
void infSPBattleFunc(MenuEntry *entry)
{
u8 currentSP;
if (isInBattle())
{
if (!READ32(playerBattlePointer_addr, ptr_addr)) return;
if (!READ8(ptr_addr + 0x1B0, currentSP)) return;
if (currentSP < 100)
WRITE8(ptr_addr + 0x1B0, 100);
I do want some cheats provided, but I just want to understand the simple ones because I couldn't figure out what is missing from my codes. Because I have a comprehension level of a toddler.
Just so I can read and understand better the flow of codes. And not just asking outright.
Post automatically merged:
I'd figure that you are prominent in these kind of stuff, since I found your username on translated version as one of the tournament participants. ☺
Hi, would you have a cheat code that increase movement speed? I would play the randomizer patched version, but since i dont have a pc i cant play at all and the speed of the character annoys me
can anyone help me use this cheat?
i use retroarch(steam) with citra core. all the training boost cheat DOESNT WORK.
what am i doing wrong???
help please
nvm, finally able to use the cheats
Maybe alternatively, a cheat that multiplies these stat gains by 10 or 20? That would work too, anything to help pass the most boring part of this game
It wasn't too long ago we saw our first glimpse of Courage Reborn, another Twilight Princess PC port in the works based on last year's decompilation efforts. With...
Seemingly out of nowhere a PC port for Pokemon Platinum has surfaced online, bundled alongside the source code for those interested in building and developing it for...
With very little in the way of announcement, Valve has today increased the price of the Steam Deck but some fairly considerable margins. Both of the available models...
As a part of their Financial Results Briefing for the previous year, Nintendo president Shuntaro Furukawa took to the floor to answer key questions around the Switch...
Earlier this year, Sony announced major price increases for the PS5, PS5 Pro, and PlayStation Portal. Now the company is raising prices again, this time for...
We are once again here to tell you about a game leaking before its release, but for once, it's not one published by Nintendo. The game files for Microsoft's upcoming...
Continuing with the great news of Pokémon Platinum getting a native unofficial PC port just a few days ago, today, yet another classic title from the franchise has...
The latest in a growing number of native PC ports, Paper Mario ReCut got its first pre-release build earlier this week. Based on the N64 recompilation toolchain, the...
When you talk about 3DS emulation, most people would jump to Citra. As the defacto choice since its first release it's seen tremendous success, and even after its...
A whole hour of PlayStation content is on the way, thanks to the latest State of Play showcase. Headlining the stream will be Marvel's Wolverine, alongside a...
With very little in the way of announcement, Valve has today increased the price of the Steam Deck but some fairly considerable margins. Both of the available models...
It wasn't too long ago we saw our first glimpse of Courage Reborn, another Twilight Princess PC port in the works based on last year's decompilation efforts. With...
Seemingly out of nowhere a PC port for Pokemon Platinum has surfaced online, bundled alongside the source code for those interested in building and developing it for...
Earlier this year, Sony announced major price increases for the PS5, PS5 Pro, and PlayStation Portal. Now the company is raising prices again, this time for...
With rumours circulating about a Nintendo Direct in the coming days and weeks, fans are left speculating and hoping as to what might be included. At the centre of all...
As a part of their Financial Results Briefing for the previous year, Nintendo president Shuntaro Furukawa took to the floor to answer key questions around the Switch...
The latest in a growing number of native PC ports, Paper Mario ReCut got its first pre-release build earlier this week. Based on the N64 recompilation toolchain, the...
A whole hour of PlayStation content is on the way, thanks to the latest State of Play showcase. Headlining the stream will be Marvel's Wolverine, alongside a...
For the first time in 13 years, the Call of Duty series will again return to Nintendo's consoles. Set to launch on the 23rd of October, the latest release, Modern...
With the latest entry to the Star Fox series being announced earlier this month, Nintendo have today shown off one of the features new to the game in the mouse...