Jump to content

Crypto

Senior Member
  • Posts

    3,170
  • Joined

  • Last visited

Everything posted by Crypto

  1. Hello
  2. @Aarivex Don't forget Jailbreak Detections isJailbroken (bool) jailBroken (bool) jailbroken (bool) isDeviceJailbroken (bool) hostJailbroken (bool) getIsJailBroken (id) = you can null it
  3. You'll have to find the right .SAM file and bruteforce it. I'm pretty sure you can find some decent tutorials on bruteforcing. Goodluck
  4. You're in the No_Backup folder...?
  5. Hiding is not required lol.
  6. Welcome
  7. Hello, I suggest reading the forum rules before asking questions. It will answer some of your forum questions for your issue, you can look at many topic by replying or leaving a thanks so the "hidden content" opens up hope this helped. If you need more help, feel free to post in the support section. P.S, you need 3 posts before making a topic. Have fun and welcome to iOSGods.
  8. It's probably a bug. You either wait until they fix it or send them an email stating your issue
  9. Oh it's not there when your on moble-mode. Next to the URL iosgods.com, keep your finger on the refresh button until a "request desktop site" pops up. Or just do it on your pc
  10. The code seems fine, not sure what's wrong :S. @castix
  11. Copy paste the code, then select them all and click on the "code" tag
  12. I'm not sure but I think it's an argument that he just re-named
  13. Can you show me the flex patch?
  14. You're saying that Godmode has the multi-switches but in your preference plist, you set it as another key... Which key is the godmode?
  15. The topic got deleted
  16. Try this. Tweak.xm: #define PLIST_PATH @"/var/mobile/Library/Preferences/com.iosgods.happyw.plist" inline bool GetPrefBool(NSString *key) { return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue]; } #include <Foundation/Foundation.h> %hook Session -(float)gravity { if(GetPrefBool(@"key1")) { return -5.00f; } return %orig; } %end %hook CharacterB2D -(void)headSmash:(float)argument1 { if(GetPrefBool(@"key2")) { argument1 = 9999999.0f; } return %orig; } %end %hook CharacterB2D -(void)chestSmash:(float)argument2 { if(GetPrefBool(@"key2")) { argument2 = 9999999.0f; } return %orig; } %end %hook CharacterB2D -(void)pelvisSmash:(float)argument3 { if(GetPrefBool(@"key2")) { argument3 = 999999.0f; } return %orig; } %end %hook SomethingElse -(BOOL)SomeMethod { if(GetPrefBool(@"key3")) { return TRUE; } return %orig; } %end Preference Plist: dict> <key>cell</key> <string>PSSwitchCell</string> <key>default</key> <false/> <key>defaults</key> <string>com.iosgods.happyw</string> <key>key</key> <string>key1</string> <key>label</key> <string>LowGravity</string> </dict> <dict> <key>cell</key> <string>PSGroupCell</string> <key>footerText</key> <string>You can only die through arrow/harpoon/spikes</string> </dict> <dict> <key>cell</key> <string>PSSwitchCell</string> <key>default</key> <false/> <key>defaults</key> <string>com.iosgods.happyw</string> <key>key</key> <string>key2</string> <key>label</key> <string>GodMode</string> </dict> <dict> <key>cell</key> <string>PSGroupCell</string> <key>footerText</key> <string>This text will appear under your fourth switch.</string> </dict> <dict> <key>cell</key> <string>PSSwitchCell</string> <key>default</key> <false/> <key>defaults</key> <string>com.iosgods.happyw</string> <key>key</key> <string>key3</string> <key>label</key> <string>GodMode</string> </dict>
  17. Welcome
×
  • 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