ROM Hack Discussion Fire Emblem: Three Houses General Hacking

Ultimos54

Well-Known Member
OP
Member
Joined
Aug 27, 2018
Messages
1,270
Trophies
0
XP
3,479
Country
Australia
@BlackwingAngelx I would say keep cheats,just put a warning on the cheat,also if need be add more description to the cheats

--------------------- MERGED ---------------------------

@Falo keep up the good work man with the editor, cant wait for Beta V3.Any closer to the +1 to all stats,cos if thats figured out could make it +1/2/3/4 etc?
 

kazuki_chan8

Well-Known Member
Member
Joined
Mar 30, 2019
Messages
164
Trophies
0
Age
35
XP
209
Country
Malaysia
just for clarification:

Do these exp cheats set the experience of the characters to the amount set by the cheat? (example a character who has already 1345 Experience will ll be set to 100 experience when using the cheat)

or

Do the amount set in the cheats are added as experience to the current experience level of characters? (example a character has already gained 2345 experience but will be given additional 100 because of the cheat?)
It set up as it is i think.
 

Falo

Well-Known Member
Member
Joined
Jul 22, 2012
Messages
680
Trophies
2
XP
2,627
Country
Germany
@Falo keep up the good work man with the editor, cant wait for Beta V3.Any closer to the +1 to all stats,cos if thats figured out could make it +1/2/3/4 etc?
Same as exp modifier, but that can be done easily in 2 ways
- layeredfs mod, the Character Database is FILE_00012.dat -> FILE_000.dat, easy to edit since it's uncompressed and no checksum
- memory edit,
Byleth (Male) is
Code:
00 00 80 BF 00 00 80 3F 00 00 80 3F 00 00 80 3F FF FF 00 00 00 00 00 00 00 00 00 15 01 63 01 FF 01 01
58 - MaxHP
60
00
2D - GrowthHP
00
1B - BaseHP
00
15 56 - Crest1/Crest2
14
AF AF - Height1 / Height2
00 00
0D 06 09 08 08 06 06 04 07 - BaseStats
2D 23 2D 2D 2D 23 1E 00 2D - GrowthStats
4D 37 42 42 42 37 37 63 63 - MaximumStats
00

this can be searched and edited in memory.
 

NextChallenger

Well-Known Member
Newcomer
Joined
Jul 23, 2019
Messages
61
Trophies
0
Location
the heart of battle.
XP
346
Country
United States
Im not too good at editing, is there a code anyone can make for the +1 to stats or like +2-+5?
right now the best solution for you is to use the Save File Editor to add the following items into your inventory:

1016 - Seraph Robe - +5 HP
1017 - Energy Drop - +2 Strength
1018 - Spirit Dust - +2 Magic
1019 - Secret Book - +2 Dexterity
1020 - Speedwing - +2 Speed
1021 - Goddess Icon - +4 Luck
1022 - Giant Shell - +2 Defense
1023 - Talisman - +2 Resistance
1024 - Black Pearl - +2 Charm
1025 - Shoes of the Wind - +1 Movement

Add 5 amount of each item, with 99 durability each, and you'll be good to go for the rest of the game
 
  • Like
Reactions: Tere Valentin

ianshen

Member
Newcomer
Joined
Jul 31, 2018
Messages
5
Trophies
0
Age
38
XP
60
Country
China
There is no regional version, FE:TH is region free, for the cheats, most likely you don't have the update installed.
For the save, maybe you are trying to load the wrong save ? The game has an auto-save feature.
About the missing items, can you send me the save?
Thanks man, I will try to update first to see if things go right.
For the save I thought it might be that I loaded the wrong save so I tried several times with different save slots but it all came out the same. I will just try the update first. If still not working I will upload the save file.
 

kazuki_chan8

Well-Known Member
Member
Joined
Mar 30, 2019
Messages
164
Trophies
0
Age
35
XP
209
Country
Malaysia
Same as exp modifier, but that can be done easily in 2 ways
- layeredfs mod, the Character Database is FILE_00012.dat -> FILE_000.dat, easy to edit since it's uncompressed and no checksum
- memory edit,
Byleth (Male) is
Code:
00 00 80 BF 00 00 80 3F 00 00 80 3F 00 00 80 3F FF FF 00 00 00 00 00 00 00 00 00 15 01 63 01 FF 01 01
58 - MaxHP
60
00
2D - GrowthHP
00
1B - BaseHP
00
15 56 - Crest1/Crest2
14
AF AF - Height1 / Height2
00 00
0D 06 09 08 08 06 06 04 07 - BaseStats
2D 23 2D 2D 2D 23 1E 00 2D - GrowthStats
4D 37 42 42 42 37 37 63 63 - MaximumStats
00

this can be searched and edited in memory.
Nice. Cant wait to try this.
 

kazuki_chan8

Well-Known Member
Member
Joined
Mar 30, 2019
Messages
164
Trophies
0
Age
35
XP
209
Country
Malaysia
Ok, one less on the todo list, real Exp Mod:

[1x EXP]
04000000 003BC418 0B010129
[2x EXP]
04000000 003BC418 0B010529
[4x EXP]
04000000 003BC418 0B010929
[8x EXP]
04000000 003BC418 0B010D29
[16x EXP]
04000000 003BC418 0B011129
[32x EXP]
04000000 003BC418 0B011529
This exp for character level up or level up weapon skills?
 
Last edited by kazuki_chan8,

Falo

Well-Known Member
Member
Joined
Jul 22, 2012
Messages
680
Trophies
2
XP
2,627
Country
Germany
This exp for level up or weapon skills?
Levelup exp, any action will be multiplied by x.

I'm still searching for the skill exp, but can't take much longer.
The code was easy to find after identifing that "main+0x19FD718" is the exp database loaded into memory.

Code:
A bit more info on the exp modifier:
.text:00000000003BC40C 69 5A 40 79                 LDRH            W9, [X19,#0x2C] //W9 = currentExp
.text:00000000003BC410 0A 05 00 51                 SUB             W10, W8, #1 //w10 = level
.text:00000000003BC414 5F 85 01 71                 CMP             W10, #0x61  //if (level - 1  <= 97)
.text:00000000003BC418 29 01 01 0B                 ADD             W9, W9, W1 //currentExp += exp
to mod changes the code into "ADD W9, W9, W1, LSL n" -> n = 1 - 5 (*2,*4,*8,*16,*32)
 

kazuki_chan8

Well-Known Member
Member
Joined
Mar 30, 2019
Messages
164
Trophies
0
Age
35
XP
209
Country
Malaysia
Levelup exp, any action will be multiplied by x.

I'm still searching for the skill exp, but can't take much longer.
The code was easy to find after identifing that "main+0x19FD718" is the exp database loaded into memory.

Code:
A bit more info on the exp modifier:
.text:00000000003BC40C 69 5A 40 79                 LDRH            W9, [X19,#0x2C] //W9 = currentExp
.text:00000000003BC410 0A 05 00 51                 SUB             W10, W8, #1 //w10 = level
.text:00000000003BC414 5F 85 01 71                 CMP             W10, #0x61  //if (level - 1  <= 97)
.text:00000000003BC418 29 01 01 0B                 ADD             W9, W9, W1 //currentExp += exp
to mod changes the code into "ADD W9, W9, W1, LSL n" -> n = 1 - 5 (*2,*4,*8,*16,*32)
Very nice. Awesome works so far.
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • RedColoredStars @ RedColoredStars:
    i dont know why tv manufactures put the hdmi ports in dumb locations so the cables have to stick out, and then down, putting strain on the ports. Instead of having the ports along the bottom edge of the tv facing downwards.
  • ZeroT21 @ ZeroT21:
    windows me was mostly on laptops if i remembered correctly
  • SylverReZ @ SylverReZ:
    @RedColoredStars, I hate that too where you have to use an HDMI extension for an Amazon Fire Stick.
    +1
  • RedColoredStars @ RedColoredStars:
    I had a desktop with ME on it.
  • SylverReZ @ SylverReZ:
    @ZeroT21, And also cheap-ass desktop PCs like eMachines.
  • RedColoredStars @ RedColoredStars:
    Worst MS OS in history. Period.
  • K3Nv2 @ K3Nv2:
    My entertainment centers blocking all my io gotta fix that eventually
  • ZeroT21 @ ZeroT21:
    I had used win 98 SE till XP arrived
  • SylverReZ @ SylverReZ:
    Had a ton of bugs and often crashed. It even didn't support DOS compatibility with older games. :feelsbadman:
  • SylverReZ @ SylverReZ:
    I only grew up with Windows XP because I was lucky.
  • RedColoredStars @ RedColoredStars:
    I downloaded XP on dialup when it came out. Overnights for like a week. cuz I couldn't tie up the phone line during the day. It was so awesome and worked so great going from ME to XP.
  • K3Nv2 @ K3Nv2:
    Vga pins were a dick
  • K3Nv2 @ K3Nv2:
    I kind of want down a large pizza at 10am then crash out
  • ZeroT21 @ ZeroT21:
    Having pizza all day? done it
  • K3Nv2 @ K3Nv2:
    Nah pizza hut open at 10:30
  • ZeroT21 @ ZeroT21:
    just buy a stack of pizza and keep the rest you don't need yet frozen
  • K3Nv2 @ K3Nv2:
    Or buy frozen pizza
  • ZeroT21 @ ZeroT21:
    I buy the regular kind, not the frozen stuff
  • ZeroT21 @ ZeroT21:
    supermarket pizza is ass
  • K3Nv2 @ K3Nv2:
    x65 would just yell at me
  • ZeroT21 @ ZeroT21:
    sounds ok, he didn't pull a gun out ,so...
  • K3Nv2 @ K3Nv2:
    $12 large any style pizza deal
  • K3Nv2 @ K3Nv2:
    Each bite is a $1 well spent
  • SylverReZ @ SylverReZ:
    @ZeroT21, Agreed. I hate oven pizza, only from pizza place.
    +1
  • K3Nv2 @ K3Nv2:
    Nah I can still go for totinos
    K3Nv2 @ K3Nv2: Nah I can still go for totinos