-
Posts
336 -
Joined
-
Last visited
Everything posted by Bummibaer
-
Where exactly do you upload anything in iFile?
-
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.
-
Nice, thank you.
-
Help/Support Patcher showing up in settings, but not working ingame..
Bummibaer replied to Juku's topic in Help & Support
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. -
Help/Support Patcher showing up in settings, but not working ingame..
Bummibaer replied to Juku's topic in Help & Support
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. -
Help/Support Patcher showing up in settings, but not working ingame..
Bummibaer replied to Juku's topic in Help & Support
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. -
Help/Support Screen recorder iOS 10 jailbreak
Bummibaer replied to Samollthecamel's topic in Help & Support
If you don't mind using alternatives I can recommend RecordMyScreen. It's a free open source screen recorder. -
Help/Support Patcher showing up in settings, but not working ingame..
Bummibaer replied to Juku's topic in Help & Support
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. -
Nice, thank you.
-
Help/Support iOS 10.2 SSH issues with dropbear
Bummibaer replied to ApolloS's topic in Help & Support
According to this you need to connect to your device with ssh over usb and change the password before using it over the network. -
Help/Support MTerminal, Fatal error: pthread.h file not found
Bummibaer replied to Profq's topic in Help & Support
Damned, I've read about removing them but removing stuff didn't seem like a good idea to me. -
Help/Support MTerminal, Fatal error: pthread.h file not found
Bummibaer replied to Profq's topic in Help & Support
No idea if that's even related but have you executed this? cd /usr/bin ldid -s clang ldid -s clang++ -
Help/Support MTerminal, Fatal error: pthread.h file not found
Bummibaer replied to Profq's topic in Help & Support
Which version of Theos are you running and where did you get it? -
Help/Support MTerminal, Fatal error: pthread.h file not found
Bummibaer replied to Profq's topic in Help & Support
Run make package messages=yes and show your output please. -
Help/Support MTerminal, Fatal error: pthread.h file not found
Bummibaer replied to Profq's topic in Help & Support
Try this: https://github.com/theos/sdks -
Help/Support MTerminal, Fatal error: pthread.h file not found
Bummibaer replied to Profq's topic in Help & Support
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. -
GFX Tingle - Legend of Zelda
Bummibaer replied to WolfDesigns's topic in GFX Club's GFX - Graphic Studio
Haha nice, he looks like he found an unconscious Link and is up to no good. -
DIY Hack Postknight +10 [Unlimited Gems, Godmode...]
Bummibaer replied to Joka's topic in DIY Cheats
Nice. -
Help/Support Mac(OS Sierra) Experience on iOS
Bummibaer replied to omega6ix's topic in Help & Support
Have you tried "Ace Sierra X"? -
Could you show your Tweak.xm? Looks like there is an error in there.
-
The reason why I would want that is stated in my suggestion.
-
Help/Support Function must be greater than 0. stop
Bummibaer replied to Profq's topic in Help & Support
Could you show your Makefile? -
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.
-
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.
-
[TUTORIAL] How To Hack Using Mobile Substrate (Method Hooking)
Bummibaer replied to EvillyG00d's topic in Tutorials
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?