-
Posts
66,365 -
Joined
-
Last visited
Everything posted by Rook
-
I'm not sure but where did you get com.apple.messages from? I think it's com.apple.mobilesms or com.apple.mobilesms.compose
-
Actually, I think the iOS 8 caching has been fixed after UiKit got updated so I don't think you have to reboot for it to show now.
-
Which one? Directory not found?
-
Your email link has been removed. @
-
You're welcome
-
Hello! It's nice to have you here! Enjoy your stay!
-
Just add an ";" after the argument = 0 and orig (argument).
-
http://iosgods.com/topic/2333-gamegem-the-compatible-memory-scanner-for-ios-8x-8xx/ iGameGuardian is being updated for iOS 8 and there's a chance it could be free!? -- And try installing Gameplayer from the official repo: apt.zntx.cc
-
Updated template: To easily generate Tweak.xm and your Preferences Plist, use the new Code Inject generator here: https://iosgods.com/topic/24138-code-inject-generator-online-tweakxm-preferencesplist/ Hey everyone! I wanted to make a custom Patcher template for myself so I could make hacks easily without having to go through editing all the files over and over again... Well, I made the custom New Instance Creator CSCI Patcher Template and thought I'd share it with everyone else. What is this? This is a custom patcher template for the New Instance Creator. What does this do? You know how you have to make a tweak project and then cd into that folder and make a subproject of the tweak project to make it into a patcher? This template makes it so all you have to do is press number 1, type in your info and your patcher project folder will be created. How to use it? Open up a terminal, type in: /var/theos/bin/nic.pl and select [x.] iOSGods CSCI Patcher v2.1 from the list. What are the features? 1. The Preference Bundle will look like this by default but you can change anything to whatever you like. 2. Auto added support for ARM64 architecture. 3. PROJECTNAME_FRAMEWORKS = UIKit is there. 4. iOSGods.com link is there also. 6. Some other cool stuff. Tweak.xm content: #import "writeData.h" #import <Foundation/Foundation.h> #import <UIKit/UIKit.h> #import <substrate.h> /* To MSHook Offsets, use https://iosgods.com/topic/22718-mshook-tweakpatcherfunction-tweakpatcher-withwithout-psedittextcellpsslidercell-generator-online/ */ /* To Easily Generate Tweak.xm and Preferences Plist https://iosgods.com/topic/24138-code-inject-generator-online-tweakxm-preferencesplist/ */ #define PLIST_PATH @"/var/mobile/Library/Preferences/@@PACKAGENAME@@.plist" inline bool GetPrefBool(NSString *key) { return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue]; } %ctor { if(GetPrefBool(@"key1")) { writeData(0xOFFSET, 0xHEX); } else { } if(GetPrefBool(@"key2")) { writeData(0x10963C, 0xC0F8AC70); } else { } if(GetPrefBool(@"key3")) { writeData(0x10ACEA, 0xC0F8C871); } else { } if(GetPrefBool(@"key4")) { writeData(0x1806B8, 0x381C); writeData(0x2FA51C, 0x381C); writeData(0x1806B8, 0x7047); writeData(0x1806B8, 0x7047); } else { } } /* Popup with a link Varieties of a UIAlertView Popup can be found here: https://iosgods.com/topic/13988-varieties-of-uialertview-types-to-use-in-your-tweaks-patchers/ */ %hook AppDelegate // Change this with your Application's Delegate. AppController, UnityAppController, GameDelegate etc. - (BOOL)application:(id)fp8 didFinishLaunchingWithOptions:(id)fp12 { // Popup only once at each launch of the app. UIAlertView *igcredits = [[UIAlertView alloc] initWithTitle:@"@@PROJECTNAME@@ Cheats" message:@"\n@@PROJECTNAME@@ Cheats by @@[member='User']@@ for iOSGods.com" delegate:self cancelButtonTitle:@"Thanks" otherButtonTitles:@"Visit Us", nil]; [igcredits show]; [igcredits release]; return %orig(); } %new -(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex { NSString *button = [alertView buttonTitleAtIndex:buttonIndex]; if([button isEqualToString:@"Visit Us"]) { [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"https://iosgods.com/"]]; } } %end Download: [Hidden Content] How to install: 1. Download the Archive above. 2. Copy and paste the archive to /var/theos/templates/iphone 3. Run NIC and select the iOSGods CSCI Patcher v2.1 option. Template patcher can be found here: https://iosgods.com/topic/1907-update2template-custom-nic-patcher-template/ Credits: @DiDA @Razzile for WriteData - The template is also on GitHub so if you have ideas on how to improve it. https://github.com/iOSGods/CS-Code-Injection-Template
- 145 replies
-
- 104
-
-
-
-
-
-
-
Posted it in the Cheater Section.
-
You need PreferenceLoader installed from Cydia for the Settings Pane to display. Also, this is the updated Mod: http://iosgods.com/topic/2186-updatedminecraft-pe-095-mods/
-
[Photoshop] Gametic Text Styles (Layer Styles)
Rook replied to Rook's topic in GFX Club's GFX Resources
I can get you more, way more. Where as for tutorials, I know some good youtube channels. -
Nice! :thumbsup:
-
Yeah, some tweaks do drain your battery because they're always running in the background waiting for your input. But even the OS itself drains your battery also. Maybe because Apple wants you to upgrade to their new iDevices.
-
That depends on your project but if it's a simple one you don't need to import anything.
-
Crazy said that it's iGG 5.5?
-
This is the old one. Check the other topic.
-
I just updated to Yosemite. Downloading Xcode
-
Nice one mate!
-
The bundle filter changes in each app. Youtube's bundle is com.google.youtube (i think) Open the info.plist inside the .app folder to find out.
-
I've had battery problems since iOS 7. Drains fast as hell! That may be because my 4s had lived a couple of years. 4 years and counting.
-
For me, it's the same as iOS 7. Maybe just ateeny bit more lag if you jailbreak and install tweaks. No battery problem fixes yet though...
-
Try this instead: /var/theos/bin/nic.pl