-
Posts
213 -
Joined
-
Last visited
Everything posted by Redddy
-
possible open source?
-
IOS-Obfuscation | Protect strings, numbers, offsets from reverse engineering
Redddy replied to Batch 's topic in Coding Center
and if ppl manage to RE it? -
What are you finding to change things as metadata.cs?
-
Is it just me or just calling initialize crashes my game? IL2CPP::Initialize(true, 60, binaryPath.UTF8String);
-
whats that ida plugin?
-
MSHook basically replacing a function with your own function. lets say there is an offset called DefaultFOV(float value) and it's offset is 0x10123456 Using MSHOOK (jb only) We wanna start with replacing the function with our own. bool changefov; old_DefaultFOV(float); DefaultFOV(float value) { if (changefov) { value = 120 } return old_DefaultFOV(float) } If changefov is true, then return the value to 120 else return the old value from old_DefaultFOV. Then you need to hook the function via MSHookFunction(0x10123456, DefaultFOV, old_DefaultFOV) (DefaultFOV is the function youll be changing and old_DefaultFOV is the old function) You can call MSHookFunction when you load your menu or something. Hopefully this can clear some foggy understanding.
-
ganger
-
well first off dont touch anything from the template
-
Help/Support Sideloadly Cant Download Local Anisette After V.0.5 update
Redddy replied to Redddy's topic in Help & Support
V.0.50.1 Still didnt fix any errors about not being able to access iTunesCore.dll -
Help/Support Sideloadly Cant Download Local Anisette After V.0.5 update
Redddy replied to Redddy's topic in Help & Support
Nope. Even signed in and didnt work. For some reason its giving me this error. I have the Windows (Not store) iTunes and iCloud both signed in. -
Help/Support Sideloadly Cant Download Local Anisette After V.0.5 update
Redddy replied to Redddy's topic in Help & Support
With V0.5 or the new update that was released. I got this message instead when using remote "Remote Anisette is not available for you; iTunes Anisette not available; Remote Anisette is not available for you; Cannot continue!" -
Help/Support About MSHookFunction/Hook on JIT/Jailed support!
Redddy replied to 34306's topic in Help & Support
Is there a way I can replicate your doobyhook function and test it on my own time? also how did you find offsets to hook onto genshin? isnt it encrypted that you cant even dump it? -
Stumble Guys - Dumped Functions [ Skins, Emotes etc. ]
Redddy replied to Puddin's topic in Coding Center
crazy balls -
Got an issue with enabling jit on iOS 17 Image
-
its not wrong to ask lmfao if anything i thought it was visual
-
so more than 16 people can join? or is this only on ur side and you can join maxed lobby?
-
why do you need thee pure ipa? if you dont want mods just install the normal app from appstore?
-
lmfao this is old
-
working still?
-
pid? used for ios as well?