Jump to content

34 posts in this topic

Recommended Posts

  • Replies 33
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

Posted

Got rid of 5 errors just the ones at bottom now :( Jacksons-iPad:~ mobile$ su

Password:

Jacksons-iPad:/var/mobile root# cd /var/mobile/crazykingspatchv1

Jacksons-iPad:/var/mobile/crazykingspatchv1 root# make package

/var/mobile/crazykingspatchv1/theos/makefiles/targets/Darwin-arm64/iphone.mk:43: Targeting iOS 4.0 and higher is not supported with iphone-gcc. Forcing clang.

/var/mobile/crazykingspatchv1/theos/makefiles/targets/Darwin-arm64/iphone.mk:53: Deploying to iOS 3.0 while building for 6.0 will generate armv7-only binaries.

Making all for tweak crazykingspatchv1...

Preprocessing Tweak.xm...

Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42.

Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42.

Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42.

Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42.

Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42.

Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42.

Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42.

Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42.

Tweak.xm:67: error: dangling %end

make[2]: *** [obj/Tweak.xm.49859382.o] Error 255

make[1]: *** [internal-library-all_] Error 2

make: *** [crazykingspatchv1.all.tweak.variables] Error 2

Jacksons-iPad:/var/mobile/crazykingspatchv1 root#

Posted
  On 1/3/2017 at 9:09 PM, Jacksonlane24 said:

Got rid of 5 errors just the ones at bottom now :( Jacksons-iPad:~ mobile$ su

Password:

Jacksons-iPad:/var/mobile root# cd /var/mobile/crazykingspatchv1

Jacksons-iPad:/var/mobile/crazykingspatchv1 root# make package

/var/mobile/crazykingspatchv1/theos/makefiles/targets/Darwin-arm64/iphone.mk:43: Targeting iOS 4.0 and higher is not supported with iphone-gcc. Forcing clang.

/var/mobile/crazykingspatchv1/theos/makefiles/targets/Darwin-arm64/iphone.mk:53: Deploying to iOS 3.0 while building for 6.0 will generate armv7-only binaries.

Making all for tweak crazykingspatchv1...

Preprocessing Tweak.xm...

Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42.

Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42.

Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42.

Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42.

Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42.

Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42.

Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42.

Constants from lexical variables potentially modified elsewhere are deprecated at /private/var/theos/bin/lib/aliased.pm line 42.

Tweak.xm:67: error: dangling %end

make[2]: *** [obj/Tweak.xm.49859382.o] Error 255

make[1]: *** [internal-library-all_] Error 2

make: *** [crazykingspatchv1.all.tweak.variables] Error 2

Jacksons-iPad:/var/mobile/crazykingspatchv1 root#

 

Show us your tweak.xm now.

Posted
  On 1/3/2017 at 9:29 PM, Diversityy said:

Show us your tweak.xm now.

%hook GameState

 

-(int) gems {

return 9999999;

}

 

-(int) max_stars {

return 9999999;

 

}

 

-(int) total_stars {

return 9999999;

}

 

-(int) max_energy {

return 9999999;

}

 

-(int) max_crowns {

return 9999999;

}

 

-(int) tickets {

return 9999999;

}

 

-(int) energy_play_cost_level {

return 1;

}

 

-(int) total_crowns {

return 9999999;

}

 

-(int) energy {

return 9999999;

}

 

-(int) energy_refill_count {

return 9999999;

}

 

-(int) energy_reward_count {

return 9999999;

}

 

%end

 

%hook @Level

 

-(int) coins {

return 9999999;

}

 

%end

 

%hook Player

 

-(int) get_energy {

return 9999999;

}

 

%end

Posted
  On 1/3/2017 at 9:30 PM, Jacksonlane24 said:

%hook GameState

 

-(int) gems {

return 9999999;

}

 

-(int) max_stars {

return 9999999;

 

}

 

-(int) total_stars {

return 9999999;

}

 

-(int) max_energy {

return 9999999;

}

 

-(int) max_crowns {

return 9999999;

}

 

-(int) tickets {

return 9999999;

}

 

-(int) energy_play_cost_level {

return 1;

}

 

-(int) total_crowns {

return 9999999;

}

 

-(int) energy {

return 9999999;

}

 

-(int) energy_refill_count {

return 9999999;

}

 

-(int) energy_reward_count {

return 9999999;

}

 

%end

 

%hook @Level

 

-(int) coins {

return 9999999;

}

 

%end

 

%hook Player

 

-(int) get_energy {

return 9999999;

}

 

%end

Get rid of the @ where you hook Level

Posted
  On 1/3/2017 at 8:19 PM, Pro said:

I don't think you can hack methods that have an underscore, but I'm not positive on that

You can with underscores but not 'dots' :p
Posted
  On 1/3/2017 at 9:38 PM, Pro said:

Get rid of the @ where you hook Level

it needs to be there cause one of the errors said that and when I put it there one of the errors went
Posted
  On 1/3/2017 at 9:48 PM, Jacksonlane24 said:

it needs to be there cause one of the errors said that and when I put it there one of the errors went

No it doesn't lol
Posted
  On 1/3/2017 at 9:47 PM, Crypto said:

You can with underscores but not 'dots' :p

It's been a while since I've done anything, so it was probably just Swift classes that I was thinking of

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

    • Triple Fantasy v7.82.0 +2 Jailed Cheats [ Damage & Defence ]
      Modded/Hacked App: Triple Fantasy By Gameplete
      Bundle ID: com.Gameplete.CardFantasy
      iTunes Store Link: https://apps.apple.com/us/app/triple-fantasy/id1018725872?uo=4

       


      🤩 Hack Features

      - Damage Multiplier
      - Defence Multiplier
        • Like
      • 7 replies
    • Triple Fantasy v7.82.0 +2 Cheats [ Damage & Defence ]
      Modded/Hacked App: Triple Fantasy By Gameplete
      Bundle ID: com.Gameplete.CardFantasy
      iTunes Store Link: https://apps.apple.com/us/app/triple-fantasy/id1018725872?uo=4

       


      🤩 Hack Features

      - Damage Multiplier
      - Defence Multiplier
        • Like
      • 6 replies
    • MIST: Horror Idle Survival RPG v1.8.1 +4 Jailed Cheats [ Damage + More ]
      Modded/Hacked App: MIST: Horror Idle Survival RPG By Anton Nazarov
      Bundle ID: com.eg.mist.horror.idle.rpg
      iTunes Store Link: https://apps.apple.com/us/app/mist-horror-idle-survival-rpg/id6499312165?uo=4


      Hack Features:
      - God Mode
      - Damage Multiplier
      - Unlimited Resources/Currencies -> Will not decrease.
      - Unlock All Skill Slots -> Slots will cost nothing to unlock then after disable this feature to use the slots.


      Jailbreak required hack(s): [Mod Menu Hack] MIST: Horror Idle Survival RPG v1.2 +4 Cheats [ Damage Multiplier ] - 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/
        • Informative
        • Like
      • 17 replies
    • MIST: Horror Idle Survival RPG v1.8.1 +4 Cheats [ Damage + More ]
      Modded/Hacked App: MIST: Horror Idle Survival RPG By Anton Nazarov
      Bundle ID: com.eg.mist.horror.idle.rpg
      iTunes Store Link: https://apps.apple.com/us/app/mist-horror-idle-survival-rpg/id6499312165?uo=4


      Hack Features:
      - God Mode
      - Damage Multiplier
      - Unlimited Resources/Currencies -> Will not decrease.
      - Unlock All Skill Slots -> Slots will cost nothing to unlock then after disable this feature to use the slots.


      Non-Jailbroken & No Jailbreak required hack(s): [IPA Mod Menu] MIST: Horror Idle Survival RPG v1.2 +4 Jailed Cheats [ Damage Multiplier ] - 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/
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 44 replies
    • Good Pizza, Great Pizza v5.29.0 +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 Pizza Pass Claim -> Only works if you haven't claimed that reward yet.

      VIP
      - Unlimited Pizza Pass Tokens
      - Chef Pass Unlocked
      - Max Pizza Pass Level
      - Starter Bundle Unlocked
      - All Achievements Completed
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 322 replies
    • Secret Puzzle Society v1.26.2 +4 Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Secret Puzzle Society By Wildlife Studios, Inc
      Bundle ID: com.arizonags.puzzlesocietyalpha
      iTunes Store Link: https://apps.apple.com/us/app/secret-puzzle-society/id6449197556?uo=4


      Hack Features:
      - Unlimited Coins -> Earn or spend some.
      - Unlimited Clues -> Earn or spend some.
      - Unlimited Lives -> Earn or spend some.
      - Auto Win -> Use a move.


      Jailbreak required hack(s): [Mod Menu Hack] Secret Puzzle Society v1.6.3 +4 Cheats [ Unlimited Currencies ] - 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/
        • Like
      • 17 replies
    • Secret Puzzle Society v1.26.2 +4 Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Secret Puzzle Society By Wildlife Studios, Inc
      Bundle ID: com.arizonags.puzzlesocietyalpha
      iTunes Store Link: https://apps.apple.com/us/app/secret-puzzle-society/id6449197556?uo=4


      Hack Features:
      - Unlimited Coins -> Earn or spend some.
      - Unlimited Clues -> Earn or spend some.
      - Unlimited Lives -> Earn or spend some.
      - Auto Win -> Use a move.


      Non-Jailbroken & No Jailbreak required hack(s): [IPA Mod Menu] Secret Puzzle Society v1.6.3 +4 Jailed Cheats [ Unlimited Currencies ] - 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/
        • Thanks
        • Like
      • 15 replies
    • Trash Tycoon Idle Empire v3.5.5 +1++ Jailed Cheat [ Unlimited Currencies ]
      Modded/Hacked App: Trash Tycoon Idle Empire By SUPERSONIC STUDIOS LTD
      Bundle ID: com.funcell.trashinc
      iTunes Store Link: https://apps.apple.com/us/app/trash-tycoon-idle-empire/id1595274680?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:
      - Unlimited Currencies -> Will increase instead of decrease.


      Jailbreak required hack(s): [Mod Menu Hack] Trash Tycoon Idle Empire v2.6.2 +1++ Cheat [ Unlimited Currencies ] - 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/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 65 replies
    • Trash Tycoon Idle Empire v3.4.0 +1++ Cheat [ Unlimited Currencies ]
      Modded/Hacked App: Trash Tycoon Idle Empire By SUPERSONIC STUDIOS LTD
      Bundle ID: com.funcell.trashinc
      iTunes Store Link: https://apps.apple.com/us/app/trash-tycoon-idle-empire/id1595274680?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:
      - Unlimited Currencies -> Will increase instead of decrease.


      Non-Jailbroken & No Jailbreak required hack(s): [Non-Jailbroken Hack] Trash Tycoon Idle Empire v2.6.2 +1++ Jailed Cheat [ Unlimited Currencies ] - 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/
        • Informative
        • Agree
        • Thanks
        • Winner
        • Like
      • 34 replies
    • Good Pizza, Great Pizza v5.29.0 +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 Pizza Pass Claim -> Only works if you haven't claimed that reward yet. 

      VIP
      - Unlimited Pizza Pass Tokens 
      - Chef Pass Unlocked 
      - Max Pizza Pass Level 
      - Starter Bundle Unlocked 
      - All Achievements Completed
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 175 replies
    • Octopus Feast v2.0.4 +1++ Jailed Cheat [ Unlimited Currencies ]
      Modded/Hacked App: Octopus Feast By Rollic Games Oyun Yazilim ve Pazarlama Anonim Sirketi
      Bundle ID: com.twodestudios.octopusfeast
      iTunes Store Link: https://apps.apple.com/us/app/octopus-feast/id6499421924?uo=4


      Hack Features:
      - Unlimited Currencies -> Will increase instead of decrease.


      Jailbreak required hack(s): [Mod Menu Hack] Octopus Feast v1.2.4 +1++ Cheat [ Unlimited Currencies ] - 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/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 47 replies
    • Octopus Feast v2.0.4 +1++ Cheat [ Unlimited Currencies ]
      Modded/Hacked App: Octopus Feast By Rollic Games Oyun Yazilim ve Pazarlama Anonim Sirketi
      Bundle ID: com.twodestudios.octopusfeast
      iTunes Store Link: https://apps.apple.com/us/app/octopus-feast/id6499421924?uo=4


      Hack Features:
      - Unlimited Currencies -> Will increase instead of decrease.


      Non-Jailbroken & No Jailbreak required hack(s): [Non-Jailbroken Hack] Octopus Feast v1.2.4 +1++ Jailed Cheat [ Unlimited Currencies ] - 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/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 50 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