Jump to content

9 posts in this topic

Recommended Posts

Posted

so eveyrtime i go to compile i get this error

 

 

Tweak.xm:126:1: error: use of undeclared identifier 'fp8'
fp8();
^
Tweak.xm:138:1: error: use of undeclared identifier 'fp8'
fp8();
 

 

can anybody help

Posted

Can I see your Tweak.xm

 

 

I think you leave a space. I may be wrong because I haven't touched MS for a while.

 

#import <CoreFoundation/CoreFoundation.h>

#import <substrate.h>

#import <Foundation/Foundation.h>

#import <writeData.h>

#import <dlfcn.h>

#import <sys/types.h>

#define prefs @"/var/mobile/Library/Preferences/CandyCrushSodaSaga.plist"

inline bool GetPrefBool(NSString *key){

return [[[NSDictionary dictionaryWithContentsOfFile:prefs] valueForKey:key] boolValue];

}

 

typedef int (*ptrace_ptr_t)(int _request, pid_t _pid, caddr_t _addr, int _data);

#if !defined(PT_DENY_ATTACH)

#define PT_DENY_ATTACH 31

#endif

 

 

%hook StritzAppDelegate

- (void)applicationDidBecomeActive:(id)non {

UIAlertView *alert = [[uIAlertView alloc] initWithTitle:@"Candy Crush Soda Saga" message:@"Hacked by JohnKittz" delegate:nil cancelButtonTitle:@"Thank You!" otherButtonTitles:nil];

[alert show];

[alert release];

}

%end

 

bool (*orig__ZN13CProgressUtil15IsLevelUnlockedEiPK19CStritzLevelManager)(void *self, unsigned i1);

bool __ZN13CProgressUtil15IsLevelUnlockedEiPK19CStritzLevelManager(void *self, unsigned int i1) {

if(GetPrefBool(@"kLevelUnlocker"))

{

return true;

}

else

{

return orig__ZN13CProgressUtil15IsLevelUnlockedEiPK19CStritzLevelManager(self,i1);

}

}

 

bool (*orig__ZN13CProgressUtil17IsEpisodeUnlockedEiPK15CEpisodeManagerPK19CStritzLevelManager)(void *self, unsigned int i1);

bool __ZN13CProgressUtil17IsEpisodeUnlockedEiPK15CEpisodeManagerPK19CStritzLevelManager(void *self, unsigned int i1) {

if(GetPrefBool(@"kEpisodeUnlocker"))

{

return true;

}

else

{

return orig__ZN13CProgressUtil17IsEpisodeUnlockedEiPK15CEpisodeManagerPK19CStritzLevelManager(self,i1);

}

}

 

int (*orig__ZN5Juego12CLifeManager8GetLivesEv)(void *self, unsigned int i1);

int __ZN5Juego12CLifeManager8GetLivesEv(void *self, unsigned int i1) {

if(GetPrefBool(@"kLives"))

{

return 999;

}

else

{

return orig__ZN5Juego12CLifeManager8GetLivesEv(self,i1);

}

}

 

int (*orig__ZN22CStritzGameModeHudView25DecreaseNumberOfMovesLeftEi)(void *self, unsigned int i1);

int __ZN22CStritzGameModeHudView25DecreaseNumberOfMovesLeftEi(void *self, unsigned int i1) {

if(GetPrefBool(@"kMoves"))

{

NSDictionary *Soda = [NSDictionary dictionaryWithContentsOfFile:[NSString stringWithFormat:@"/var/mobile/Library/Preferences/com.zahirsher.soda.plist"]]; return [[soda objectForKey:@"kMoves"] intValue];

}

else

{

return orig__ZN22CStritzGameModeHudView25DecreaseNumberOfMovesLeftEi(self,i1);

}

}

 

bool (*orig__ZNK25CChocolateNemesisGameMode11IsCompletedEv)(void *self, unsigned int i1);

bool __ZNK25CChocolateNemesisGameMode11IsCompletedEv(void *self, unsigned int i1) {

if(GetPrefBool(@"kChocolate"))

{

return true;

}

else

{

return orig__ZNK25CChocolateNemesisGameMode11IsCompletedEv(self,i1);

}

}

 

bool (*orig__ZNK17CFloatingNutsMode11IsCompletedEv)(void *self, unsigned int i1);

bool __ZNK17CFloatingNutsMode11IsCompletedEv(void *self, unsigned int i1) {

if(GetPrefBool(@"kNut"))

{

return true;

}

else

{

return orig__ZNK17CFloatingNutsMode11IsCompletedEv(self,i1);

}

}

 

bool (*orig__ZNK18GiantBearsGameMode11IsCompletedEv)(void *self, unsigned int i1);

bool __ZNK18GiantBearsGameMode11IsCompletedEv(void *self, unsigned int i1) {

if(GetPrefBool(@"kBear"))

{

return true;

}

else

{

return orig__ZNK18GiantBearsGameMode11IsCompletedEv(self,i1);

}

}

 

bool (*orig__ZNK21SodaToTheBrimGameMode11IsCompletedEv)(void *self, unsigned int i1);

bool __ZNK21SodaToTheBrimGameMode11IsCompletedEv(void *self, unsigned int i1) {

if(GetPrefBool(@"kBrim"))

{

return true;

}

else

{

return orig__ZNK21SodaToTheBrimGameMode11IsCompletedEv(self,i1);

}

}

 

 

 

__attribute__((constructor)) void DylibMain()

{

gold ();

MSHookFunction(((void*)MSFindSymbol(NULL,"__ZN13CProgressUtil15IsLevelUnlockedEiPK19CStritzLevelManager")),(void *)__ZN13CProgressUtil15IsLevelUnlockedEiPK19CStritzLevelManager,(void**)&orig__ZN13CProgressUtil15IsLevelUnlockedEiPK19CStritzLevelManager);

MSHookFunction(((void*)MSFindSymbol(NULL,"__ZN13CProgressUtil17IsEpisodeUnlockedEiPK15CEpisodeManagerPK19CStritzLevelManager")),(void *)__ZN13CProgressUtil17IsEpisodeUnlockedEiPK15CEpisodeManagerPK19CStritzLevelManager,(void**)&orig__ZN13CProgressUtil17IsEpisodeUnlockedEiPK15CEpisodeManagerPK19CStritzLevelManager);

MSHookFunction(((void*)MSFindSymbol(NULL,"__ZN5Juego12CLifeManager8GetLivesEv")),(void *)__ZN5Juego12CLifeManager8GetLivesEv,(void**)&orig__ZN5Juego12CLifeManager8GetLivesEv);

MSHookFunction(((void*)MSFindSymbol(NULL,"__ZN22CStritzGameModeHudView25DecreaseNumberOfMovesLeftEi")),(void *)__ZN22CStritzGameModeHudView25DecreaseNumberOfMovesLeftEi,(void**)&orig__ZN22CStritzGameModeHudView25DecreaseNumberOfMovesLeftEi);

MSHookFunction(((void*)MSFindSymbol(NULL,"__ZNK25CChocolateNemesisGameMode11IsCompletedEv")),(void *)__ZNK25CChocolateNemesisGameMode11IsCompletedEv,(void**)&orig__ZNK25CChocolateNemesisGameMode11IsCompletedEv);

MSHookFunction(((void*)MSFindSymbol(NULL,"__ZNK17CFloatingNutsMode11IsCompletedEv")),(void *)__ZNK17CFloatingNutsMode11IsCompletedEv,(void**)&orig__ZNK17CFloatingNutsMode11IsCompletedEv);

MSHookFunction(((void*)MSFindSymbol(NULL,"__ZNK18GiantBearsGameMode11IsCompletedEv")),(void *)__ZNK18GiantBearsGameMode11IsCompletedEv,(void**)&orig__ZNK18GiantBearsGameMode11IsCompletedEv);

MSHookFunction(((void*)MSFindSymbol(NULL,"__ZNK21SodaToTheBrimGameMode11IsCompletedEv")),(void *)__ZNK21SodaToTheBrimGameMode11IsCompletedEv,(void**)&__ZNK21SodaToTheBrimGameMode11IsCompletedEv);

}

 

%ctor {

gold ();

writeData(0x1CBFC0, 0x381C7047); /*Gold*/

writeData(0x1CBFBC, 0x381C7047); /*Gold*/

}

thats it im just trying to make a hack for my gf xD lol

Posted

Try this...

 

 

#import <CoreFoundation/CoreFoundation.h>
#import <substrate.h>
#import <Foundation/Foundation.h>

#define PLIST_PATH @"/var/mobile/Library/Preferences/
CandyCrushSodaSaga.plist"

inline bool GetPrefBool(NSString *key)

{

return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue];

}

int (*orig__ZN5Juego12CLifeManager8GetLivesEv)(int *self, int il);

int $__ZN5Juego12CLifeManager8GetLivesEv(int *self, int il) {
if(GetPrefBool(@"kgetLives"))
{
return 99;
}
else
{
return
orig__ZN5Juego12CLifeManager8GetLivesEv(self,il);
}
}

 

 

__attribute__((constructor)) void DylibMain()
{

MSHookFunction(((int*)MSFindSymbol(NULL, "__ZN5Juego12CLifeManager8GetLivesEv")),(int*)$__ZN5Juego12CLifeManager8GetLivesEv,(int**)&orig__ZN5Juego12CLifeManager8GetLivesEv);

}

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

    • Astrea: Six-Sided Oracles v1.2.778 +5 Jailed Cheats [ Damage & Defence ]
      Modded/Hacked App: Astrea: Six-Sided Oracles By Akupara Games
      Bundle ID: com.littleleogames.astreasixsidedoracles
      iTunes Store Link: https://apps.apple.com/us/app/astrea-six-sided-oracles/id6746136017

       
       

      🤩 Hack Features

      - Damage Multiplier
      - Defence Multiplier
      - God Mode
      - Freeze Hearts
      - Unlimited Star Shards -> Earn some.
      • 9 replies
    • Astrea: Six-Sided Oracles v1.2.778 +5 Cheats [ Damage & Defence ]
      Modded/Hacked App: Astrea: Six-Sided Oracles By Akupara Games
      Bundle ID: com.littleleogames.astreasixsidedoracles
      iTunes Store Link: https://apps.apple.com/us/app/astrea-six-sided-oracles/id6746136017

       
       

      🤩 Hack Features

      - Damage Multiplier
      - Defence Multiplier
      - God Mode
      - Freeze Hearts
      - Unlimited Star Shards -> Earn some.
      • 4 replies
    • EvoCreo 2: Monster Trainer RPG v1.5.1 +8 Jailed Cheats [ Damage + More ]
      Modded/Hacked App: EvoCreo 2: Monster Trainer RPG By Ilmfinity Studios LLC
      Bundle ID: com.ilmfinity.evocreo2
      iTunes Store Link: https://apps.apple.com/us/app/evocreo-2-monster-trainer-rpg/id1499001662?uo=4

       


      🤩 Hack Features

      - Unlimited Money -> Will increase instead of decrease.
      - Unlimited Skill Points
      - Unlimited Bag Items -> Will increase instead of decrease.
      - Prestige Cleo Allowed
      - Max Creo Level -> Earn some XP.
      - Damage Multiplier - Linked -> Affects both you and enemy. Use carefully.
      - Free In-App Purchases
      - Unlock All Achievements/Badges
      • 38 replies
    • EvoCreo 2: Monster Trainer RPG v1.5.1 +8 Cheats [ Damage + More ]
      Modded/Hacked App: EvoCreo 2: Monster Trainer RPG By Ilmfinity Studios LLC
      Bundle ID: com.ilmfinity.evocreo2
      iTunes Store Link: https://apps.apple.com/us/app/evocreo-2-monster-trainer-rpg/id1499001662?uo=4

       


      🤩 Hack Features

      - Unlimited Money -> Will increase instead of decrease.
      - Unlimited Skill Points
      - Unlimited Bag Items -> Will increase instead of decrease.
      - Prestige Cleo Allowed
      - Max Creo Level -> Earn some XP.
      - Damage Multiplier - Linked -> Affects both you and enemy. Use carefully.
      - Free In-App Purchases
      - Unlock All Achievements/Badges
      • 24 replies
    • Planet Crusher - Dig & Drill v0.13.2 +8 Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Planet Crusher - Dig & Drill By Gryphon Games UG (haftungsbeschrankt)
      Bundle ID: com.gryphongames.planetcrusher
      App Store Link: https://apps.apple.com/us/app/planet-crusher-dig-drill/id6738657101?uo=4

       
       

      🤩 Hack Features

      - God Mode
      - Damage Multiplier
      - Drill Damage Multiplier
      - No Knockback
      - Unlimited Currencies -> Will increase instead of decrease.
      - All Planets Unlocked
      - Battle Pass Unlocked
      -- No Ads
      • 30 replies
    • Planet Crusher - Dig & Drill v0.13.2 +8 Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Planet Crusher - Dig & Drill By Gryphon Games UG (haftungsbeschrankt)
      Bundle ID: com.gryphongames.planetcrusher
      App Store Link: https://apps.apple.com/us/app/planet-crusher-dig-drill/id6738657101?uo=4

       
       

      🤩 Hack Features

      - God Mode
      - Damage Multiplier
      - Drill Damage Multiplier
      - No Knockback
      - Unlimited Currencies -> Will increase instead of decrease.
      - All Planets Unlocked
      - Battle Pass Unlocked
      -- No Ads
      • 11 replies
    • Darts Club v6.2.6 +28 Jailed Cheats [ Debug Menu ]
      Modded/Hacked App: Darts Club By BoomBit, Inc.
      Bundle ID: com.boombitgames.DartsClub
      iTunes Store Link: https://apps.apple.com/us/app/darts-club/id1389760587?uo=4


      Hack Features:
      - Unlimited Currencies
      - Debug Menu -> Head into Settings and toggle the DEBUG button. [ VIP ]
      -> Add Soft
      -> Add Hard
      -> Add Trophies
      -> Unlock All Parts/Emotes/Vanities/Wild Items
      + More!


      Jailbreak required hack(s): [Mod Menu Hack] Darts Club v5.8.6 +28 Cheats [ Debug Menu ] - 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/
      • 26 replies
    • Darts Club v6.2.6 +28 Cheats [ Debug Menu ]
      Modded/Hacked App: Darts Club By BoomBit, Inc.
      Bundle ID: com.boombitgames.DartsClub
      iTunes Store Link: https://apps.apple.com/us/app/darts-club/id1389760587?uo=4


      Hack Features:
      - Unlimited Currencies
      - Debug Menu -> Head into Settings and toggle the DEBUG button. [ VIP ]
      -> Add Soft
      -> Add Hard
      -> Add Trophies
      -> Unlock All Parts/Emotes/Vanities/Wild Items
      + More!


      Non-Jailbroken & No Jailbreak required hack(s): [IPA Mod Menu] Darts Club v5.8.6 +28 Jailed Cheats [ Debug Menu ] - 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/
      • 25 replies
    • Tiny Tower: Tap Idle Evolution v6.9.1 +2++ Jailed Cheats [ Currencies ]
      Modded/Hacked App: Tiny Tower: Tap Idle Evolution By NimbleBit LLC
      Bundle ID: com.eeenmachine.tinytowers
      iTunes Store Link: https://apps.apple.com/us/app/tiny-tower-tap-idle-evolution/id422667065?uo=4


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


      Jailbreak required hack(s): [Mod Menu Hack] Tiny Tower: Tap Idle Evolution v5.8.0 +2++ 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/
      • 23 replies
    • Mystery Matters v3.2.1 +6 Jailed Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Mystery Matters By Playrix
      Bundle ID: com.playrix.mystery-matters
      iTunes Store Link: https://apps.apple.com/us/app/mystery-matters/id6450447751
       

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

      VIP
      Note - These features will get you banned from teams/clans.
      - Unlimited Coins -> Earn or spend some.
      - Unlimited Stars -> Earn some.
      • 57 replies
    • Mystery Matters v3.2.1 +6 Cheats [ Unlimited Currencies ]
      Modded/Hacked App: Mystery Matters By Playrix
      Bundle ID: com.playrix.mystery-matters
      iTunes Store Link: https://apps.apple.com/us/app/mystery-matters/id6450447751
       

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

      VIP
      Note - These features will get you banned from teams/clans.
      - Unlimited Coins -> Earn or spend some.
      - Unlimited Stars -> Earn some.
      • 53 replies
    • Elysia: The Astral Fall v1.1.1 +4 Jailed Cheats [ Damage & Defence ]
      Modded/Hacked App: Elysia: The Astral Fall By Panthera Joint Stock Company
      Bundle ID: com.pantheraplay.projecth
      App Store Link: https://apps.apple.com/us/app/elysia-the-astral-fall/id6737166302?uo=4

       


      🤩 Hack Features

      - Damage Multiplier
      - Defence Multiplier
      - God Mode
      - Unlimited Currencies -> Will increase instead of decrease.
      • 54 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