A REFramework native plugin (.dll) that lets you skip to the next chapter or restart from your last save at any time, directly from the in-game overlay.
- Skip to Next Chapter — jump forward without replaying completed content
- Restart from Last Save — reload the current chapter instantly
- Displays your current scene name in the UI
- Safe to add or remove without touching game files
- Download
ChapterSkip.dll - Place it in
<RE Requiem game dir>\reframework\plugins\ - Launch the game
- Open the REFramework overlay (
Insertby default) → find the RE9: Requiem — Chapter Skip window
Requires Visual Studio 2022 and the REFramework SDK headers in an include/ folder.
cl /std:c++20 /LD /O2 /EHsc /I"include" ChapterSkip.cpp /Fe:ChapterSkip.dll /link /DLL
Run this in an x64 Native Tools Command Prompt for VS 2022.
Uses app.SceneTransitionManager via the REFramework managed object API:
| Action | Method call |
|---|---|
| Skip to next chapter | requestMainGameJump(false) |
| Restart from last save | requestMainGameJump(true) |
- Skipping to the next chapter does not save your progress
- Buttons are disabled while a transition is already in progress
- No game files are modified
