-
Posts
2,379 -
Joined
-
Last visited
Everything posted by castix
-
- (unsigned long long)downloads { return 9999; } @@Shmoo419 unsigned long long also exists
-
void (old*_Slot_SetMaxHP) (void *self)(int i1); void Slot_SetMaxHP (void *self)(int i1) { return old_Slot_SetMaxHP(self, 9999); } %ctor { MSHookFunction(((void*)MSFindSymbol(NULL,"__YourOriginalSymbol")),(void*)Slot_SetMaxHP,(void**)&old_SlotSetMaxHP); } The only thing you have to do is replace 'YourOriginalSymbol' with the one from IDA. I saw your function has an integer argument so I put it like void(argument)
-
Help/Support I need help with this method im trying to use on my tweak
castix replied to ProCydia's topic in Help & Support
Solves your problem - (void)postFollowResult:(BOOL)fp8 (id)fp12 (id)fp16 (id)fp20 { return %orig(true, fp12, fp16, fp20); } Here's the patcher - (void)postFollowResult:(BOOL)fp8 (id)fp12 (id)fp16 (id)fp20 { if(GetPrefBool(@"kAid")) { return %orig(true, fp12, fp16, fp20); } return %orig; } You are not the real ProCydia -
An idea from me: Instead leading to an advert you should use your PayPal donation link However replace the 'iOSGods.com' with whatever comes in your mind /* Inside your Tweak.xm */ UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Example" message:@"Example Text Here" delegate:self cancelButtonTitle:@"Dismiss" otherButtonTitles:@"Website",nil]; [alert show]; } /*Inside your PreferenceBundle.mm */ - (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex { NSString *title = [alertView buttonTitleAtIndex:buttonIndex]; if([title isEqualToString:@"Website"]) { [[UIApplication sharedApplication] openURL:[NSURL URLWithString: @"http://iOSGods.com"]]; } }
-
Help/Support Help with Converting flex void values to Patcher
castix replied to Insidious's topic in Help & Support
Mmhm I'm enjoying this so much haha you can't imagine ! However I will help you because I've got a bit compassion First of all, in downloaded patches from other users every class-type will be displayed as void. You can see it because in the second picture it's returned a boolean so obviously not void (or it won't work). To disable a void function is really easy. Just leave the block empty - (void)someFunction { } In a patcher, well that's also not a big change - (void)someFunction { if(GetPrefBool(@"kSomething")) { } // Or ' return; ' return %orig; } or void someFunction(void *self) { if(GetPrefBool(@"kSomething")) { } else { old_someFunction(self); } } -
GFX [REQUEST] iOSGods Hacking BackGround for PC
castix replied to FuroowHD's topic in GFX Club's GFX Requests
Can you upload it elsewhere than ony rapidgator please. -
I think it's LDR R1, PC BX LR
-
It means the binary doesn't have ASLR at all
-
GFX [REQUEST] iOSGods Hacking BackGround for PC
castix replied to FuroowHD's topic in GFX Club's GFX Requests
@@ProtoRug can I order one too ^^ -
Help/Support Need Help With -(void)link { Error for My Patcher
castix replied to FateEX's topic in Help & Support
DO NOT they are not updated and will screw up your substrate.h iOSurface is open source. It's even on rpetrich's GitHub but you have to create the file with the content manually -
Help/Support Need Help With -(void)link { Error for My Patcher
castix replied to FateEX's topic in Help & Support
Delete your /include folder and replace it with mine (https://www.dropbox.com/s/o0a1ftt43idtvbi/include.zip?dl=0) Check the directory you saved te SDK to get the version. The extension is iPhoneOSXX.X.sdk -
It's no big deal that's why I want to keep it short and simple but Intros in general give something like a reminder from who the videos are and what it is
-
Hello ladies and gentleman. This should be just a fun project for me at the beginning, who knows how it develops. So basically I need a YouTube as the title says. I am going to review any content, updates, news what's going around the forum. if there is already a channel for that, I don't care I make my own though. I thought about something very basic compareable to iDownloadBlog (myjailbreakmovies). They have got a simple banner or logo and only 3 seconds of a melody. Mine should be with plain text instead. Be creative ! That's why I came here. Rotating or spinning letters would be cool but really, keep it simple. This is what I found so far on YouTube It could also be a word that becomes visible in rotations letter by letter. Please fire your ideas and submissions down below
-
Help/Support Need Help With -(void)link { Error for My Patcher
castix replied to FateEX's topic in Help & Support
No But I think the errors come from his /theos/include folder. When a header is outdated or from a different ARM device it won't work. @ have you modified or replaced any headers in the past few days ? -
Help/Support Need Help With -(void)link { Error for My Patcher
castix replied to FateEX's topic in Help & Support
1. Statement : agreed 2. Statement : No it will work eitherway. However he can add export ARCHS = arm64 armv7 to give it 64-Bit support if his device is not (Only neccessary when it's below iPhone 5S) clang is not needed to be added because it's automatically forced. -
You can't do things you can't do. Don't start with the roof when the foundation is not there. Learn what the instuctions do. Look where they lead to. Find connections. Make discoveries ... maybe one or two of these keywords help you to come along with IDA.
-
Request (REQUEST)[SOLVED] Royal Revolt 2 v1.6.0
castix replied to Pahalawan78's topic in Filled iOS App Requests
Sorry couldn't get it work the app always crashes after hacking it -
Request (REQUEST)[SOLVED] Royal Revolt 2 v1.6.0
castix replied to Pahalawan78's topic in Filled iOS App Requests
On the way! I already found cool stuff like unlimited troop deployment. I keep you up to date -
They were pretty much useless so why keep them.
-
Help/Support Help With Different Kind of Code Injection
castix replied to FateEX's topic in Help & Support
Like I said above I have no idea about HEX because HEX is not a NSIdentifier like boolean, integer or float but technically that's the Preference Specifier you want. You just need to find someone who knows how to. -- You can use the .plist code above with the online generator now: http://armconverter.com/mshookgenerator/ -
Help/Support Help With Different Kind of Code Injection
castix replied to FateEX's topic in Help & Support
I see what you mean is PSLinkListCell <dict> <key>cell</key> <string>PSLinkListCell</string> <key>detail</key> <string>PSListItemsController</string> <key>defaults</key> <string>Example</string> <key>key</key> <string>kExample</string> <key>label</key> <string>Example</string> <key>validTitles</key> <array> <string>Option 1</string> <string>Option 2</string> <string>Option 3</string> <string>Option 4</string> <string>Option 5</string> </array> <key>validValues</key> <array> <integer>Value Of Option 1</integer> <integer>Value Of Option 2</integer> <integer>Value Of Option 3</integer> <integer>Value Of Option 3</integer> <integer>Value Of Option 4</integer> <integer>Value Of Option 5</integer> </array> </dict> -
Help/Support Help With Different Kind of Code Injection
castix replied to FateEX's topic in Help & Support
This is iOS 6 ^^