Jump to content

MSHOOKING AND FLEX HELP!


Go to solution Solved by AxCE,

53 posts in this topic

Recommended Posts

Posted
  On 10/19/2016 at 8:50 PM, shmoo said:

get the hole coordinates from another method, store them in variables, and call Set(float32,float32) with those variables.

for example:

float32 x = 0.0f;
float32 y = 0.0f;

//this is a method that I think is in the game, or something like it
- (void)getCoordinates:(b2Vec2)arg0 {
//somehow get x and y of arg0, I assume it would be like arg0[1][0] for x and arg0[0][1] for y but I honestly have no clue, but lets say I do have them and x has a value of -10.0f and y has a value of 20.0f

x = arg0[1][0];
y = arg0[0][1];
}

//then

- (void)player:(id)arg0 hitLaserSprite:(id)arg1 atPoint:(b2Vec2)arg2 {
//these are made up by me but it would be something like that
arg2.setX(x);
arg2.setY(y);
}

Did your mc5 aimbot have a similar method but with IDA? Or it's different?

  On 10/19/2016 at 8:57 PM, Crypto said:

Did your mc5 aimbot have a similar method but with IDA? Or it's different?

This would make a nice tutorial if anyone knew how to exactly use this method :)

Posted
  On 10/19/2016 at 8:50 PM, shmoo said:

get the hole coordinates from another method, store them in variables, and call Set(float32,float32) with those variables.

for example:

float32 x = 0.0f;
float32 y = 0.0f;

//this is a method that I think is in the game, or something like it
- (void)getCoordinates:(b2Vec2)arg0 {
//somehow get x and y of arg0, I assume it would be like arg0[1][0] for x and arg0[0][1] for y but I honestly have no clue, but lets say I do have them and x has a value of -10.0f and y has a value of 20.0f

x = arg0[1][0];
y = arg0[0][1];
}

//then

- (void)player:(id)arg0 hitLaserSprite:(id)arg1 atPoint:(b2Vec2)arg2 {
//these are made up by me but it would be something like that
arg2.setX(x);
arg2.setY(y);
}

You gotta use LLDB. GDB sucks for watchpoints but is amazing for breakpoints. I dont use watchpoints anymore takes too much time anyway, but search for LLDB on here

Lldb not working with port. I try to reroute the port to port 23 but lldb doesn't let me in.

Posted
  On 10/19/2016 at 8:35 PM, shmoo said:

yes I'm guessing that the vector stores the x and y where the ball hit

Bruh, do you think im able to make an aimbot ? xD i just created a gravity field around the hole...
  On 10/19/2016 at 8:26 PM, Asianplus said:

Sure I just want to see what you did so I can use for in future. Thanks

Can I see ur tweak.xm if I could?

Sure,

#define PLIST_PATH @"/var/mobile/Library/Preferences/com.iosgods.fg2.plist"
 
inline bool GetPrefBool(NSString *key) {
return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue];
}

%hook UserDataManager
 
-(bool)isWorldUnlocked:(id)argument {
if(GetPrefBool(@"key1")) {
argument = NULL;
}
return %orig;
}

%end

%hook DalyChallenge

-(unsigned long long)remainingAttempts {       
if(GetPrefBool(@"key2")) {
return 999999;
}
return %orig;
}

%end

%hook LocalUserData
-(int)currentBux {
if(GetPrefBool(@"key3")) {
return 999999999;
}
return %orig;
}

%end

%hook GamePlayer

-(void)setShieldOn:(bool)argument {
if(GetPrefBool(@"key4")) {
argument = TRUE;
}
return %orig;
}


-(void)setGravityOn:(bool)argument {
if(GetPrefBool(@"key5")) {
argument = TRUE;
}
return %orig;
}

%end

%hook SandTrapSprite
 
-(void)setRectArray:(id)argument {
if(GetPrefBool(@"key6")) {
argument = NULL;
}
return %orig;
}

%end

%hook TrailCard
 
-(bool)isUnlocked {
if(GetPrefBool(@"key7")) {
return TRUE;
}
return %orig;
}

%end

%hook GolferCard
 
-(bool)isUnlocked {
if(GetPrefBool(@"key7")) {
return TRUE;
}
return %orig;
}

%end

%hook GravityFieldSprite

-(void)setWidth:(int)argument {
if(GetPrefBool(@"key8")) {
argument = 9999;
}
return %orig;
}



-(void)setHeight:(int)argument {
if(GetPrefBool(@"key8")) {
argument = 9999;
}
return %orig;
}


-(void)setStrength:(int)argument {
if(GetPrefBool(@"key8")) {
argument = -70;
}
return %orig;
}


-(void)setTintColor:(id)argument {
if(GetPrefBool(@"key8")) {
argument = NULL;
}
return %orig;
}

%end

%hook ShieldAnimation

-(void)setRadius:(int)argument {
if(GetPrefBool(@"key9")) {
argument = -70;
}
return %orig;
}

%end



/* Popup with a link 

Varieties of a UIAlertView Popup can be found here: http://iosgods.com/topic/13988-varieties-of-uialertview-types-to-use-in-your-tweaks-patchers/

*/


%hook AppDelegate // Change this with your Application's Delegate. AppController, UnityAppController, GameDelegate etc.

- (BOOL)application:(id)fp8 didFinishLaunchingWithOptions:(id)fp12 { // Popup only once at each launch of the app.
UIAlertView *igcredits = [[UIAlertView alloc] initWithTitle:@"FlappyGolf2 Cheats" 
                                                  message:@"\nFlappyGolf2 Cheats by AxCE for iOSGods.com"
                                                 delegate:self 
                                                                                cancelButtonTitle:@"Thanks" 
                                                                                otherButtonTitles:@"Visit Us", nil]; 
[igcredits show];
[igcredits release]; 
return %orig();
}
 
%new
-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
 
NSString *button = [alertView buttonTitleAtIndex:buttonIndex];
 
        if([button isEqualToString:@"Visit Us"])
        {
                [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://iosgods.com/"]];                                                                                
        }
}
%end 
Posted
  On 10/19/2016 at 8:59 PM, Asianplus said:

Lldb not working with port. I try to reroute the port to port 23 but lldb doesn't let me in.

Try a different port and @@AxCE no I do not

Posted
  On 10/20/2016 at 10:50 AM, shmoo said:

Try a different port and @@AxCE no I do not

Still not working

  On 10/20/2016 at 5:14 AM, AxCE said:

Bruh, do you think im able to make an aimbot ? xD i just created a gravity field around the hole...Sure,

#define PLIST_PATH @"/var/mobile/Library/Preferences/com.iosgods.fg2.plist"
 
inline bool GetPrefBool(NSString *key) {
return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue];
}

%hook UserDataManager
 
-(bool)isWorldUnlocked:(id)argument {
if(GetPrefBool(@"key1")) {
argument = NULL;
}
return %orig;
}

%end

%hook DalyChallenge

-(unsigned long long)remainingAttempts {       
if(GetPrefBool(@"key2")) {
return 999999;
}
return %orig;
}

%end

%hook LocalUserData
-(int)currentBux {
if(GetPrefBool(@"key3")) {
return 999999999;
}
return %orig;
}

%end

%hook GamePlayer

-(void)setShieldOn:(bool)argument {
if(GetPrefBool(@"key4")) {
argument = TRUE;
}
return %orig;
}


-(void)setGravityOn:(bool)argument {
if(GetPrefBool(@"key5")) {
argument = TRUE;
}
return %orig;
}

%end

%hook SandTrapSprite
 
-(void)setRectArray:(id)argument {
if(GetPrefBool(@"key6")) {
argument = NULL;
}
return %orig;
}

%end

%hook TrailCard
 
-(bool)isUnlocked {
if(GetPrefBool(@"key7")) {
return TRUE;
}
return %orig;
}

%end

%hook GolferCard
 
-(bool)isUnlocked {
if(GetPrefBool(@"key7")) {
return TRUE;
}
return %orig;
}

%end

%hook GravityFieldSprite

-(void)setWidth:(int)argument {
if(GetPrefBool(@"key8")) {
argument = 9999;
}
return %orig;
}



-(void)setHeight:(int)argument {
if(GetPrefBool(@"key8")) {
argument = 9999;
}
return %orig;
}


-(void)setStrength:(int)argument {
if(GetPrefBool(@"key8")) {
argument = -70;
}
return %orig;
}


-(void)setTintColor:(id)argument {
if(GetPrefBool(@"key8")) {
argument = NULL;
}
return %orig;
}

%end

%hook ShieldAnimation

-(void)setRadius:(int)argument {
if(GetPrefBool(@"key9")) {
argument = -70;
}
return %orig;
}

%end



/* Popup with a link 

Varieties of a UIAlertView Popup can be found here: http://iosgods.com/topic/13988-varieties-of-uialertview-types-to-use-in-your-tweaks-patchers/

*/


%hook AppDelegate // Change this with your Application's Delegate. AppController, UnityAppController, GameDelegate etc.

- (BOOL)application:(id)fp8 didFinishLaunchingWithOptions:(id)fp12 { // Popup only once at each launch of the app.
UIAlertView *igcredits = [[UIAlertView alloc] initWithTitle:@"FlappyGolf2 Cheats" 
                                                  message:@"\nFlappyGolf2 Cheats by AxCE for iOSGods.com"
                                                 delegate:self 
                                                                                cancelButtonTitle:@"Thanks" 
                                                                                otherButtonTitles:@"Visit Us", nil]; 
[igcredits show];
[igcredits release]; 
return %orig();
}
 
%new
-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
 
NSString *button = [alertView buttonTitleAtIndex:buttonIndex];
 
        if([button isEqualToString:@"Visit Us"])
        {
                [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://iosgods.com/"]];                                                                                
        }
}
%end 

Thanks man! I can use this for future reference.

Posted
  On 10/20/2016 at 12:28 PM, AxCE said:

No Problem.

So how would I add setShieldOn and setGravityOn in MY tweak.xm? Here's mine...

 

 

#include <UIKit/UIKit.h>

 

%hook UserDataManager

 

-(bool)isTrailUnlocked:(int)fp8 {

return TRUE;

fp8 = %orig;

 

}

 

-(bool)isCharacterUnlocked:(int)fp8 {

return TRUE;

fp8 = %orig;

 

}

 

 

-(bool)isHatUnlocked:(int)fp8 {

return TRUE;

fp8 = %orig;

 

}

 

 

-(bool)isPowerupUnlocked:(int)fp8 {

return TRUE;

fp8 = %orig;

 

}

 

 

-(bool)isWorldUnlocked:(int)fp8 {

return TRUE;

fp8 = %orig;

 

}

 

%end

 

%hook GamePlayer

 

-(void)setGravityOn:(bool)

 

-(void)setShieldOn:(bool)

 

%end

 

%hook AppDelegate

-(void)applicationDidBecomeActive:(id)argument {

UIAlertView *alert = [[uIAlertView alloc] initWithTitle:@"FlappyGolf2Hack" message:@"Hacked by Sunny Patel" delegate:nil cancelButtonTitle:@"Thanks" otherButtonTitles:nil];

[alert show];

[alert release];

}

%end

Posted
  On 10/20/2016 at 8:22 PM, Asianplus said:

So how would I add setShieldOn and setGravityOn in MY tweak.xm? Here's mine...

#include <UIKit/UIKit.h>

%hook UserDataManager

-(bool)isTrailUnlocked:(int)fp8 {

return TRUE;

fp8 = %orig;

}

-(bool)isCharacterUnlocked:(int)fp8 {

return TRUE;

fp8 = %orig;

}

-(bool)isHatUnlocked:(int)fp8 {

return TRUE;

fp8 = %orig;

}

-(bool)isPowerupUnlocked:(int)fp8 {

return TRUE;

fp8 = %orig;

}

-(bool)isWorldUnlocked:(int)fp8 {

return TRUE;

fp8 = %orig;

}

%end

%hook GamePlayer

-(void)setGravityOn:(bool)

-(void)setShieldOn:(bool)

%end

%hook AppDelegate

-(void)applicationDidBecomeActive:(id)argument {

UIAlertView *alert = [[uIAlertView alloc] initWithTitle:@"FlappyGolf2Hack" message:@"Hacked by Sunny Patel" delegate:nil cancelButtonTitle:@"Thanks" otherButtonTitles:nil];

[alert show];

[alert release];

}

%end

Why don't you have it like me, i mean why do you have fp8 n stuff?
Posted
  On 10/20/2016 at 8:39 PM, AxCE said:

Why don't you have it like me, i mean why do you have fp8 n stuff?

Sorry man I figured it out. I rewrote the code to look like yours and it was a big help man. I really appreciate it! Thanks

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Our picks

    • Monster Legends: Collect all Cheats v17.9.5 +8
      Modded/Hacked App: Monster Legends: Merge RPG By Socialpoint
      Bundle ID: es.socialpoint.MonsterCity
      iTunes Store Link: https://apps.apple.com/us/app/monster-legends-merge-rpg/id653508448?uo=4

       

      📌 Mod Requirements

      - Jailbroken iPhone or iPad.
      - iGameGod / Filza / iMazing.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak (from Cydia, Sileo or Zebra).

       

      🤩 Hack Features

      - 1 Hit Kill
      - Skip Enemy Turn
      - Multiply Attack
      - Multiply Defense
      - Insane Score (Always 3 Stars)
      - No Skill Cost
      - Auto Win
      - Auto Play Battle Enabled for All Maps


      🍏 For Non-Jailbroken & No Jailbreak required hacks: https://iosgods.com/topic/140543-monster-legends-collect-all-v1778-5-cheats-for-jailed-idevices/

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/176914-monster-legends-collect-all-cheats-v1779-8/
      • 337 replies
    • Simply Piano: Learn Piano Fast Modded v9.10.14 +1
      Modded/Hacked App: Simply Piano: Learn Piano Fast By Simply Ltd
      Bundle ID: com.joytunes.asla
      iTunes Store Link: https://apps.apple.com/us/app/simply-piano-learn-piano-fast/id1019442026?uo=4


      Hack Features:
      - PREMIUM
       

      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/topic/68652-simply-piano-v975-jailed-mod-1/


      Hack Download Link: https://iosgods.com/topic/83369-simply-piano-learn-piano-fast-modded-all-versions-1/
      • 1,540 replies
    • [ Chiikawa Pocket JP ] ちいかわぽけっと v1.2.0 Jailed Cheats +3
      Modded/Hacked App: ちいかわぽけっと By Applibot Inc.
      Bundle ID: jp.co.applibot.chiikawapocket
      iTunes Store Link: https://apps.apple.com/jp/app/%E3%81%A1%E3%81%84%E3%81%8B%E3%82%8F%E3%81%BD%E3%81%91%E3%81%A3%E3%81%A8/id6596745408?uo=4

       

      📌 Mod Requirements

      - Non-Jailbroken/Jailed or Jailbroken iPhone or iPad.
      - Sideloadly or alternatives.
      - Computer running Windows/macOS/Linux with iTunes installed.

       

      🤩 Hack Features

      - God Mode
      - Multiply Attack
      - Custom Speed (Customize before Login or Clear stage to get apply)

       

      ⬇️ iOS Hack Download IPA Link: https://iosgods.com/topic/194281-chiikawa-pocket-jp-%E3%81%A1%E3%81%84%E3%81%8B%E3%82%8F%E3%81%BD%E3%81%91%E3%81%A3%E3%81%A8-v1111-jailed-cheats-3/
      • 23 replies
    • Chiikawa Pocket Cheats v1.2.0 +3
      Modded/Hacked App: Chiikawa Pocket By Applibot Inc.
      Bundle ID: jp.co.applibot.chiikawapocketgl
      iTunes Store Link: https://apps.apple.com/us/app/chiikawa-pocket/id6740838442?uo=4

       

      📌 Mod Requirements

      - Jailbroken iPhone or iPad.
      - iGameGod / Filza / iMazing.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak (from Sileo, Cydia or Zebra).

       

      🤩 Hack Features

      - God Mode
      - Multiply Attack

       

      Non-Jailbroken Hack: https://iosgods.com/topic/193718-chiikawa-pocket-v111-jailed-cheats-2/

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/193717-chiikawa-pocket-cheats-v111-2/
      • 39 replies
    • Loot Heroes v1.6.2 +8 Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Loot Heroes: Fantasy RPG Games By BoomBit, Inc.
      Bundle ID: com.bbp.lootheroes
      iTunes Store Link: https://apps.apple.com/us/app/loot-heroes-fantasy-rpg-games/id6642699678?uo=4


      Hack Features:
      - Freeze Currencies
      - Unlimited Currencies [ VIP ]
      - God Mode -> Traps still cause damage.
      - One-Hit Kill
      - All Heroes Unlocked
      - Auto Win [ VIP ]
      - Battle Pass Unlocked [ VIP ]


      Jailbreak required hack(s): [Mod Menu Hack] Loot Heroes v1.1.5 +8 Cheats [ Unlimited Currencies + More ] - Free Jailbroken Cydia Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
      • 104 replies
    • Loot Heroes v1.6.3 +8 Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Loot Heroes By BoomBit, Inc.
      Bundle ID: com.bbp.lootheroes
      iTunes Store Link: https://apps.apple.com/us/app/loot-heroes/id6642699678?uo=4


      Hack Features:
      - Freeze Currencies
      - Unlimited Currencies [ VIP ]
      - God Mode -> Traps still cause damage.
      - One-Hit Kill
      - All Heroes Unlocked
      - Auto Win [ VIP ]
      - Battle Pass Unlocked [ VIP ]


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
      • 244 replies
    • The Seven Deadly Sins Cheats v2.79.0 +5
      Modded/Hacked App: The Seven Deadly Sins by Netmarble Corporation
      Bundle ID: com.netmarble.nanagb
      iTunes Store Link: https://apps.apple.com/us/app/the-seven-deadly-sins/id1475440231?uo=4&at=1010lce4


      Hack Features:
      - God Mode
      - OHK
      - Infinite MP


      iOS Hack Download Link: https://iosgods.com/topic/131686-arm64-the-seven-deadly-sins-cheats-v117-3/
      • 2,045 replies
    • My Heroes: Dungeon Raid v26.0.5.0 +3 Cheats
      Modded/Hacked App: My Heroes: Dungeon Raid By REALITY SQUARED GAME CO., LIMITED
      Bundle ID: com.rsg.heroes
      iTunes Store Link: https://apps.apple.com/us/app/my-heroes-dungeon-raid/id1604333529?uo=4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iGameGod / Filza / iMazing or any other file managers for iOS.
      - Cydia Substrate, Substitute or libhooker depending on your jailbreak.
      - PreferenceLoader (from Cydia, Sileo or Zebra).


      Hack Features:
      - x Dmg
      - x Def
      - Dumb Enemies


      Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/


      iOS Hack Download Link:

      Hidden Content
      Download Hack







      Installation Instructions:
      STEP 1: Download the .deb Cydia hack file from the link above. Use Safari/Google Chrome or other iOS browsers to download.
      STEP 2: Once the file has downloaded, tap on it and then you will be prompted on whether you want to open the deb with iGameGod or copy it to Filza.
      STEP 3: If necessary, tap on the downloaded file, and then, you will need to press 'Install' from the options on your screen.
      STEP 4: Let iGameGod/Filza finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 5: If the hack is a Mod Menu — which is usually the case nowadays — the cheat features can be toggled in-game. Some cheats have options that can be enabled from your iDevice settings.
      STEP 6: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game.

       

      NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue down below and we'll do our best to help! If the hack does work for you, please post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - AlyssaX64


      Cheat Video/Screenshots:

      N/A
      • 167 replies
    • [ Arknights KR ] 명일방주 Cheats v29.4.41 +8 - [ God Mode & More ]
      Modded/Hacked App: 명일방주 By YOSTAR (HONG KONG) LIMITED
      Bundle ID: com.YoStarKR.Arknights
      iTunes Store Link: https://apps.apple.com/kr/app/%EB%AA%85%EC%9D%BC%EB%B0%A9%EC%A3%BC/id1473903308?uo=4


      Hack Features:
      - God Mode
      - Frozen Enemies
      - One Hit Kill
      - Instant - Win
      - No Deploy Cost
      - Multiply Damage
      - Multiply Defense
      - Multiply Character Speed


      iOS Hack Download Link: https://iosgods.com/topic/164929-arknights-kr-%EB%AA%85%EC%9D%BC%EB%B0%A9%EC%A3%BC-cheats-v12001-8-god-mode-more/
      • 57 replies
    • ArKnights Japan - アークナイツ v29.4.41 - [ x Player Damage & More ]
      Modded/Hacked App: アークナイツ By Yostar, Inc.
      Bundle ID: com.YoStarJP.Arknights
      iTunes Store Link: https://apps.apple.com/jp/app/%E3%82%A2%E3%83%BC%E3%82%AF%E3%83%8A%E3%82%A4%E3%83%84/id1478990007?uo=4

       

      🔧 Mod Requirements

      - Jailbroken iPhone or iPad.
      - iGameGod / Filza / iMazing.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak (from Cydia, Sileo or Zebra).

       

      🚀 Hack Features

      - Multiply Attack
      - Multiply Defense
      - Multiply Attack Speed
      - God Mode
      - Instant Win
      - Enemy Auto Suicide
      - No Deploy Cost
      - Freeze Enemies


      🍏 For Non-Jailbroken & No Jailbreak required hacks: https://iosgods.com/topic/191639-arknights-japan-%E3%82%A2%E3%83%BC%E3%82%AF%E3%83%8A%E3%82%A4%E3%83%84-v27361-jailed-cheats-8/

       

      📥 iOS Hack Download Link: https://iosgods.com/topic/117823-arknights-japan-%E3%82%A2%E3%83%BC%E3%82%AF%E3%83%8A%E3%82%A4%E3%83%84-v27361-x-player-damage-more/
      • 216 replies
    • Arknights Cheats v29.4.41 +8 - [ God Mode & More ]
      Modded/Hacked App: Arknights By YOSTAR (HONG KONG) LIMITED
      Bundle ID: com.YoStarEN.Arknights
      iTunes Store Link: https://apps.apple.com/us/app/arknights/id1464872022?uo=4

       

      🔧 Mod Requirements

      - Jailbroken iPhone or iPad.
      - iGameGod / Filza / iMazing.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak (from Cydia, Sileo or Zebra).

       

      🚀 Hack Features

      - God Mode
      - Frozen Enemies
      - One Hit Kill
      - Instant - Win
      - No Deploy Cost
      - Multiply Damage
      - Multiply Defense
      - Multiply Character Speed


      🍏 For Non-Jailbroken & No Jailbreak required hacks: https://iosgods.com/topic/191668-arknights-v27361-jailed-cheats-8/

       

      📥 iOS Hack Download Link: https://iosgods.com/topic/117802-arknights-cheats-v27361-8-god-mode-more/
      • 1,062 replies
    • Solo Leveling:Arise v1.2.65 Jailed Cheats +2
      Modded/Hacked App: Solo Leveling:Arise By Netmarble Corporation
      Bundle ID: com.netmarble.sololv
      iTunes Store Link: https://apps.apple.com/us/app/solo-leveling-arise/id1662742277?uo=4


      Mod Requirements:
      - Non-Jailbroken/Jailed or Jailbroken iPhone/iPad/iPod Touch.
      - Sideloadly / Cydia Impactor or alternatives.
      - A Computer Running Windows/macOS/Linux with iTunes installed.


      Hack Features:
      - Immunte to Physical Damage
      - Multiply Attack



      iOS Hack Download IPA Link: https://iosgods.com/topic/184739-solo-levelingarise-v1265-jailed-cheats-2/
      • 356 replies
×
  • 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