-
Posts
2,379 -
Joined
-
Last visited
Everything posted by castix
-
I really like your picture and you have my full respect but it's kinda offending other religions and right now we have the situation that radical muslims are trying to instil their religion with a war to people world wide. I know it's not all of them and lots of people in those countries are victims of the violence. I personally don't believe in any god but I found this really offending
-
@operaspin Yea but this is frightening me a bit off
-
I really like the clean and plain layout. They still use the old Internet Explorer tile on the bottom when you download something which is a bit of a fall back for 2015 and a whole new browser project. YouTube audio backrgounding is really imortant to me when I work on some code and music is something that accompanies me all the time. However it does fit more to Windows 10 in my opinion more than Chrome and Firefox and I'm pretty sure if there isn't a tweak market or add-on there surely will be in the future. I'm expecting this browser to be more customizeable than the others with more user interactions. Back to the layout, the font looks a bit thin to me and I'll have to look if I can adjust it a bit for my personal touch. I'm right now downloading the Windows 10 ISO and looking forward to test the new Project Spartan and also give some more feedback.
-
Popups are really annoying sometimes because they load up everytime you launch the app, go back from the app switcher or quickly check something in Control Center. The cheaters don't want that either but since they do their best to protect the cheats from leeching they have to go back on this uncomfortable way. Not anymore ! By using this method your UIAlertView (popup) will only appear once the specific app/game has launched. [Hidden Content]
- 94 replies
-
- 238
-
-
-
-
-
-
-
I will post a tutorial how you can encrypt your bundle files maybe
-
#indef encryption //Your code #endif Not the exact code but how it works
-
Noob worst hack ever. I saw better Flex patches for this Jk haha awesome cheat mate
-
General Remove popup with tweak to get another popup
castix replied to Demi-God's topic in General Talk
That happens because they always (99%) hook the wrong method. If they would invest some more time in their hacks your issue is not a thing anymore. There are more ways than just popups for protecting author's property but they didn't ask for it. Yes, you are right. Popups are annoying! -
Annoying people like you ?
-
Patcher Gang Nations Cheats (All Versions) +8
castix replied to castix's topic in Free Jailbreak Cheats
That's exactly where I was pointing at. I already fixed, just waited for some more sensible people to give me a reason to post it then. I will post it later the day -
Patcher Gang Nations Cheats (All Versions) +8
castix replied to castix's topic in Free Jailbreak Cheats
I was about to fix it but I decided to keep it for myself because you all behave like little kids when something doesn't work on the first try. I don't have a damn iPhone to test stuff and I don't want noobs for testing. Don't expect any updates soon -
Patcher Gang Nations Cheats (All Versions) +8
castix replied to castix's topic in Free Jailbreak Cheats
But I have One Hit Kill in this hack lol? I have my own ways for Godmode which makes it only 1 switch not 2 like yours. What do you mean where is the Speedhack -
Patcher Gang Nations Cheats (All Versions) +8
castix replied to castix's topic in Free Jailbreak Cheats
Yep. But I couldn't upload it yesterday -
Requirements Cydia Substrate PreferenceLoader Features Rapid Fire (Must have Godmode activated) Speedhack High Building Level High Unit Level Godmode One Hit Kill Unlimited Storage Capacity Unlimited Stars Instructions Download my hack, open it with iFile and press 'installer'. Enable the cheats from preferences. Download [Hidden Content] Credits castix
-
Open your Preferences.mm (or whatever you called it) and paste this new code inside before the // vim:ft=objc where CUSTOMNAME is the name of the new property list you want to add for your PSLink. @interface CUSTOMNAMEListController: PSListController { } @end @implementation CUSTOMNAMEListController - (id)specifiers { if(_specifiers == nil) { _specifiers = [[self loadSpecifiersFromPlistName:@"CUSTOMNAME" target:self] retain]; } return _specifiers; } @end Now open your main property list. As you already know some XML basics from other preference specifiers, this is the new PSLinkCell which appears in your preference pane. You don't add the swiches you want inside the new PSLink inside this property list. You'll see it later. <dict> <key>cell</key> <string>PSLinkCell</string> <key>detail</key> <string>CUSTOMNAMEListController</string> <key>isController</key> <string>1</string> <key>label</key> <string>CUSTOMNAME</string> </dict> Finally create a new property list (plist) with your custom name you've chosen previously. In the new plist you can add all items for the PSLinkCell. All your switches, sliders, buttons, segments etc. The new property list is also going to be in your Resources folder unlike the Preferences.mm. <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>items</key> <array> <dict> <key>cell</key> <string>PSSwitchCell</string> <key>default</key> <false/> <key>defaults</key> <string>Preferences</string> <key>key</key> <string>Key</string> <key>label</key> <string>Example for a PSSwitchCell</string> </dict> </array> <key>title</key> <string>CUSTOMNAME</string> </dict> </plist>
-
GFX Some Branding and Pixel Art
castix replied to Goggwell's topic in GFX Club's GFX - Graphic Studio
I don't really like them. You already did better -
There should be an option to restore purchases
-
Help/Support Need Help with Preference Bundles [Bit Urgent]
castix replied to TheChief's topic in Help & Support
You can my Github I think I have one repo there for my Simpsons TO cheat. My username there is also castix. I will post more stuff sometime By the way I made a property list tool for Patchers in tools section. It also has some cool features -
One missing hook or an end too much
-
@interface CUSTOMNAMEListController: PSListController { } @end @implementation CUSTOMNAMEListController - (id)specifiers { if(_specifiers == nil) { _specifiers = [[self loadSpecifiersFromPlistName:@"CUSTOMNAME" target:self] retain]; } return _specifiers; } @end /* Inside your preference root.plist */ <dict> <key>cell</key> <string>PSLinkCell</string> <key>detail</key> <string>CUSTOMNAMEListController</string> <key>isController</key> <string>1</string> <key>label</key> <string>CUSTOMNAME</string> </dict> /* Inside your new property list */ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>items</key> <array> //Your code here </array> <key>title</key> <string>CUSTOMNAME</string> </dict> </plist>
-
Help/Support Making the dlb CS: command not found
castix replied to xC3FFF0E's topic in Help & Support
Wrong command cd /...