Jump to content

Bummibaer

Senior Member
  • Posts

    336
  • Joined

  • Last visited

Everything posted by Bummibaer

  1. Where exactly do you upload anything in iFile?
  2. As far as I know Apple does not sign versions below 10.2.1 anymore. So it is not possible for now to do both, update and jailbreak.
  3. Nice, thank you.
  4. It should, but I had a problem where I renamed some stuff in my patcher and forgot to rename the pref bundle name in the Tweak.xm and had problems, too.
  5. I mean, maybe you have a typo in the preference bundle's file name. Maybe there is no file at /var/mobile/Library/Preferences/com.iosgods.postknightgaius.plist which would lead to falsy return values of your GetPrefBool function.
  6. I know, the crash part war in reference to shmoo's answer where he told you the game would crash if the codes were wrong.
  7. If you don't mind using alternatives I can recommend RecordMyScreen. It's a free open source screen recorder.
  8. Is there a file under this path with this exact name? The game wouldn't crash if the data is never written due to GetPrefBool always returning false.
  9. According to this you need to connect to your device with ssh over usb and change the password before using it over the network.
  10. Damned, I've read about removing them but removing stuff didn't seem like a good idea to me.
  11. No idea if that's even related but have you executed this? cd /usr/bin ldid -s clang ldid -s clang++
  12. Which version of Theos are you running and where did you get it?
  13. Run make package messages=yes and show your output please.
  14. Try this: https://github.com/theos/sdks
  15. Do you have an SDK installed? The pthread.h should be in there at ./sdks/iPhoneOSX.Y.sdk/usr/include/pthread.h if I remember correctly.
  16. Haha nice, he looks like he found an unconscious Link and is up to no good.
  17. Have you tried "Ace Sierra X"?
  18. Could you show your Tweak.xm? Looks like there is an error in there.
  19. The reason why I would want that is stated in my suggestion.
  20. Could you show your Makefile?
  21. You could ask DiDa to delete it. Or you could put a direct link in here if you want the people's opinion and not only money from ads.
  22. It would be awesome if the shoutbox would be more permanent. Like, instead of 20 shouts show all the shouts so people can follow discussions which started more than 20 shouts ago.
  23. I somehow can't get this to work. I found the headers and methods using Flex 2 and modifying the return values works there. But when I put it into code absolutely nothing happens in the game. I tried a simple game called 94% which hasn't too many options, so I thought it would be good for a start. Tweak.xm: #import <UIKit/UIKit.h> %hook NPLevelMapping -(bool)isUnlockedLevelIdentifier:(id)argument { return true; } %end %hook LLAppDelegate -(void)applicationDidBecomeActive:(id)argument { UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Title" message:@"Message" delegate:nil cancelButtonTitle:@"Cancel Button" otherButtonTitles:@"Another Button", nil ]; [alert show]; [alert release]; } %end Makefile: include theos/makefiles/common.mk TWEAK_NAME = 94hack 94hack_FILES = Tweak.xm 94hack_FRAMEWORKS = UIKit include $(THEOS_MAKE_PATH)/tweak.mk after-install:: install.exec "killall -9 SpringBoard" 94hack.plist: { Filter = { Bundles = ( "com.scimob.94percent" ); }; } Any idea what's wrong with my code?
×
  • 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