Jump to content

KingRalph

Senior Member
  • Posts

    1,300
  • Joined

  • Last visited

Everything posted by KingRalph

  1. %hook MyMainGame - (int)SYS_GetRemainderJewel:(id)arg1 { return %orig(999999, arg1); } %end You need to learn more about programming objective c
  2. GDB has issues and is not under active development. There is a significant lldb setup tutorials on this site, I suggest you use one of them.
  3. Added github link! View the source code on github.com!
  4. Reinstall your theos with setuptheos, then add the following code to the top of your makefile TARGET = iphone:clang:latest ARCHS = armv7 armv7s arm64
  5. Start learning python at http://codeacademy.com Once you complete the online course, learning other languages will become easier.
  6. Install this package cydia://package/net.angelxwind.completeppsyncremover
  7. Use github pages to host your site. To use a custom domain name, make a file named CNAME in your github pages site, and put your custom domain name inside the file.
  8. Run the following code in mobile terminal apt-get update
  9. But he can at least point the OP in the right direction...
  10. New update for setuptheos: mac version 1.1.1 - No more options for setuptheos, as there is no longer any need for them ios version 1.0.9.8 - Major changes to setuptheos for iOS
  11. What is "reverse IDA"?
  12. Run this command in your tweak directory: make You can move the dylibs to /Library/MobileSubstrate/DynamicLibraries
  13. Or until they press the thanks button. It depends on what section you posted in
  14. You don't use %orig in this case
  15. TBH, it doesn't make much of a difference, but using nil instead of NULL is generally a better habit. (Due to system level programming) EDIT: I just remembered that %orig calls the original function. The (correct) answer to your question, is: %hook CLPEngine -(void)removeSubsriptionTimeObserver:(id)arg1 { arg1 = nil; } %end
  16. This is the answer to your question: %hook CLPEngine -(void)removeSubsriptionTimeObserver:(id)arg1 { %orig(nil) } %end
  17. I think I know what the problem is. Please wait until I update setuptheos
  18. Let's take a look...
×
  • 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