-
Posts
323 -
Joined
-
Last visited
Everything posted by Sterling0x1
-
Solved Mobius Final Fantasy
Sterling0x1 replied to maplestoryteller's topic in Filled iOS App Requests
https://iosgods.com/topic/33726-mobius-final-fantasy-english-ver-10101-2/ //filled -
Changlelog: Build -3: Official Release Build -10: Added Skill hack Build -12: Added No Break Recover hack Build -17: Fixed 1 Hit Kill (Never miss again) and added No Enemy Turn Build -20: Added extra switch for no enemy turn and added a fix for healing death when 1 hit kill enabled. Update 1.1.100: removed 4 features due to high ban risk. Update 1.1.101 Features: -Instant Break Enemy -1 Hit Kill (fixed) -No Enemy Turn -Skills Always Available -Enemies don't recover from Break State In case this hack doesn`t work on your device try any of these: -Make sure your device is a 64 bit device -Switch the hacks off and back on -Have Preference Loader installed -Make sure your binary is not lipoed, since this is an original 64bit hack -Delete all existing hacks to this game, and reinstall the game Download: Rest in peace. Hacked By Sterling Archer Productions
-
Solved Mobius Final Fantasy
Sterling0x1 replied to maplestoryteller's topic in Filled iOS App Requests
i got 1hit kill and instant break -
Also note that apple changed application folder location (im on 9.3.3) thats why it wont show any apps.
-
A Thanks well wasted.... can you ppl be more original maybe?
-
Hack [Free] Soul Seeker v1.5.1 +2 Cheats
Sterling0x1 replied to Mayaxaya's topic in Free Jailbreak Cheats
One more approved post to change username. Sorry for spamming your topic. -
Help/Support Flex Cracked Server has disappeared?
Sterling0x1 replied to Imagreed's topic in Help & Support
Rip -
Nice job
-
Careful before DiDA locks this topic too
-
Tweak Hack Pocket MapleStory - VER. 1.0.6 +7
Sterling0x1 replied to Sterling0x1's topic in Free Jailbreak Cheats
Updated the link, made it to a tweak. uninstall the patcher and use the tweak until i fix it. -
Tweak Hack Pocket MapleStory - VER. 1.0.6 +7
Sterling0x1 replied to Sterling0x1's topic in Free Jailbreak Cheats
iOS9 seem to be the issue. I will make it a tweak later on today/tonight , I'm off to sleep now -
Tweak Hack Pocket MapleStory - VER. 1.0.6 +7
Sterling0x1 replied to Sterling0x1's topic in Free Jailbreak Cheats
It works fine for me -
Tweak Hack Pocket MapleStory - VER. 1.0.6 +7
Sterling0x1 replied to Sterling0x1's topic in Free Jailbreak Cheats
Updated the link, download it and give me a feedback please. -
Tweak Hack Pocket MapleStory - VER. 1.0.6 +7
Sterling0x1 replied to Sterling0x1's topic in Free Jailbreak Cheats
Thanks but I don't accept donations If you really want to help someone, you can send that money to some hungry children charity. No child should starve! -
Tweak Hack Pocket MapleStory - VER. 1.0.6 +7
Sterling0x1 replied to Sterling0x1's topic in Free Jailbreak Cheats
Updated to 1.0.6 + made it into patcher. Enjoy -
Tweak Hack Pocket MapleStory - VER. 1.0.6 +7
Sterling0x1 replied to Sterling0x1's topic in Free Jailbreak Cheats
I will update it and make it patcher tonight. -
Thanks DiDA i'll read it through when im back home.
-
Integer was my first attempt, caused crash too. FlexConverter copied it as float. I actually found another way, so its not necessary anymore, however, if anyone knows why it causes crash, feel free to let me know, for future reference
-
I`m trying to make a flex patch into a tweak. Flex patch works like a charm, however, (id) seems to make the app crashing. I tried both manually using some templates found here and also with the FlexConverter. Both failed. Tried both Float and Integer. %hook DashboardViewController -(id) daysRemaining { return [NSNumber numberWithFloat: 999.0]; } %end %hook AccountViewController -(id) daysRemaining { return [NSNumber numberWithFloat: 999.0]; } %end %hook AccountViewController -(void) setDaysRemaining:(id)arg1 { arg1 = [NSNumber numberWithFloat: 999.0]; return %orig; } %end