Mod articles
-
Changing Character Gender in Save Files
Changing Character Gender in Save Files
I've thrown together a simple tool to help players change their character's gender in Rune Factory 4 Special. This guide explains both the simple usage and technical implementation details.
Quick Start Guide
Download the rf4_save_fixer.py script from here: https://gist.github.com/8f00ff/754eb2f2f0f290e794f435801a464fa6
Open a terminal/command prompt
Run the script:python rf4_save_fixer.py gender rf4_s01.sav -s rf4_sys.sav female
Note: The system save (rf4_sys.sav) is optional since the game automatically updates it when you save in-game.
Technical Details
The gender system uses two save files:
1. Player Save File (rf4_s01.sav to rf4_s20.sav)
... -
Technical Specs for Everyone is Bi Mod
Technical Specs for "Everyone is Bi" Mod
This document outlines the custom assembly modifications made to RF4S.exe to unlock same-sex relationships in Rune Factory 4 Special. Below is a breakdown of the modified code sections, what they do, and why they were implemented this way.
Custom Logic for Friendship Menu Icons
RF4S.exe+227380 - 0FB7 C1 - movzx eax,cx
RF4S.exe+227383 - 83 F8 01 - cmp eax,01 { 1 }
RF4S.exe+227386 - 74 3A - je RF4S.exe+2273C2
RF4S.exe+227388 - 83 F8 02 - cmp eax,02 { 2 }
RF4S.exe+22738B - 74 35 - je RF4S.exe+2273C2
RF4S.exe+22738D - 83 F8 04 - cmp eax,04 { 4 }
RF4S.exe+227390 - 74 30 - je RF4S.e...