Jump to content

Rook

Administrator
  • Posts

    66,565
  • Joined

  • Last visited

Everything posted by Rook

  1. If you're on iOS 8 yeah, go ahead. Better than staying non-jailbroken.
  2. iGameGuardian = Initialization Failed. Maybe it's just me. Gameplayer opens up but didn't test it thoroughly.
  3. Flex 2 works but you can only see system apps Mobile Terminal doesn't work but you can use other terminals like PuTTy or Kitty. iFile works with a fix mentioned here but it's unregistered: https://www.google.com/url?q=http://iosgods.com/topic/2185-tutorial-how-to-get-ifile-working-on-ios-81x/&sa=U&ei=5GZRVNDyIfGP7AbU34GgDQ&ved=0CAYQFjAA&client=internal-uds-cse&usg=AFQjCNFLmlCOndwC2xNl24tR6ZQ42G8nBA PreferenceLoader works last time I checked LocalIAPStore works. Testing others
  4. What problem you facing?
  5. There is no password, it's just CAPCHA.
  6. Nice one! There's also Pandora Downloader which lets you download music from Pandora. Fixed your topic up a bit
  7. I'm going to merge this with the other topic
  8. Rook

    =-=-=-=-=-=

    I think there is already one posted?
  9. Too late http://iosgods.com/topic/2235-appcake-working-on-ios-8xx/
  10. Should we keep locking them after they're solved or should we leave them open?
  11. Example: http://pastebin.com/W7TEk09e You need to read more tutorials: http://iosgods.com/topic/831-tutorial-how-to-hack-using-mobile-substrate-method-hooking/ (read near the end) Make sure you have added myhack_FRAMEWORKS = UIKit in the makefile.
  12. Dude. Don't leave your first post like this. Edit it back the way it was when you asked the question and maybe post your solution here so it helps everyone else. Open a terminal and type this in: make package messages=yes It'll show you everything that's happening during the build phase and it'll show you where the error is coming from.
  13. Did Furoow mark his comment as solved? :angry: Build your tweak based on this: %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
  14. That is BuddyMan2
  15. 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.
  16. Extract the SDK using iFile. I get the same error too btw
  17. Looks like an error with your theos. Did you install it correctly?
  18. Try this: %hook PBGlobalStatistic -(int)money { return 99999; } -(int)coinsCount { return 99999; } -(BOOL)itemIsBought:(id)id { return TRUE; id = [NSNumber numberWithBool:TRUE]; %orig(id); } -(BOOL)buyItemWithPrice:(int)inCoins:(BOOL) { %orig(TRUE, 1, TRUE); } -(int)money { return 99999; } %end %hook PBExperienceManager -(float)experienceForNextLevel { return 1; } -(float)experienceForLevel:(unsigned int) { %orig(1, 1); } %end %hook BMNotepadBaseItemCell -(BOOL)itemBought { return TRUE; } %end
  19. Where's the repo for the theme?
  20. Now we're going to have to add instructions for both iOS8 & iOS7
  21. Moved to DIY Cheats. :thumbsup:
×
  • 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