Jump to content

imp0ss1ble

Senior Member
  • Posts

    205
  • Joined

  • Last visited

1 Follower

Profile Information

  • iDevice
    iPhone 13 Mini
  • iOS Version
    9.0.2
  • Gender
    Not Telling

Recent Profile Visitors

4,849 profile views

imp0ss1ble's Achievements

Newbie

Newbie (1/14)

  • Popular

Recent Badges

715

Reputation

  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
×
  • 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