Monday, 17 April 2023

How to properly skip code inside methods ? [FEW EXAMPLES]

Hey, if you're here you probably wondering what's inside some codes that have <void> and don't have any parameters or have some but the code always hided, RIGHT ? Well you're on the perfect tutorial to see what's going on behind those codes! First Example: Every Create functions you can do something that is called "No Operation." Here, GameController is calling CreateGameIntro, the function is pretty self explanatory! The game will just hide stuff into this function to create a game intro! How to mod this ? Well, if you know ARM codes (especially ARM32 codes) you'll just have to NOP BX LR that stuff -> HEX: 00 F0 20 E3 1E FF 2F E1 Second Example: Well, it's another example but different code, it is for updating the game, inside the code there is probably something to call the update and if you skip it, you will have no update! For the method you have 4 parameters: The method i use to force return the parameters is pretty simple HEX: 04 00 A0 E1 1E FF 2F E1 I hope you enjoyed the tutorial =)) There is many other examples to do with these two methods, but i let you find it and test everything you can actually test 😛 see ya, L808

from iOSGods RSS Feed https://ift.tt/t4kAe5r

No comments:

Post a Comment