Jump to content

Minion Rush Superman gravity new version 12.3.0 offset +1


5 posts in this topic

Recommended Posts

Posted

I am in very beginning stages on this of learning. I admit this is untested, but it should work. Furthermore, I fed a bunch of data from the assembly code on IDA and functions to AI. I spent the last 2-3 days total of 3 to 4 hours. Feeding it data and pretty sure this should work, this game is now made with unity framework. The other thing is I have no jailbroken device to test this, but this should work.

PS: just trying to contribute :)
yes these are real offsets 😃

 Minion Rush Superman Mod: Fly Over the Course

 *Minion Rush: Running Game* version 12.3.0 (iOS, [App Store](https://apps.apple.com/us/app/minion-rush-running-game/id596402997)), 
 

Why Patch at the Function Start

Hidden Content

Reply to this topic to see the hidden content & download link. 👀
?
The goal is to replicate the old mod, which set `S0 = 30.0` and returned immediately to apply a strong upward velocity every frame. In the new function (`sub_3B407E8`), the gravity factor (stored at `[X19,#0x1C]`) normally becomes negative to pull the Minion downward. Patching at the function’s start ensures we:
- Override all complex gravity calculations (e.g., clamps at `-1.0` or time scaling) to set `[X19,#0x1C] = 30.0` for consistent upward movement.
- Mimic the old mod’s simplicity, avoiding interference from branches or null checks.
- Maintain stability by jumping to the function’s epilogue

Hidden Content

Reply to this topic to see the hidden content & download link. 👀
which restores the stack and registers, preventing crashes.
- Achieve the Superman effect: the Minion flies upward continuously, likely triggered by a jump, soaring over obstacles and the course.

 

## Original Assembly and Offsets
The original instructions at the start of `

Hidden Content

Reply to this topic to see the hidden content & download link. 👀
12 bytes) set up the stack and save registers:
```arm

Hidden Content

Reply to this topic to see the hidden content & download link. 👀

Patched Assembly and Offsets

We replace these with instructions to set the gravity factor to 30.0 and jump to the epilogue for safe cleanup:

Hidden Content

Reply to this topic to see the hidden content & download link. 👀

 

  • Like 1
  • Thanks 1
  • Informative 1
Posted
On 10/14/2025 at 11:21 AM, Taylor Meyer said:

Thank you if I find more stuff ill edit the post for the new code

Nice one. Keep it up!

×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines