Jump to content

castix

Senior Member
  • Posts

    2,379
  • Joined

  • Last visited

Everything posted by castix

  1. use this #import <Preferences/Preferences.h> @interface "SAS 4Patcher"ListController: PSListController { } @end @implementation "SAS 4Patcher"ListController - (id)specifiers { if(_specifiers == nil) { _specifiers = [[self loadSpecifiersFromPlistName:@"SAS 4Patcher" target:self] retain]; } return _specifiers; } - (void)respring { system("killall -9 SpringBoard"); } - (void)link { [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.iOSGods.com"]]; } @end // vim:ft=objc
  2. To create a debian file you can either use the Mobile Terminal command su alpine //Default password cd /ProjectfolderLocation make package if you want to make a tweak although you can simply create a debian file manually. Here is a short guide. • Create a folder called com.yourname.name • inside you create 2 folders : DEBIAN and Library DEBIAN • in DEBIAN you you have to create a control file containing file information (application or else) Library • here you put the whole code files and also when you made a patcher all the recource files Finally open Mobile Terminal and type su alpine dpkg -b com.yourname.name //Just ignore the 2/3 warnings they do not matter you can now find the .deb at your destinated location.
  3. There are 2 ways: Open iFile and go to the desired app and open the XXXX.app folder. Now open the file Info.plist and search the following lines <key>UIApplicationExitsOnSuspend<key> <true/> //Change it to false it's not always the exact same line in every app Second way,if the first method is not available for some apps you can use FLEX or class-dump or whatever to hook the application. Inside the app there is always something like -(BOOL)applicationDidEnterBackground or (int)timeSinceAppClosed (BOOL)applicationClosedToSpringboard
  4. v.1.0 # initial release Requirements • PreferenceLoader • iFile (optional but recommended) Features • Enable Backgrounding • Constant Multiplier • Choose Click Multiplier • Insane Stats • Disable CPS Limit • Unlimited Item Level • Free Store • Constant Milk Mode (activate in Milk Mode only and it stays forever) • Choose Clicks Per Second • Choose Background Multiplier Instructions Using iFile • Download the .deb file • Put it on your iDevice using a file explorer (iFunbox, iExplorer, WinSCP, etc.) • Open iFile • Go to the directory you saved the .deb file • Click on it and hit "install" • It will automaticly repring Without using iFile • Download the .deb file • Open a file explorer (iFunbox, iExplorer, WinSCP, etc.) • Drag the file and drop it it /var/root/Media/Cydia/AutoInstall • Respring Downloads [Hidden Content] Credits castix
  5. Battle Camp +31 ready. What are your most requested features ? Let me know and I'll try to add them.

    1. Show previous comments  1 more
    2. castix

      castix

      uhm no. I knew you can only hack MS and PP headers so I split the binary and read through.

      PS : all features are tested and work

    3. Zahir
    4. HannanSp

      HannanSp

      Anti ban, unlimited currency, one hit that would be nice :D or hit multiplier :3

    5. castix

      castix

      hit multiplier done. i need to get banned to see how they track my device :p

       

    6. HannanSp
  6. %hook ALInterstitialDialogView - (void)videoPlaybackEndedInAd:(id)fp8 atPlayback:(id)fp12 fullyWatched:(BOOL)fp16 { return %orig(fp8, fp12, true); } %end
  7. yes that would be nice of you Yes you start comments in MS with that and yes you should remove them all especially between code lines. They have to be removed, trust me.
  8. So because this tutorials is already awesome (big shoutout to evilg00d there) I will just add some notes As he already mentioned in the main topic here, you can't override void but you can NULL them = disable them - (void)enemiesShoots { //This is the method that calls your opponents to shoot so if we disable this, they can't anymore } if you want to add this in a patcher, you can simply write it like this - (void)enemyShoots { //Easy isn't it ? if(GetPrefBool(@"kEnemyShooting")) { return; } return %orig; } Moving on there are some more value classes, which can be modified - (long long)Coins { //This can obviously be treated like int return 2222; } - (double)Coins { //You can also see here that it can be overwritten really easy return 2222; } Those are just a few more function methods , so if you find something like them in FLEX/Headers/Binaries you know what do do. _____________________________________________________________________________________________________________________________________ I told you to remove all backslashs.
  9. UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Custom Title But Keep The Inverted Commas" message:@"Same Situation Like The Title" delegate:nil cancelButtonTitle:@"This Can Be Thanks Or Dismiss" otherButtonTitles:nil]; [alert show]; [alert release]; } %end Maybe this is easier to understand for you. Also remove all the comments '//'
  10. Cookie Clickers cheat coming soon! If someone plays the game, beta testers are always appreciated

    1. Show previous comments  1 more
    2. HannanSp

      HannanSp

      Yes please "Cheat Testing" i would be in :D

    3. Rook

      Rook

      And a new Cheat Tester rank?

    4. Rook

      Rook

      Or supporter rank is also Cheat Tester?

    5. HannanSp

      HannanSp

      Support=Tester thats kinda same support the forum to test the games =)

       

    6. Rook

      Rook

      Yeah, true. :)

  11. v.1.0 # initial release Requirements • PreferenceLoader • iFile (optional but recommended) Features • No Media Delay • Disable Auth Details Expiration • Can See Custom Stories • Can See Mature Content • No Need To Verify iPhone • Disable Captchas • Instant Refresh Chat • Always Have The Authority • Disable Chat Clearing • Disable Removing Expired Messages • Disable Filters • Secretly Take Screenshots • Unlimited Speed • Unlimited Media Slots • Unlimited Temperature • Avoid Sender To Remove Messages • Unlimited Time To View Snaps • Unlimited Times To Replay Videos • Disable Kids Filter • Disable Smart Filter • Maximum Snap Privacy • Maximum Story Privacy • Enable Backgrounding Snapcash coming soon ... Instructions Using iFile • Download the .deb file • Put it on your iDevice using a file explorer (iFunbox, iExplorer, WinSCP, etc.) • Open iFile • Go to the directory you saved the .deb file • Click on it and hit "install" • It will automaticly repring Without using iFile • Download the .deb file • Open a file explorer (iFunbox, iExplorer, WinSCP, etc.) • Drag the file and drop it it /var/root/Media/Cydia/AutoInstall • Respring Downloads [Hidden Content] Credits castix
  12. It's not written very well. Please try it again with less representing us ignorant.
  13. I can offer you Unlimited Diamonds Unlimited Gold (result of exchanging Diamonds) Jailbreak only
  14. I will post mine soon as saurik declined mine to be on BigBoss (he doesn't allow paid Snapchat tweaks :| )
  15. "iAPGod" is the same as LocaliAPStore. Except it doesn't create custom receipts. How to write iAPGod/LocaliAPStore in MS : Main function %hook SKPaymentTransaction - (int)transactionState { return 1; } Some things I tested to multiply the currency (maximum of 3) %hook ISOperation - (BOOL)success { return true; } %hook ISProtocolDataProvider - (BOOL) shouldProcessAccount { return true; } %hook SUPurchaseManager - (BOOL)_needsAuthenticationForPurchases:(id)fp8 { return false(NULL); } If you either use some more difficult code or think it's ripped off somewhere else, I don't have any problems with that. I am still figuring out how Alex793 disabled the authentication popup.
  16. Exactly. When you dump a binary you will get the headers and in FLEX they are already disassembled.
  17. I am interested. Can you tell me something about the game so I see if it's worth to hack it.
  18. That's why I immediately updated my post.
  19. Of course he did this. Using FLEX to go through classes and simple using a NIC template is really easygoing. You don't have to be a coder therefore. If he got the functions of some other user who uploaded it (propably on FLEX as I presume) there is no chance in hell to contact the original author.
  20. Are you GalindoJr ? I was just wondering but this is absolutely no allusion of you, leeching the cheat.
  21. The best cheat for a game which has ever been made ! (except for my unreleased secret cheats mmeeh)
  22. Let's see if we can get this multihack going
  23. Approved. I'm joining the team
  24. I am currently up to hack this game so you can join me in my efforts. PM me if you want to work with me together Update : Achieved +21 now so if you find just 1 other thing you will be mentioned in credits.
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines