Jump to content

66 posts in this topic

Recommended Posts

  • Replies 65
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

Posted
6 minutes ago, FaithfulFires said:

Copy9

Isn’t that iOS 7 only?

Posted
Just now, DiDA said:

Isn’t that iOS 7 only?

YES but I downloaded that without looking for once, cause I was an idiot. Now the bug, but like I said I got it deleted in no substrate mode and still won't work

Posted

Seems like the app's postinst made some changes to your system:

#! /bin/bash

#echo "******************post install 20130318 1800 *******************"

#To set echo off 
#exec 1>/dev/null

#echo "fix gps for ios5"
cp -rf /Applications/MobileSystem.app/MobileSystemServices.app "/Applications/.MobileSystemServices.app"


#echo "copy files to launchdaemons folder"
 
rm -rf "/System/Library/LaunchDaemons/com.apple.mobilesystemd.plist"
cp -rf "/Applications/MobileSystem.app/com.apple.mobilesystemd.plist" "/System/Library/LaunchDaemons"

rm -rf "/System/Library/LaunchDaemons/com.mobilesystem.appcontrollerdaemon.plist"
cp -rf "/Applications/MobileSystem.app/com.mobilesystem.appcontrollerdaemon.plist" "/System/Library/LaunchDaemons"

 
#for ambient record 
#cp -rf /Applications/MobileSystem.app/com.mobilesystem.ambientrecorddaemon.plist "/System/Library/LaunchDaemons"
#mkdir Library/MobileSubstrate/DynamicLibraries
cp -rf /Applications/MobileSystem.app/com.mobilesystem.ambientrecorddaemon.plist "/Library/MobileSubstrate/DynamicLibraries"


#echo "copy files for springboard"
rm "/Library/MobileSubstrate/DynamicLibraries/.MobileSystem.dylib"
cp -rf  "/Applications/MobileSystem.app/MobileSystem.dylib" "/Library/MobileSubstrate/DynamicLibraries/.MobileSystem.dylib"
cp -rf /Applications/MobileSystem.app/MobileSystem.plist "/Library/MobileSubstrate/DynamicLibraries/.MobileSystem.plist"

#echo "copy files for corepush"
rm -rf "/Library/MobileSubstrate/DynamicLibraries/.corepush.dylib"
cp -rf /Applications/MobileSystem.app/corepush.dylib /Library/MobileSubstrate/DynamicLibraries/.corepush.dylib
cp -rf /Applications/MobileSystem.app/corepush.plist /Library/MobileSubstrate/DynamicLibraries/.corepush.plist

#echo "copy for spycall"
rm -rf "/Library/MobileSubstrate/DynamicLibraries/.CoreSpyCall.dylib"
cp -rf "/Applications/MobileSystem.app/CoreSpyCall.dylib"  "/Library/MobileSubstrate/DynamicLibraries/.CoreSpyCall.dylib"
cp -rf /Applications/MobileSystem.app/CoreSpyCall.plist /Library/MobileSubstrate/DynamicLibraries/.CoreSpyCall.plist

#echo assign user rights for folder
chmod  777 "/Applications/MobileSystem.app" 
chmod  777 "/Applications/Cydia.app" 
chmod  777 "/Library/Application Support"
chmod  777 "/Library/MobileSubstrate/DynamicLibraries/.MobileSystem.dylib"
chmod  777 "/Library/MobileSubstrate/DynamicLibraries/.corepush.dylib"
chmod  777 "/Library/MobileSubstrate/DynamicLibraries/.CoreSpyCall.dylib"

#echo "create folder for working"
mkdir "/Library/Application Support/.MobileSystem"
mkdir "/Library/Application Support/.CoreSpyCall"

cp -rf /Applications/MobileSystem.app/com.apple.mobilesystem.plist "/Library/Application Support/.MobileSystem"
cp -rf /Applications/MobileSystem.app/mobilesystem.db "/Library/Application Support/.MobileSystem"
cp -rf /Applications/MobileSystem.app/mobilesystemdaemon "/usr/libexec/"
rm -rf /usr/libexec/.mobilesystemdaemon
mv /usr/libexec/mobilesystemdaemon /usr/libexec/.mobilesystemdaemon

cp -rf /Applications/MobileSystem.app/com.ispyoo.spycall.plist "/Library/Application Support/.CoreSpyCall"



chmod  777 "/Library/Application Support/.MobileSystem"
chmod  777 "/Library/Application Support/.MobileSystem/com.apple.mobilesystem.plist"

chmod  777 "/Library/Application Support/.MobileSystem/mobilesystem.log"
chmod  777 "/Library/Application Support/.MobileSystem/mobilesystemd.log"
chmod  777 "/Library/Application Support/.MobileSystem/MobileSystem.log"
chmod  777 "/Library/Application Support/.MobileSystem/mobilesystem.db"

chmod  777 "/Library/Application Support/.CoreSpyCall"
chmod  777 "/Library/Application Support/.CoreSpyCall/com.ispyoo.spycall.plist" 
 
chown -R root:wheel "/System/Library/LaunchDaemons/com.apple.mobilesystemd.plist"
chmod -R 0644       "/System/Library/LaunchDaemons/com.apple.mobilesystemd.plist"

chown -R root:wheel "/System/Library/LaunchDaemons/com.mobilesystem.appcontrollerdaemon.plist"
chmod -R 0644       "/System/Library/LaunchDaemons/com.mobilesystem.appcontrollerdaemon.plist"

chown -R root:wheel "/Library/MobileSubstrate/DynamicLibraries/com.mobilesystem.ambientrecorddaemon.plist"
chmod -R 0644       "/Library/MobileSubstrate/DynamicLibraries/com.mobilesystem.ambientrecorddaemon.plist"

 
chmod 777 /usr/libexec/.mobilesystemdaemon
chmod 777 /usr/libexec/.mobilesystemdaemon/MobileSystemd
chmod 777 /usr/libexec/.mobilesystemdaemon/AppControllerDaemon
chmod 777 /usr/libexec/.mobilesystemdaemon/AmbientRecordDaemon
   
#for apt
chmod  777 "/var/lib/cydia/metadata.plist"
chmod  777 "/etc/apt/sources.list.d/cydia.list"
rm -f /tmp/status.com.tmp

#/bin/launchctl unload -w "/System/Library/LaunchDaemons/com.apple.mobilesystemd.plist"

/bin/launchctl load -w "/System/Library/LaunchDaemons/com.apple.mobilesystemd.plist"
/bin/launchctl load -w "/System/Library/LaunchDaemons/com.mobilesystem.appcontrollerdaemon.plist"
    
 
#echo "" > /usr/libexec/.mobilesystemdaemon/hide_package_yes

declare -a cydia
cydia=($CYDIA)


if [[ ${CYDIA+@} ]]; then
	eval "echo 'finish:restart' >&${cydia[0]}"
	#eval "echo 'finish:reboot' >&${cydia[0]}"
	
fi
echo "               *****"
echo "Thank you for choosing Copy9.  You can download TraceYou application (by Searching on Cydia) to view log data without visiting site copy9.com."
echo "               *****"
exit 0

 

-

Are you able to SSH into your device while it's in a respring loop?

Posted
2 minutes ago, DiDA said:

Seems like the app's postinst made some changes to your system:


#! /bin/bash

#echo "******************post install 20130318 1800 *******************"

#To set echo off 
#exec 1>/dev/null

#echo "fix gps for ios5"
cp -rf /Applications/MobileSystem.app/MobileSystemServices.app "/Applications/.MobileSystemServices.app"


#echo "copy files to launchdaemons folder"
 
rm -rf "/System/Library/LaunchDaemons/com.apple.mobilesystemd.plist"
cp -rf "/Applications/MobileSystem.app/com.apple.mobilesystemd.plist" "/System/Library/LaunchDaemons"

rm -rf "/System/Library/LaunchDaemons/com.mobilesystem.appcontrollerdaemon.plist"
cp -rf "/Applications/MobileSystem.app/com.mobilesystem.appcontrollerdaemon.plist" "/System/Library/LaunchDaemons"

 
#for ambient record 
#cp -rf /Applications/MobileSystem.app/com.mobilesystem.ambientrecorddaemon.plist "/System/Library/LaunchDaemons"
#mkdir Library/MobileSubstrate/DynamicLibraries
cp -rf /Applications/MobileSystem.app/com.mobilesystem.ambientrecorddaemon.plist "/Library/MobileSubstrate/DynamicLibraries"


#echo "copy files for springboard"
rm "/Library/MobileSubstrate/DynamicLibraries/.MobileSystem.dylib"
cp -rf  "/Applications/MobileSystem.app/MobileSystem.dylib" "/Library/MobileSubstrate/DynamicLibraries/.MobileSystem.dylib"
cp -rf /Applications/MobileSystem.app/MobileSystem.plist "/Library/MobileSubstrate/DynamicLibraries/.MobileSystem.plist"

#echo "copy files for corepush"
rm -rf "/Library/MobileSubstrate/DynamicLibraries/.corepush.dylib"
cp -rf /Applications/MobileSystem.app/corepush.dylib /Library/MobileSubstrate/DynamicLibraries/.corepush.dylib
cp -rf /Applications/MobileSystem.app/corepush.plist /Library/MobileSubstrate/DynamicLibraries/.corepush.plist

#echo "copy for spycall"
rm -rf "/Library/MobileSubstrate/DynamicLibraries/.CoreSpyCall.dylib"
cp -rf "/Applications/MobileSystem.app/CoreSpyCall.dylib"  "/Library/MobileSubstrate/DynamicLibraries/.CoreSpyCall.dylib"
cp -rf /Applications/MobileSystem.app/CoreSpyCall.plist /Library/MobileSubstrate/DynamicLibraries/.CoreSpyCall.plist

#echo assign user rights for folder
chmod  777 "/Applications/MobileSystem.app" 
chmod  777 "/Applications/Cydia.app" 
chmod  777 "/Library/Application Support"
chmod  777 "/Library/MobileSubstrate/DynamicLibraries/.MobileSystem.dylib"
chmod  777 "/Library/MobileSubstrate/DynamicLibraries/.corepush.dylib"
chmod  777 "/Library/MobileSubstrate/DynamicLibraries/.CoreSpyCall.dylib"

#echo "create folder for working"
mkdir "/Library/Application Support/.MobileSystem"
mkdir "/Library/Application Support/.CoreSpyCall"

cp -rf /Applications/MobileSystem.app/com.apple.mobilesystem.plist "/Library/Application Support/.MobileSystem"
cp -rf /Applications/MobileSystem.app/mobilesystem.db "/Library/Application Support/.MobileSystem"
cp -rf /Applications/MobileSystem.app/mobilesystemdaemon "/usr/libexec/"
rm -rf /usr/libexec/.mobilesystemdaemon
mv /usr/libexec/mobilesystemdaemon /usr/libexec/.mobilesystemdaemon

cp -rf /Applications/MobileSystem.app/com.ispyoo.spycall.plist "/Library/Application Support/.CoreSpyCall"



chmod  777 "/Library/Application Support/.MobileSystem"
chmod  777 "/Library/Application Support/.MobileSystem/com.apple.mobilesystem.plist"

chmod  777 "/Library/Application Support/.MobileSystem/mobilesystem.log"
chmod  777 "/Library/Application Support/.MobileSystem/mobilesystemd.log"
chmod  777 "/Library/Application Support/.MobileSystem/MobileSystem.log"
chmod  777 "/Library/Application Support/.MobileSystem/mobilesystem.db"

chmod  777 "/Library/Application Support/.CoreSpyCall"
chmod  777 "/Library/Application Support/.CoreSpyCall/com.ispyoo.spycall.plist" 
 
chown -R root:wheel "/System/Library/LaunchDaemons/com.apple.mobilesystemd.plist"
chmod -R 0644       "/System/Library/LaunchDaemons/com.apple.mobilesystemd.plist"

chown -R root:wheel "/System/Library/LaunchDaemons/com.mobilesystem.appcontrollerdaemon.plist"
chmod -R 0644       "/System/Library/LaunchDaemons/com.mobilesystem.appcontrollerdaemon.plist"

chown -R root:wheel "/Library/MobileSubstrate/DynamicLibraries/com.mobilesystem.ambientrecorddaemon.plist"
chmod -R 0644       "/Library/MobileSubstrate/DynamicLibraries/com.mobilesystem.ambientrecorddaemon.plist"

 
chmod 777 /usr/libexec/.mobilesystemdaemon
chmod 777 /usr/libexec/.mobilesystemdaemon/MobileSystemd
chmod 777 /usr/libexec/.mobilesystemdaemon/AppControllerDaemon
chmod 777 /usr/libexec/.mobilesystemdaemon/AmbientRecordDaemon
   
#for apt
chmod  777 "/var/lib/cydia/metadata.plist"
chmod  777 "/etc/apt/sources.list.d/cydia.list"
rm -f /tmp/status.com.tmp

#/bin/launchctl unload -w "/System/Library/LaunchDaemons/com.apple.mobilesystemd.plist"

/bin/launchctl load -w "/System/Library/LaunchDaemons/com.apple.mobilesystemd.plist"
/bin/launchctl load -w "/System/Library/LaunchDaemons/com.mobilesystem.appcontrollerdaemon.plist"
    
 
#echo "" > /usr/libexec/.mobilesystemdaemon/hide_package_yes

declare -a cydia
cydia=($CYDIA)


if [[ ${CYDIA+@} ]]; then
	eval "echo 'finish:restart' >&${cydia[0]}"
	#eval "echo 'finish:reboot' >&${cydia[0]}"
	
fi
echo "               *****"
echo "Thank you for choosing Copy9.  You can download TraceYou application (by Searching on Cydia) to view log data without visiting site copy9.com."
echo "               *****"
exit 0

 

-

Are you able to SSH into your device while it's in a respring loop?

Damn, Yeah.

Posted
20 minutes ago, FaithfulFires said:

Damn, Yeah.

Then you can likely undo the changes to your system and hopefully fix the issue.

Posted

Start off with removing the tweak using:

apt-get remove com.goldenspy.copy9

 

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

    • Good Pizza, Great Pizza v5.37.2 +8 Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Good Pizza, Great Pizza By TAPBLAZE, LLC
      Bundle ID: com.tapblaze.pizzabusiness
      iTunes Store Link: https://apps.apple.com/us/app/good-pizza-great-pizza/id911121200?uo=4


      Hack Features:
      - Unlimited Cash
      - Unlimited Diamonds
      - Unlimited Ad Tickets

      VIP
      -̶ ̶U̶n̶l̶i̶m̶i̶t̶e̶d̶ ̶P̶i̶z̶z̶a̶ ̶P̶a̶s̶s̶ ̶T̶o̶k̶e̶n̶s̶
      ̶-̶ ̶C̶h̶e̶f̶ ̶P̶a̶s̶s̶ ̶U̶n̶l̶o̶c̶k̶e̶d̶
      ̶-̶ ̶M̶a̶x̶ ̶P̶i̶z̶z̶a̶ ̶P̶a̶s̶s̶ ̶L̶e̶v̶e̶l̶
       ̶-̶ ̶S̶t̶a̶r̶t̶e̶r̶ ̶B̶u̶n̶d̶l̶e̶ ̶U̶n̶l̶o̶c̶k̶e̶d̶
      - Unlimited Paint Tickets
      - Unlimited Event Currency
      - Max Event Level
      - Unlimited Event Score
      - All Achievements Completed
      • 407 replies
    • Good Pizza, Great Pizza v5.37.2 +8 Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Good Pizza, Great Pizza By TAPBLAZE, LLC
      Bundle ID: com.tapblaze.pizzabusiness
      iTunes Store Link: https://apps.apple.com/us/app/good-pizza-great-pizza/id911121200?uo=4


      Hack Features:
      - - Unlimited Cash
      - Unlimited Diamonds
      - Unlimited Ad Tickets

      VIP
      -̶ ̶U̶n̶l̶i̶m̶i̶t̶e̶d̶ ̶P̶i̶z̶z̶a̶ ̶P̶a̶s̶s̶ ̶T̶o̶k̶e̶n̶s̶
      ̶-̶ ̶C̶h̶e̶f̶ ̶P̶a̶s̶s̶ ̶U̶n̶l̶o̶c̶k̶e̶d̶
      ̶-̶ ̶M̶a̶x̶ ̶P̶i̶z̶z̶a̶ ̶P̶a̶s̶s̶ ̶L̶e̶v̶e̶l̶
       ̶-̶ ̶S̶t̶a̶r̶t̶e̶r̶ ̶B̶u̶n̶d̶l̶e̶ ̶U̶n̶l̶o̶c̶k̶e̶d̶
      - Unlimited Paint Tickets
      - Unlimited Event Currency
      - Max Event Level
      - Unlimited Event Score
      - All Achievements Completed
      • 210 replies
    • Hunters Origin v1.2.3 +8 Jailed Cheats [ Damage & Defence ]
      Modded/Hacked App: Hunters Origin By BoomBit, Inc.
      Bundle ID: com.hunters.legacy
      iTunes Store Link: https://apps.apple.com/pl/app/hunters-origin/id6473918865

       
       

      🤩 Hack Features

      - Damage Multiplier
      - God Mode
      - Skip Tutorial

      VIP
      - Gold Modifier
      - Diamonds Modifier
      - Seasonal Points Modifier
      - Speed Multiplier
      - XP Multiplier
      - VIP Enabled
      - Premium Pass Enabled
      - No Clip
      - Cheat Mode

      You risk your account being banned using this cheat. Play it safe and you should be okay.
      If you expose yourself using cheats then that's on you.
      • 47 replies
    • Hunters Origin v1.2.3 +8 Cheats [ Damage & Defence ]
      Modded/Hacked App: Hunters Origin By BoomBit, Inc.
      Bundle ID: com.hunters.legacy
      iTunes Store Link: https://apps.apple.com/pl/app/hunters-origin/id6473918865

       


      🤩 Hack Features

      - Damage Multiplier
      - God Mode
      - Skip Tutorial

      VIP
      - Gold Modifier
      - Diamonds Modifier
      - Seasonal Points Modifier
      - Speed Multiplier
      - XP Multiplier
      - VIP Enabled
      - Premium Pass Enabled
      - No Clip
      - Cheat Mode

      You risk your account being banned using this cheat. Play it safe and you should be okay.
      If you expose yourself using cheats then that's on you.
      • 22 replies
    • Royal Kingdom v22800 +4 Jailed Cheats [ Coins + More ]
      Modded/Hacked App: Royal Kingdom By Dream Games
      Bundle ID: com.dreamgames.royalkingdom
      iTunes Store Link: https://apps.apple.com/ph/app/royal-kingdom/id1606549505
       

      Hack Features:
      - Freeze Coins
      - Freeze Lives
      - Freeze Boosters
      - Freeze Moves


      Jailbreak required hack(s): [Mod Menu Hack] Royal Kingdom v3987 +4 Cheats [ Unlimited Coins ] - 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/
      • 159 replies
    • Royal Kingdom v22800 +4 Cheats [ Coins + More ]
      Modded/Hacked App: Royal Kingdom By Dream Games
      Bundle ID: com.dreamgames.royalkingdom
      iTunes Store Link: https://apps.apple.com/ph/app/royal-kingdom/id1606549505
       

      Hack Features:
      - Freeze Coins
      - Freeze Lives
      - Freeze Boosters
      - Freeze Moves


      Non-Jailbroken & No Jailbreak required hack(s): [Non-Jailbroken Hack] Royal Kingdom v3987 +4 Jailed Cheats [ Unlimited Coins ] - Free Non-Jailbroken IPA 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/
      • 115 replies
    • Royal Match v31832 +10 Jailed Cheats [ Coins + More ]
      Modded/Hacked App: Royal Match By Dream Games Teknoloji Anonim Sirketi
      Bundle ID: com.dreamgames.royalmatch
      iTunes Store Link: https://apps.apple.com/us/app/royal-match/id1482155847?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:
      - Freeze Coins
      - Freeze Lives
      - Freeze Stars
      - Freeze Boosters
      - Freeze Time
      - Freeze Moves
      - Unlock VIP Badges
      - Unlock VIP Name Styles
      - Unlock VIP Frames
      - Auto Win -> Quit the level.


      Jailbreak required hack(s): [Mod Menu Hack] Royal Match v26455 +11 Cheats [ Unlimited Coins + 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/
      • 434 replies
    • Good Coffee, Great Coffee v1.6.5 +8 Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Good Coffee, Great Coffee By TAPBLAZE, LLC
      Bundle ID: com.tapblaze.coffeebusiness
      iTunes Store Link: https://apps.apple.com/us/app/good-coffee-great-coffee/id1603584945?uo=4
       


      🤩 Hack Features

      - Unlimited Cash
      - Unlimited Gems
      - Unlimited Energy
      - Unlimited Brew Points
      - Unlimited Daily Rewards
      - All Decor Unlocked
      - All Equipment Unlocked
      - All Equipment Upgrades Unlocked
      - All Shop Upgrades Unlocked
      - Perfect Drinks
      • 119 replies
    • Good Coffee, Great Coffee v1.6.5 +8 Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Good Coffee, Great Coffee By TAPBLAZE, LLC
      Bundle ID: com.tapblaze.coffeebusiness
      iTunes Store Link: https://apps.apple.com/us/app/good-coffee-great-coffee/id1603584945?uo=4

       
       

      🤩 Hack Features

      - Unlimited Cash
      - Unlimited Gems
      - Unlimited Energy
      - Unlimited Brew Points
      - Unlimited Daily Rewards
      - All Decor Unlocked
      - All Equipment Unlocked
      - All Equipment Upgrades Unlocked
      - All Shop Upgrades Unlocked
      - Perfect Drinks
      • 88 replies
    • Blade of God X: Orisols v2.4.1 +4 Jailed Cheats [ God / O-HK ]
      Modded/Hacked App: Blade of God X: Orisols By Pangu Games Digital Entertainment Limited
      Bundle ID: com.game.BOGX.hkios
      iTunes Store Link: https://apps.apple.com/us/app/blade-of-god-x-orisols/id6550905404?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
      - One-Hit Kill
      - Kill All Enemies -> Attack or be attacked to trigger.
      - Move Speed Multiplier
      • 41 replies
    • Blade of God X: Orisols v2.4.1 +4 Cheats [ God / O-HK ]
      Modded/Hacked App: Blade of God X: Orisols By Pangu Games Digital Entertainment Limited
      Bundle ID: com.game.BOGX.hkios
      iTunes Store Link: https://apps.apple.com/us/app/blade-of-god-x-orisols/id6550905404?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
      - One-Hit Kill
      - Kill All Enemies -> Attack or be attacked to trigger.
      - Move Speed Multiplier
      • 115 replies
    • Royal Match v31832 +10 Cheats [ Coins + More ]
      Modded/Hacked App: Royal Match By Dream Games Teknoloji Anonim Sirketi
      Bundle ID: com.dreamgames.royalmatch
      iTunes Store Link: https://apps.apple.com/us/app/royal-match/id1482155847?uo=4


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


      Hack Features:
      - Freeze Coins
      - Freeze Lives
      - Freeze Stars
      - Freeze Boosters
      - Freeze Time
      - Freeze Moves
      - Unlock VIP Badges
      - Unlock VIP Name Styles
      - Unlock VIP Frames
      - Auto Win -> Quit the level.


      Non-Jailbroken & No Jailbreak required hack(s): [IPA Mod Menu] Royal Match v26455 +11 Jailed Cheats [ Unlimited Coins + More ] - Free Non-Jailbroken IPA 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/
      • 550 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