-
Posts
2,379 -
Joined
-
Last visited
Everything posted by castix
-
Help/Support What's the Bundle ID for Payments/Transactions iOS?
castix replied to JustinPet26's topic in Help & Support
You should credit Kenny and me for posting how to get free inAP purchases similar to LocaliAPStore. If you didn't use it we still posted the exact code for it so you can't say it's your own thing Referencing to Kenny's iAPGod thread in the hidden section -
This is not a Android forum Maybe the Clash Of Gems server or whatever modded version it is has a maintenance
-
Help/Support PFHeaderCell Animated Gif image?
castix replied to NeverBeing's topic in Help & Support
Hang on. Andrios uses a different method for the headers. I will teach you how later -
Hack Summoners war Anti Ban/Cheat Protection tweak [Hack Not working]
castix replied to Insidious's topic in Free Jailbreak Cheats
If it's a real Anti-Ban you should try the Champion Tower & E10 dungeons for a week. Then you'll know -
Patcher [UPDATE] Dungeon Quest v1.8.1.1 Hack +3
castix replied to Mayaxaya's topic in Free Jailbreak Cheats
Soon you will become an awesome cheater -
Yea but your post is even more wrong
-
#import <UIKit/UIKit.h> %hook SpringBoard - (void)applicationDidFinishLaunching:(id)application { UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Test 1" message:@"Test!" delegate:self cancelButtonTitle:@"Thanks" otherButtonTitles:nil]; [alert show]; [alert release]; } %end That's all you need to get the same effect
-
General Forgot my iPhones Lockcode/passcode. What to do?
castix replied to NotEriic's topic in General Talk
SSH into your device using WinSCP or any other tool and install one of the packages from above. You can do that by moving the file into /var/root/Media/Cydia/AutoInstall and then reboot -
Help/Support Help with NSTimer and Code Injection - theos
castix replied to Curtain's topic in Help & Support
No your Tweak.xm? -
- (double)timeLeftOnCountdown { return 1.0; }
-
Help/Support Theos Illegal instruction 4 fix when running NIC
castix replied to mehdiphone's topic in Help & Support
You don't have to. Run this bash script sed -i'' 's/\x00\x30\x93\xe4/\x00\x30\x93\xe5/g;s/\x00\x30\xd3\xe4/\x00\x30\xd3\xe5/g;' /usr/bin/perl -
Help/Support Theos Illegal instruction 4 fix when running NIC
castix replied to mehdiphone's topic in Help & Support
You are missing an Unix package... Perl -
Help/Support Theos Illegal instruction 4 fix when running NIC
castix replied to mehdiphone's topic in Help & Support
Do the fix for 64-bit devices -
Help/Support Help with NSTimer and Code Injection - theos
castix replied to Curtain's topic in Help & Support
NSTimer *t = [NSTimer scheduledTimerWithTimeInterval: 2.0 target: self selector:@selector(onTick:) userInfo: nil repeats:NO]; -(void)onTick:(NSTimer *)timer { //Your code } -
Help/Support How to make UIALertView on preference_bundle NIC template?
castix replied to NeverBeing's topic in Help & Support
Year because it's my own exploit and not a tutorial from the internet -
You get it - (void)callMethod { } disables a method by the way because nothing gets executed. Also you can return an id more than 2 ways but nvm for now. %orig always calls the original code so it doesn't change if you return it to an id
-
What do you mean 'kind of returns'. You can return what you want there are no restrictions (except function cast) how you return a method. Nil and NULL are not return types. It's just one of many ways. You shouldn't stick with Flex terms. They get you mad in Objective-C coding a lot because you feel urged to translate the code word by word but that's not how it works. - (void)callMethod { } - (void)callMethod { %orig; } is the same, however 'pass-trough' at arguments in Flex means that they are just not used but not in Objective-C
-
You can return everything to anything ."Pass-through" or how you Flex people call it is %orig
-
https://www.virustotal.com/de/file/954adeb5890694637b54144d4de7b44294d4d15802f2323b3148b863cd3c126e/analysis/1430670374/
-
Help/Support How to put this on Tweak.xm and compile it without errors?
castix replied to xC3FFF0E's topic in Help & Support
The solution is so clear and easy: Remove fp8 = nil; return 1(fp8); and change it to fp8 = nil; return 1; Also take a look here http://iosgods.com/topic/5978-need-help-with-these-arguments/ -
Help/Support How to put this on Tweak.xm and compile it without errors?
castix replied to xC3FFF0E's topic in Help & Support
Send me a screenshot. I don't know which line 39 is -
Help/Support How to put this on Tweak.xm and compile it without errors?
castix replied to xC3FFF0E's topic in Help & Support
The UI is shit but it simply works: http://iosgods.com/topic/5229-beginner-cheat-generator/ - (long long)xxxxx:(id)fp8 { fp8 = nil; return 1234(fp8); } -
Help/Support How to put this on Tweak.xm and compile it without errors?
castix replied to xC3FFF0E's topic in Help & Support
You should really use my Cheat Generator - (id)xxxxx:(long long)fp8 { fp8 = 1234; return nil(fp8); } - (void)xxxxx:(id)fp8 { fp8 = nil; return %orig(fp8); } - (id)xxxxx:(id)fp8 xxxxx:(id)fp12 { fp8 = nil; fp12 = nil; return %orig(fp8, fp12); } - (id)xxxxx:(id)fp8 { fp8 = nil; return nil(fp8); }