Jump to content

castix

Senior Member
  • Posts

    2,379
  • Joined

  • Last visited

Everything posted by castix

  1. The game crashed as soon as I modified the premium dragons.
  2. if ([string rangeOfString:@"a"] == 0) { NSLog(@"Spam"); } else { %orig; }
  3. Requirements Cydia Substrate PreferenceLoader Features Unlimited Coins (Watch a video) Instructions Download my hack, open it with iFile and press 'installer'. Enable the cheats from preferences. *Download removed* Credits z0ne smokey (for finding the app)
  4. I don't know what the Tweak.xm was but you can't return a void
  5. Click here and sign up so z0ne can win this awesome iPad to make better hacks for you
  6. That's kinda racist. Anyway I know how to use NEG
  7. Not impossible I hexed it
  8. Updated for the latest version
  9. Worst hack ever. Beginners from here have done this
  10. If you don't hack unlimited mana you can't use hacked spells
  11. Requirements Cydia Substrate PreferenceLoader Features Unlimited Stars Unlimited Stamina Unlimited Credits Unlimited Energy All Monsters Seen Godmode (Glitchy in Arena and Boss Fights) Skip Enemy Turn (If you tap attack too often the game will crash) One Hit Kill (Also for some Boss Monsters and Arena) All Islands Unlocked Mystery Island Unlocked Always Win Instructions Download my hack, open it with iFile and press 'installer'. Enable the cheats from preferences. Download [Hidden Content] Credits z0ne
  12. Oh great someone abused the hack so this account got banned. I will lock the topic now
  13. Unlike LocalIAPStore you will not see an icon in Settings or your SpringBoard also there will be no popup for authorizing iTunes payment
  14. You should get the iAPFreev4 Standalone Plugin from Alex798. Get it from any repo you want but not insanelyi
  15. Hacked everything now
  16. I hacked Credits, Stars, Candy, Energy, Every Island Unlocked. One Hit Kill works for AI enemies but I'm trying to make it work for online arena. The problem is it's a shared damage function with the enemy
  17. What he said
  18. Let me fix the Credits hack for you. This will be a standalone because the game is too easy to hack
  19. Woah so many wrong syntax
  20. That's alright you don't need to make it with voice
  21. Yes, I have a YouTube channel. It's called z0ne as well but that's not the topic here. Basically what I need is someone who can do reviews of my hacks and sometimes other things for me. You know, I'm really busy and only have an iPhone so I don't have time to invest in making videos. That's why I need you! You need: - iPad 3 or above - Jailbreak - Some knowledge of making videos - To make videos with your voice? That's optional You don't have to be VIP member. If you have to review a cheat from me which is in VIP you will get it of course. This you are not allowed to share files I give to you. Like I said if you could make videos with voice guide that would be awesome. If you are interested in making those reviews or have questions, you can contact me or reply below. Thank you
  22. #include <substrate.h> #define PLIST_PATH @"/var/mobile/Library/Preferences/com.goggwell.FruitNinja.plist" inline bool GetPrefBool(NSString *key) { return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue]; } bool (*old_IsTimedGame)(void *self); int (*old_WaveSpawnManager_SpawnBomb)(void *self); int (*old_WaveManager_GetCriticalChance)(void *self); int (*old_Components_Score_LifeLost)(void *self); bool (*old_Components_Score_IsNewBest)(void *self); int (*old_AIManager_Tournament_GetEntryFee)(void *self); bool IsTimedGame(void *self) { if(GetPrefBool(@"kTimed")) { return FALSE; } else { return old_IsTimedGame(self); } } int WaveSpawnManager_SpawnBomb(void *self) { if(GetPrefBool(@"kBomb")) { return 0; } else { return old_WaveSpawnManager_SpawnBomb(self); } } int WaveManager_GetCriticalChance(void *self) { if(GetPrefBool(@"kCrit")) { return 100; } else { return old_WaveManager_GetCriticalChance(self); } } int Components_Score_LifeLost(void *self) { if(GetPrefBool(@"kLost")) { return 0; } else { return old_Components_Score_LifeLost(self); } } int Components_Score_IsNewBest(void *self) { if(GetPrefBool(@"kBest")) { return TRUE; } else { return old_Components_Score_IsNewBest(self); } } int AIManager_Tournament_GetEntryFee(void *self) { if(GetPrefBool(@"kFee")) { return 0; } else { return old_AIManager_Tournament_GetEntryFee(self); } } %ctor { MSHookFunction((void*)MSFindSymbol(NULL,"__Z11IsTimedGamev"),(void*)IsTimedGame,(void**)&old_IsTimedGame); MSHookFunction((void*)MSFindSymbol(NULL,"__ZN11WaveManager9SpawnBombEiP12SPAWNER_INFOi"),(void*)WaveSpawnManager_SpawnBomb,(void**)&old_WaveSpawnManager_SpawnBomb); MSHookFunction((void*)MSFindSymbol(NULL,"__ZN11WaveManager17GetCriticalChanceEi"),(void*)WaveManager_GetCriticalChance,(void**)&old_WaveManager_GetCriticalChance); MSHookFunction((void*)MSFindSymbol(NULL,"__ZN10Components5Score8LifeLostE8_Vector3IfEiP6Entity"),(void*)Components_Score_LifeLost,(void**)&old_Components_Score_LifeLost); MSHookFunction((void*)MSFindSymbol(NULL,"__ZNK10Components5Score9IsNewBestEv"),(void*)Components_Score_IsNewBest,(void**)&old_Components_Score_IsNewBest); MSHookFunction((void*)MSFindSymbol(NULL,"__ZN9AIManager10Tournament11GetEntryFeeERKN6Mortar11AsciiStringE"),(void*)AIManager_Tournament_GetEntryFee,(void**)&old_AIManager_Tournament_GetEntryFee); }
  23. Use %ctor if it's still not working
  24. Change *ptr to *self
×
  • 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