Jump to content

Help (Tweaks)


Go to solution Solved by FuroowHD,

35 posts in this topic

Recommended Posts

Posted

@Al00X Try this:
 

hook PBGlobalStatistic

-(int)money {
return 99999;
}

-(int)coinsCount {
return 99999;
}

-(BOOL)itemIsBought:(id) {
return TRUE;
}

-(BOOL)buyItemWithPrice:(int)inCoins:(BOOL) {
return TRUE;
}

-(int)money {
return 99999;
}
%end

%hook PBExperienceManager

-(float)experienceForNextLevel {
return 0.1;
}

-(float)experienceForLevel:(unsigned int) {
return 0.1;
}
%end

%hook BMNotepadBaseItemCell

-(BOOL)itemBought {
return TRUE;
}
%end
  • Replies 34
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

Posted

 

Try this:

 

 Preprocessing Tweak.xm...
 Compiling Tweak.xm...
Tweak.xm:4:756: error: redefinition of
      '_logos_orig$_ungrouped$PBGlobalStatistic$money'
  ...SEL); static int (*_logos_orig$_ungrouped$PBGlobalStatistic$money)(PBGlo...
                        ^
Tweak.xm:4:14: note: previous definition is here
static int (*_logos_orig$_ungrouped$PBGlobalStatistic$money)(PBGlobalSta...
             ^
Tweak.xm:19:12: error: redefinition of
      '_logos_method$_ungrouped$PBGlobalStatistic$money'
static int _logos_method$_ungrouped$PBGlobalStatistic$money(PBGlobalStat...
           ^
Tweak.xm:3:12: note: previous definition is here
static int _logos_method$_ungrouped$PBGlobalStatistic$money(PBGlobalStat...
           ^
2 errors generated.
make[2]: *** [obj/Tweak.xm.b45140c6.o] Error 1
make[1]: *** [internal-library-all_] Error 2
make: *** [KickTheBuddy2_Hack.all.tweak.variables] Error 2
alis-iPad:/var/mobile/Projects/kickthebuddy2_hack root# make package
/var/mobile/Projects/kickthebuddy2_hack/theos/makefiles/targets/Darwin-arm/iphone.mk:43: Targeting iOS 4.0 and higher is not supported with iphone-gcc. Forcing clang.
/var/mobile/Projects/kickthebuddy2_hack/theos/makefiles/targets/Darwin-arm/iphone.mk:53: Deploying to iOS 3.0 while building for 6.0 will generate armv7-only binaries.
Making all for tweak KickTheBuddy2_Hack...
 Preprocessing Tweak.xm...
 Compiling Tweak.xm...
Tweak.xm:4:778: error: redefinition of
      '_logos_orig$_ungrouped$PBGlobalStatistic$money'
  ...SEL, int); static int (*_logos_orig$_ungrouped$PBGlobalStatistic$money)(...
                             ^
Tweak.xm:4:14: note: previous definition is here
static int (*_logos_orig$_ungrouped$PBGlobalStatistic$money)(PBGlobalSta...
             ^
Tweak.xm:17:122: error: expected class member or base class name
  ...self, SEL _cmd, int inCoins):(BOOL) {
                                  ^
Tweak.xm:17:122: error: expected '{' or ','
Tweak.xm:17:121: error: only constructors take base initializers
  ...self, SEL _cmd, int inCoins):(BOOL) {
                                 ^
Tweak.xm:18:78: error: too many arguments to function call, expected 3, have 5
_logos_orig$_ungrouped$PBGlobalStatistic$buyItemWithPrice$(self, _cmd, TRUE, 1, TRUE);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                   ^~~~~~~
Tweak.xm:21:12: error: redefinition of
      '_logos_method$_ungrouped$PBGlobalStatistic$money'
static int _logos_method$_ungrouped$PBGlobalStatistic$money(PBGlobalStat...
           ^
Tweak.xm:3:12: note: previous definition is here
static int _logos_method$_ungrouped$PBGlobalStatistic$money(PBGlobalStat...
           ^
Tweak.xm:32:115: error: expected class member or base class name
  ...self, SEL _cmd):(unsigned int) {
                     ^
Tweak.xm:32:115: error: expected '{' or ','
Tweak.xm:32:114: error: only constructors take base initializers
  ...self, SEL _cmd):(unsigned int) {
                    ^
Tweak.xm:33:75: error: too many arguments to function call, expected 2, have 4
_logos_orig$_ungrouped$PBExperienceManager$experienceForLevel(self, _cmd, 1, 1);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~             ^~~~
10 errors generated.

 

@Al00X Try this:

 

hook PBGlobalStatistic

-(int)money {
return 99999;
}

-(int)coinsCount {
return 99999;
}

-(BOOL)itemIsBought:(id) {
return TRUE;
}

-(BOOL)buyItemWithPrice:(int)inCoins:(BOOL) {
return TRUE;
}

-(int)money {
return 99999;
}
%end

%hook PBExperienceManager

-(float)experienceForNextLevel {
return 0.1;
}

-(float)experienceForLevel:(unsigned int) {
return 0.1;
}
%end

%hook BMNotepadBaseItemCell

-(BOOL)itemBought {
return TRUE;
}
%end

Won't Work ;(

Posted

 

 

Try this:

 

 Preprocessing Tweak.xm...
 Compiling Tweak.xm...
Tweak.xm:4:756: error: redefinition of
      '_logos_orig$_ungrouped$PBGlobalStatistic$money'
  ...SEL); static int (*_logos_orig$_ungrouped$PBGlobalStatistic$money)(PBGlo...
                        ^
Tweak.xm:4:14: note: previous definition is here
static int (*_logos_orig$_ungrouped$PBGlobalStatistic$money)(PBGlobalSta...
             ^
Tweak.xm:19:12: error: redefinition of
      '_logos_method$_ungrouped$PBGlobalStatistic$money'
static int _logos_method$_ungrouped$PBGlobalStatistic$money(PBGlobalStat...
           ^
Tweak.xm:3:12: note: previous definition is here
static int _logos_method$_ungrouped$PBGlobalStatistic$money(PBGlobalStat...
           ^
2 errors generated.
make[2]: *** [obj/Tweak.xm.b45140c6.o] Error 1
make[1]: *** [internal-library-all_] Error 2
make: *** [KickTheBuddy2_Hack.all.tweak.variables] Error 2
alis-iPad:/var/mobile/Projects/kickthebuddy2_hack root# make package
/var/mobile/Projects/kickthebuddy2_hack/theos/makefiles/targets/Darwin-arm/iphone.mk:43: Targeting iOS 4.0 and higher is not supported with iphone-gcc. Forcing clang.
/var/mobile/Projects/kickthebuddy2_hack/theos/makefiles/targets/Darwin-arm/iphone.mk:53: Deploying to iOS 3.0 while building for 6.0 will generate armv7-only binaries.
Making all for tweak KickTheBuddy2_Hack...
 Preprocessing Tweak.xm...
 Compiling Tweak.xm...
Tweak.xm:4:778: error: redefinition of
      '_logos_orig$_ungrouped$PBGlobalStatistic$money'
  ...SEL, int); static int (*_logos_orig$_ungrouped$PBGlobalStatistic$money)(...
                             ^
Tweak.xm:4:14: note: previous definition is here
static int (*_logos_orig$_ungrouped$PBGlobalStatistic$money)(PBGlobalSta...
             ^
Tweak.xm:17:122: error: expected class member or base class name
  ...self, SEL _cmd, int inCoins):(BOOL) {
                                  ^
Tweak.xm:17:122: error: expected '{' or ','
Tweak.xm:17:121: error: only constructors take base initializers
  ...self, SEL _cmd, int inCoins):(BOOL) {
                                 ^
Tweak.xm:18:78: error: too many arguments to function call, expected 3, have 5
_logos_orig$_ungrouped$PBGlobalStatistic$buyItemWithPrice$(self, _cmd, TRUE, 1, TRUE);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                   ^~~~~~~
Tweak.xm:21:12: error: redefinition of
      '_logos_method$_ungrouped$PBGlobalStatistic$money'
static int _logos_method$_ungrouped$PBGlobalStatistic$money(PBGlobalStat...
           ^
Tweak.xm:3:12: note: previous definition is here
static int _logos_method$_ungrouped$PBGlobalStatistic$money(PBGlobalStat...
           ^
Tweak.xm:32:115: error: expected class member or base class name
  ...self, SEL _cmd):(unsigned int) {
                     ^
Tweak.xm:32:115: error: expected '{' or ','
Tweak.xm:32:114: error: only constructors take base initializers
  ...self, SEL _cmd):(unsigned int) {
                    ^
Tweak.xm:33:75: error: too many arguments to function call, expected 2, have 4
_logos_orig$_ungrouped$PBExperienceManager$experienceForLevel(self, _cmd, 1, 1);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~             ^~~~
10 errors generated.

 

Looks like an error with your theos. :3 Did you install it correctly?

Posted

Lol ok i install it Again

Extract the SDK using iFile. :3

 

I get the same error too btw -_-

Posted

Extract the SDK using iFile. :3

 

I get the same error too btw -_-

ok

ok

done. and not worked

 

Extract the SDK using iFile. :3

 

I get the same error too btw -_-

done. And not worked

Posted

Take a look at this working tweak.xm  for buddyman:

%hook BMMenuItemStars
- (void)setStarsCount:(unsigned int)fp8 animated:(BOOL)fp12 {
fp12=true;
fp8=999999999;
%orig(fp8, fp12);
}
%end

%hook PBSlotsManager
-(unsigned int)getSpinsCount {
return 999999999;
}
%end

%hook PBGlobalStatistic
-(int)coinsCount {
return 999999999;
}
%end

Add your extra stuff but follow the above code.

Posted

Take a look at this working tweak.xm  for buddyman:

%hook BMMenuItemStars
- (void)setStarsCount:(unsigned int)fp8 animated:(BOOL)fp12 {
fp12=true;
fp8=999999999;
%orig(fp8, fp12);
}
%end

%hook PBSlotsManager
-(unsigned int)getSpinsCount {
return 999999999;
}
%end

%hook PBGlobalStatistic
-(int)coinsCount {
return 999999999;
}
%end

Add your extra stuff but follow the above code.

Dude..... i want to make buddyman 2 

Guest
This topic is now closed to further replies.
  • Our picks

    • Cats And The Forest v2.0.02 [ +3 Cheats ] Gold Unlimited
      Modded/Hacked App: Cats And The Forest By Super Carrot
      Bundle ID: com.SuperCarrot.CatsAndTheForest
      App Store Link: https://apps.apple.com/ph/app/cats-and-the-forest/id6746228951?uo=4

      🤩 Hack Features

      - Unlimited Gold / Enemy & Boss Drop
        • Winner
        • Like
      • 7 replies
    • ResQRush v3.3.1 [+2 Jailed Cheats]
      Modded/Hacked App: ResQRush By WGAME TECHNOLOGY LIMITED
      Bundle ID: com.wgame.resqrush
      App Store Link: https://apps.apple.com/us/app/resqrush/id6746140478?uo=4



      🤩 Hack Features

      - Never Die
      - One Hit Kill
       
        • Like
      • 2 replies
    • Dice Dreams™ V1.98.0 [ +9 Cheats ] Currency Max
      Modded/Hacked App: Dice Dreams™ By SuperPlay LTD
      Bundle ID: com.superplaystudios.dicedreams
      iTunes Store Link: https://apps.apple.com/us/app/dice-dreams/id1484468651?uo=4


      Hack Features:
      - Coins Max [ Disable Coins When Use Bet Multiplier ]

      - Rolls Unlimited 

      - Crowns [ Only For Card Upgrade ]

      - Shield [ Get Unlimited Rolls ]

      - Bet Multiplier [ Coins + Rewards ]

      - All Task Score + Rewards [ Linked Bet Multiplier ]

      - Next Kingdom [ Build One ]

      - Build Cost [ 0 ]

      - Premium Dreams Pass

      Warning:- Don't Blame Me Banned  Some Time Freeze Reopen Then Works


      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/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 118 replies
    • Dice Dreams™ V1.98.0 [ +9 Jailed ] Currency Max
      Modded/Hacked App: Dice Dreams™ By SuperPlay LTD
      Bundle ID: com.superplaystudios.dicedreams
      iTunes Store Link: https://apps.apple.com/us/app/dice-dreams/id1484468651?uo=4


      Hack Features:

      - Coins Max [ Disable Coins When Use Bet Multiplier ]

      - Rolls Unlimited 

      - Crowns [ Only For Card Upgrade ]

      - Shield [ Get Unlimited Rolls ]

      - Bet Multiplier [ Coins + Rewards ]

      - All Task Score + Rewards [ Linked Bet Multiplier ]

      - Next Kingdom [ Build One ]

      - Build Cost [ 0 ]

      - Premium Dreams Pass

      Warning:- Don't Blame Me Banned  Some Time Freeze Reopen Then Works

       
      Jailbreak required hack(s): https://iosgods.com/forum/5-game-cheats-hack-requests/
      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
      • 111 replies
    • Super Hero Ready! v1.0 [ +7 Cheats ] Currency Max
      Modded/Hacked App: Super Hero Ready! By Mohammad Ali Khademi
      Bundle ID: com.RonixGames.Super.Hero.Ready
      App Store Link: https://apps.apple.com/us/app/super-hero-ready/id6753682839?uo=4

      🤩 Hack Features

      - Unlimited Gems
      - Unlimited Coins
      - Unlimited Golden Keys
      - Unlimited Silver Keys
      - Unlimited Skill Token
      - Unlimited Fragment
      - Unlimited Gear
        • Winner
      • 4 replies
    • Super Hero Ready! v1.0 [ +7 Jailed ] Currency Max
      Modded/Hacked App: Super Hero Ready! By Mohammad Ali Khademi
      Bundle ID: com.RonixGames.Super.Hero.Ready
      App Store Link: https://apps.apple.com/us/app/super-hero-ready/id6753682839?uo=4

      🤩 Hack Features

      - Unlimited Gems
      - Unlimited Coins
      - Unlimited Golden Keys
      - Unlimited Silver Keys
      - Unlimited Skill Token
      - Unlimited Fragment
      - Unlimited Gear
        • Winner
      • 2 replies
    • Run! Goddess v1.0.37 [+3 Jailed Cheats]
      Modded/Hacked App: Run! Goddess By TOP GAMES INC.
      Bundle ID: com.topgamesinc.rg
      iTunes Store Link: https://apps.apple.com/us/app/run-goddess/id6667111749?uo=4



      🤩 Hack Features

      - No Skill Cooldown
      - Slow Enemy
      - Enemy Can't Attack (Enemy Can't Do Damage)
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 182 replies
    • Run! Goddess v1.0.37 [+3 Cheats]
      Modded/Hacked App: Run! Goddess By TOP GAMES INC.
      Bundle ID: com.topgamesinc.rg
      iTunes Store Link: https://apps.apple.com/us/app/run-goddess/id6667111749?uo=4

       

      🤩 Hack Features

      - No Skill Cooldown
      - Slow Enemy
      - Enemy Can't Attack (Enemy Can't Do Damage)
       
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 113 replies
    • Pal Go: Tower Defense TD v0.4.19 [+7 Cheats]
      Modded/Hacked App: Pal Go: Tower Defense TD By Playwind Ltd
      Bundle ID: com.playwindgames.freedefender
      iTunes Store Link: https://apps.apple.com/us/app/pal-go-tower-defense-td/id6479316663?uo=4


       

      🚀 Hack Features

      - [VIP] Freeze Currency (Currency will not decrease when used)

      - [VIP] Currency Always Enough (Buy even when you don't have enough currency)

      - [Free] Higher Recruit Energy (Gives 500 Recruit Energy Every Wave)

      - [Free] Always Can Drag Hero

      - [Free] Skip Ads

      - [Free] No Attack Cooldown

      - [Free] Global Speed Multiplier (Enable Inside Battle)

       

      Warning


      Do not use on main account. There is a chance of ban. Not responsible for any bans.

       


      🍏 For Non-Jailbroken & No Jailbreak required hacks: https://iosgods.com/forum/79-no-jailbreak-section/
      🤖 Modded Android APK(s): https://iosgods.com/forum/68-android-section/
        • Informative
        • Agree
        • Thanks
        • Winner
        • Like
      • 67 replies
    • Pal Go: Tower Defense TD v0.4.19 [+7 Jailed Cheats]
      Modded/Hacked App: Pal Go: Tower Defense TD By Playwind Ltd
      Bundle ID: com.playwindgames.freedefender
      iTunes Store Link: https://apps.apple.com/us/app/pal-go-tower-defense-td/id6479316663?uo=4


       

      Hack Features

      - [VIP] Freeze Currency (Currency will not decrease when used)

      - [VIP] Currency Always Enough (Buy even when you don't have enough currency)

      - [Free] Higher Recruit Energy (Gives 500 Recruit Energy Every Wave)

      - [Free] Always Can Drag Hero

      - [Free] Skip Ads

      - [Free] No Attack Cooldown

      - [Free] Global Speed Multiplier (Enable Inside Battle)

       

      Warning


      Do not use on main account. There is a chance of ban. Not responsible for any bans.

       

      Jailbreak required iOS hacks: https://iosgods.com/forum/5-game-cheats-hack-requests/
      Modded Android APKs: https://iosgods.com/forum/68-android-section/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 88 replies
    • Taichi Panda v6.9.1 +4 Jailed Cheats
      Modded/Hacked App: Taichi Panda by Snail Games USA, Inc.
      Bundle ID: com.snailgamesusa.taiji
      iTunes Store Link: https://itunes.apple.com/us/app/taichi-panda/id944892716?mt=8&uo=4&at=1010lce4


      Mod Requirements:
      - Non-Jailbroken/Jailed or Jailbroken iPhone/iPad/iPod Touch.
      - Cydia Impactor.
      - A Computer Running Windows/Mac/Linux.


      Hack Features:
      - No Skill Cooldown
      - Infinite MP
      - Disable Enemy Attacks
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 199 replies
    • Taichi Panda v6.9.1 +4 Cheats
      Modded/Hacked App: Taichi Panda by Snail Games USA, Inc.
      Bundle ID: com.snailgamesusa.taiji
      iTunes Store Link: https://itunes.apple.com/us/app/taichi-panda/id944892716?mt=8&uo=4&at=1010lce4


      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iFile / Filza / iFunBox / iTools or any other file managers for iOS.
      - Cydia Substrate (from Cydia).
      - PreferenceLoader (from Cydia).


      Hack Features:
      - No Skill Cooldown
      - Infinite MP
      - Disable Enemy Attacks


      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/


      Hack Download Link:

      Hidden Content

      Download Hack








      Installation Instructions:
      STEP 1: Download the .deb Cydia hack file from the link above.
      STEP 2: Copy the file over to your iDevice using any of the file managers mentioned above or skip this step if you're downloading from your iDevice.
      STEP 3: Using iFile or Filza, browse to where you saved the downloaded .deb file and tap on it.
      STEP 4: Once you tap on the file, you will then need to press on 'Installer' or 'Install' from the options on your screen.
      STEP 5: Let iFile / Filza finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
      STEP 6: Now open your iDevice settings and scroll down until you see the settings for this cheat and tap on it. If the hack is a Mod Menu, the cheat features can be toggled in-game.
      STEP 7: 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 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, post your feedback below and help out other fellow members that are encountering issues.


      Credits:
      - @ZahirSher


      Cheat Video/Screenshots:

      N/A

       
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 568 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