Jump to content

imp0ss1ble

Senior Member
  • Posts

    205
  • Joined

  • Last visited

Everything posted by imp0ss1ble

  1. ( ͡° ͜ʖ ͡°) ⎛⎝ ⎠⎞
  2. changing your mac address is one of the most dangerous thing you can do.
  3. I missed the %orig thing in the tool. It will be fixed in next update.
  4. maybe there's no coin function in the game
  5. #define PLIST_PATH @"/var/mobile/Library/Preferences/prefbundle.plist" inline bool GetPrefBool(NSString *key) { return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue]; } %hook LikeHubUser - (void)setCoins:(long) arg1 { if(GetPrefBool(@"ksetCoin")) { arg1 = 900; } %orig (arg1); } - (long)coins { if(GetPrefBool(@"kCoin")) { return 900; } return %orig; } %end %hook MATUtils + (BOOL)checkJailBreak { if(GetPrefBool (@"kcheckJailBreak")) { return false; } return %orig; } %end %hook SPJailbreakStatusProvider + (BOOL)isJailbroken { if(GetPrefBool(@"kisJailbroken")) { return false; } return %orig; } %end
  6. ( ͡° ͜ʖ ͡°)

  7. you are missing some header or framework. UIAlert is somewhere in UIKit. try import uikit framework
  8. c holyt shit you actually hacked it!! :O or is this visual only oh ok this client side
  9. you have openssh installed?
  10. if its just the sb that crash you should be able to ssh in
  11. https://iosgods.com/topic/23129-flex-converter-convert-your-flex-patch-to-tweak-code-in-no-time/ source code [Hidden Content]
  12. Im gonna post source code in coding center once i finished id hooking
  13. ver 0.1.1 id hooking now supported!!(NSString and NSNumber only) Im not doing UIColor and NSDate cus I dunno how and i doubt anyone need it 2 known bugs 1. hooking method with more than 1 arg is not working properly 2. void hooking require you to add the %orig() yourself Im working on it FlexConverter is a tool that allow you to convert your Flex patch to tweak code. It is very easy to use. All you have to do is open terminal and type in FlexConverter YourPatchName and your tweak code is in your clipboard! Instructions 1. Download the .deb 2. Install it. 3. Run FlexConverter <YourPatchName> in terminal or ssh The code will be copied to your clipboard. 4. Open your tweak file (usuallyTweak.xm) and paste the code. Features Convert int, bool, float, NSString and NSNumber hooking Download Link [Hidden Content]
×
  • 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