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

    • Wittle Defender v1.1.4.10 [+2 Cheats]
      Modded/Hacked App: Wittle Defender By HABBY PTE. LTD.
      Bundle ID: com.game.kingrush
      App Store Link: https://apps.apple.com/us/app/wittle-defender/id6502815032?uo=4

       

      Important


      Do not Abuse. Not responsible for any bans.

      Visual damage not represent real damage

       

      🤩 Hack Features

      - Damage Multiplier
      - Defense Multiplier

        • Thanks
      • 29 replies
    • Wittle Defender v1.1.4.10 [+2 Jailed Cheats]
      Modded/Hacked App: Wittle Defender By HABBY PTE. LTD.
      Bundle ID: com.game.kingrush
      App Store Link: https://apps.apple.com/us/app/wittle-defender/id6502815032?uo=4


       

      🤩 Hack Features

      - Damage Multiplier
      - Defense Multiplier
       
        • Agree
        • Thanks
        • Winner
        • Like
      • 90 replies
    • Wasteland Survival TD v0.6.1 [ +5 Cheats ] Currency Max
      Modded/Hacked App: Wasteland Survival TD By Mildmania Oyun Sistemleri Anonim Sirketi
      Bundle ID: com.mildmania.wasteland
      App Store Link: https://apps.apple.com/ca/app/wasteland-survival-td/id6749257865?uo=4

      🤩 Hack Features

      - Unlimited Currency
      - Unlimited Resources
      - Unlimited Battle Coins
      - Always Last Wave
      - DMG
      • 1 reply
    • Wasteland Survival TD v0.6.1 [ +5 Jailed ] Currency Max
      Modded/Hacked App: Wasteland Survival TD By Mildmania Oyun Sistemleri Anonim Sirketi
      Bundle ID: com.mildmania.wasteland
      App Store Link: https://apps.apple.com/ca/app/wasteland-survival-td/id6749257865?uo=4

      🤩 Hack Features

      - Unlimited Currency
      - Unlimited Resources
      - Unlimited Battle Coins
      - Always Last Wave
      - DMG
      • 2 replies
    • Royal Match v31110 +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/
        • Thanks
        • Like
      • 426 replies
    • Royal Match v31110 +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/
        • Informative
        • Agree
        • Haha
        • Thanks
      • 544 replies
    • Dynasty Warriors ( 真・三國無双 覇 ) v1.0.19 +3 Cheats [ Damage & Defence ]
      Modded/Hacked App: 真・三國無双 覇 By SUPERNOVA OVERSEAS LIMITED
      Bundle ID: com.supernova.ssgms.jp.ios
      App Store Link: https://apps.apple.com/jp/app/%E7%9C%9F-%E4%B8%89%E5%9C%8B%E7%84%A1%E5%8F%8C-%E8%A6%87/id6461309538?uo=4

       


      🤩 Hack Features

      - Damage Multiplier
      - Defence Multiplier
      - God Mode
      • 3 replies
    • Ape Rampage v1.1 [ +2 Cheats ] Currency Max
      Modded/Hacked App: Ape Rampage By Vritank Yadav
      Bundle ID: com.hyperpixelgames.apeevolution
      App Store Link: https://apps.apple.com/ca/app/ape-rampage/id6748993588?uo=4

      🤩 Hack Features

      - Unlimited Currency / Earn
      - Unlimited Resources / Earn
      • 0 replies
    • Ape Rampage v1.1 [ +2 Jailed ] Currency Max
      Modded/Hacked App: Ape Rampage By Vritank Yadav
      Bundle ID: com.hyperpixelgames.apeevolution
      App Store Link: https://apps.apple.com/ca/app/ape-rampage/id6748993588?uo=4

      🤩 Hack Features

      - Unlimited Currency / Earn
      - Unlimited Resources / Earn
      • 0 replies
    • MU: Pocket Knights v1.4.8 +3 Jailed Cheats [ Damage + More ]
      Modded/Hacked App: MU: Pocket Knights By WEBZEN INC.
      Bundle ID: com.webzen.muidle.ios
      App Store Link: https://apps.apple.com/ph/app/mu-pocket-knights/id6742208743?uo=4

       
       

      🤩 Hack Features

      - Damage Multiplier
      - God Mode
      - Speed Multiplier
        • Like
      • 42 replies
    • MU: Pocket Knights v1.4.8 +3 Cheats [ Damage + More ]
      Modded/Hacked App: MU: Pocket Knights By WEBZEN INC.
      Bundle ID: com.webzen.muidle.ios
      App Store Link: https://apps.apple.com/ph/app/mu-pocket-knights/id6742208743?uo=4

       
       

      🤩 Hack Features

      - Damage Multiplier
      - God Mode
      - Speed Multiplier
      • 18 replies
    • Good Coffee, Great Coffee v1.5.3 +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
        • Informative
        • Like
      • 114 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