-
Posts
1,481 -
Joined
-
Last visited
Everything posted by Johnkittz
-
Hacked App:Kingdom Rush By Ironhide S.A. iTunes Link:https://itunes.apple.com/us/app/kingdom-rush/id516378985?mt=8 Bundle ID:com.armorgames.kingdomrushiphone Hack Requirements: - Jailbroken iPhone/iPad/iPod Touch. - iFile / Filza / iFunBox / iTools / AnyTrans / iExplorer / DiskAid or any other file managers for iOS. - Cydia Substrate (from Cydia). - PreferenceLoader (from Cydia). Hack Features: - Inf Gems - Inf Wrath Of Elynia - Inf Hand Of Midas - Inf Dragon Fire -Inf TimeWarp -Unlock All Heroes -Max Heroe Damage and Health -Inf Teleport Scrolls -Inf Gold -Inf Hearts -Inf Freeze -Inf Dynamite -Inf Atomic Bombs(Including the freeze Atomic) -Inf Stars -Never Spend Stars -Inf Lives -Most Of the Upgrades Are Enabled and Purchased -Inf Tower Damage -Inf Tower Range -All Store Prices Are 0 -Never Wait for Reloads (attacking ect) -Enemies Do no Damage -Enemy Has 1 Health -Choose to Spawn Enemies or not -All Soldiers Are Maxed -Enemy Shields Are Always Down -Heroes Are all Premium -Heroes Never Die -Heroes Have All Skills -All Towers Unlocked Hack Download Link: [Hidden Content] Installation Instructions: Step 1: Download the .deb hack file from the link above. Step 2: Copy the file over to your iDevice using any of the file managers mentioned above or skip this step if you're downloading from your iDevice. Step 3: Using iFile or Filza, browse to where you saved the downloaded file and tap on it. Step 4: Once you tap on the file, you will then need to press on 'Installer' or 'Install' from the options on your screen. Step 5: Let iFile / Filza finish the cheat installation. Step 6: Now open your iDevice settings and scroll down until you see the settings for this cheat and tap on it. If you do not see the cheat settings, respring or reboot your iDevice and make sure you have met all the requirements mentioned above. Step 7: Turn on the features you want and then open the game. Note: If you have any questions or problems, read our Frequently Asked Questions topic or post your issue down below and we'll do our best to help! Credits: - @@Johnkittz ENJOY I #REKT THIS GAME
-
-
Tweak.xm #define PLIST_PATH @"/var/mobile/Library/Preferences/com.johnkittz.kingdomrush.plist" inline bool GetPrefBool(NSString *key) { return [[[NSDictionary dictionaryWithContentsOfFile:PLIST_PATH] valueForKey:key] boolValue]; } %hook GameBackPack -(int)currentGems { if(GetPrefBool(@"kgem")) { return 9999999; } return %orig; } -(int)currentWrathOfElynia { if(GetPrefBool(@"kwrath")) { return 9999999; } return %orig; } -(int)currentHandOfMidas { if(GetPrefBool(@"kmidas")) { return 9999999; } return %orig; } -(int)currentRodDragonFire { if(GetPrefBool(@"krod")) { return 9999999; } return %orig; } -(int)currentTimeWarp { if(GetPrefBool(@"kwarp")) { return 9999999; } return %orig; } -(int)currentHornsHeroism { if(GetPrefBool(@"khero")) { return 9999999; } return %orig; } -(int)currentTeleportScrolls { if(GetPrefBool(@"kscroll")) { return 9999999; } return %orig; } -(int)currentExtraGold { if(GetPrefBool(@"kgold")) { return 9999999; } return %orig; } -(int)currentHearts { if(GetPrefBool(@"kheart")) { return 9999999; } return %orig; } -(int)currentFreeze { if(GetPrefBool(@"kfreeze")) { return 9999999; } return %orig; } -(int)currentDynamites { if(GetPrefBool(@"kdyn")) { return 9999999; } return %orig; } -(int)currentAtomicFreeze { if(GetPrefBool(@"katomic")) { return 9999999; } return %orig; } -(int)currentAtomicBombs { if(GetPrefBool(@"katomic")) { return 9999999; } return %orig; } %end %hook GameData -(int)getCurrentStars { if(GetPrefBool(@"kstar")) { return 9999999; } return %orig; } -(int)starsSpent { if(GetPrefBool(@"kstar")) { return 0; } return %orig; } -(int)starsWon { if(GetPrefBool(@"kstar")) { return 9999999; } return %orig; } %end %hook GameScene -(int)currentLives { if(GetPrefBool(@"klives")) { return 9999999; } return %orig; } %end %hook GameUpgrades -(BOOL)heroesEnabled { if(GetPrefBool(@"khero")) { return TRUE; } return %orig; } -(BOOL)canSelectHero:(int)fp8 { if(GetPrefBool(@"khero")) { return TRUE; } return %orig; } -(BOOL)isUpgradeEnabled:(int)fp88 { if(GetPrefBool(@"kupgrade")) { return TRUE; } return %orig; } -(BOOL)archersUpPrecision { if(GetPrefBool(@"kupgrade")) { return TRUE; } return %orig; } -(BOOL)archersUpPiercing { if(GetPrefBool(@"kupgrade")) { return TRUE; } return %orig; } -(BOOL)archersUpSalvage { if(GetPrefBool(@"kupgrade")) { return TRUE; } return %orig; } -(BOOL)engineersSVUpShockAndAwe { if(GetPrefBool(@"kupgrade")) { return TRUE; } return %orig; } -(BOOL)archersSVUpImprovedAim { if(GetPrefBool(@"kupgrade")) { return TRUE; } return %orig; } -(BOOL)archersUpEagleEye { if(GetPrefBool(@"kupgrade")) { return TRUE; } return %orig; } -(BOOL)archersUpFarShots { if(GetPrefBool(@"kupgrade")) { return TRUE; } return %orig; } -(BOOL)barracksUpSurvival { if(GetPrefBool(@"kupgrade")) { return TRUE; } return %orig; } -(BOOL)barracksUpSurvival2 { if(GetPrefBool(@"kupgrade")) { return TRUE; } return %orig; } -(BOOL)barracksUpBetterArmor { if(GetPrefBool(@"kupgrade")) { return TRUE; } return %orig; } -(BOOL)barracksUpImprovedDeployment { if(GetPrefBool(@"kupgrade")) { return TRUE; } return %orig; } -(BOOL)magesUpSpellReach { if(GetPrefBool(@"kupgrade")) { return TRUE; } return %orig; } -(BOOL)magesUpEmpoweredMagic { if(GetPrefBool(@"kupgrade")) { return TRUE; } return %orig; } -(BOOL)magesUpHermeticStudy { if(GetPrefBool(@"kupgrade")) { return TRUE; } return %orig; } -(BOOL)engineersUpConcentratedFire { if(GetPrefBool(@"kupgrade")) { return TRUE; } return %orig; } -(BOOL)engineersUpRangeFinder { if(GetPrefBool(@"kupgrade")) { return TRUE; } return %orig; } -(BOOL)engineersUpFieldLogistics { if(GetPrefBool(@"kupgrade")) { return TRUE; } return %orig; } -(BOOL)isPremiumHero:(int)fp77 { if(GetPrefBool(@"kupgrade")) { return TRUE; } return %orig; } %end %hook GameInApps -(BOOL)hasHeroDwarf { if(GetPrefBool(@"khero")) { return TRUE; } return %orig; } -(BOOL)hasHeroMage { if(GetPrefBool(@"khero")) { return TRUE; } return %orig; } -(BOOL)hasHeroFire { if(GetPrefBool(@"khero")) { return TRUE; } return %orig; } -(BOOL)hasHeroDenas { if(GetPrefBool(@"khero")) { return TRUE; } return %orig; } -(BOOL)hasHeroFrost { if(GetPrefBool(@"khero")) { return TRUE; } return %orig; } -(BOOL)hasHeroViking { if(GetPrefBool(@"khero")) { return TRUE; } return %orig; } -(BOOL)hasHeroSamurai { if(GetPrefBool(@"khero")) { return TRUE; } return %orig; } -(BOOL)hasHeroRobot { if(GetPrefBool(@"khero")) { return TRUE; } return %orig; } -(BOOL)hasHeroThor { if(GetPrefBool(@"khero")) { return TRUE; } return %orig; } -(BOOL)hasHeroPirate { if(GetPrefBool(@"khero")) { return TRUE; } return %orig; } -(BOOL)hasHeroPriest { if(GetPrefBool(@"khero")) { return TRUE; } return %orig; } -(BOOL)hasHeroGolem { if(GetPrefBool(@"khero")) { return TRUE; } return %orig; } -(BOOL)hasHeroWizard { if(GetPrefBool(@"khero")) { return TRUE; } return %orig; } -(BOOL)hasHeroAlien { if(GetPrefBool(@"khero")) { return TRUE; } return %orig; } -(BOOL)hasHeroDragon { if(GetPrefBool(@"khero")) { return TRUE; } return %orig; } -(BOOL)hasHeroCrab { if(GetPrefBool(@"khero")) { return TRUE; } return %orig; } -(BOOL)hasHeroMonk { if(GetPrefBool(@"khero")) { return TRUE; } return %orig; } -(BOOL)hasHeroVanHelsing { if(GetPrefBool(@"khero")) { return TRUE; } return %orig; } -(BOOL)hasHeroDracolich { if(GetPrefBool(@"khero")) { return TRUE; } return %orig; } -(BOOL)hasHeroMinotaur { if(GetPrefBool(@"khero")) { return TRUE; } return %orig; } -(BOOL)hasHeroMonkeyGod { if(GetPrefBool(@"khero")) { return TRUE; } return %orig; } %end %hook Level -(BOOL)heroDied { if(GetPrefBool(@"khero")) { return TRUE; } return %orig; } -(BOOL)power2 { if(GetPrefBool(@"kpower")) { return TRUE; } return %orig; } -(BOOL)power1 { if(GetPrefBool(@"kpower")) { return TRUE; } return %orig; } %end %hook MenuTowerItem -(BOOL)isEnabled { if(GetPrefBool(@"ktower")) { return TRUE; } return %orig; } -(BOOL)isLocked { if(GetPrefBool(@"ktower")) { return FALSE; } return %orig; } -(int)price { if(GetPrefBool(@"kprice")) { return 0; } return %orig; } %end %hook PowerPortrait -(int)reloadTime { if(GetPrefBool(@"kload")) { return 0; } return %orig; } %end %hook Enemy -(int)health { if(GetPrefBool(@"kenemy")) { return 1; } return %orig; } -(int)initHealth { if(GetPrefBool(@"kenemy")) { return 1; } return %orig; } -(float)damageMultiplier { if(GetPrefBool(@"kenemy")) { return 0; } return %orig; } -(int)minDamage { if(GetPrefBool(@"kenemy")) { return 0; } return %orig; } -(int)maxDamage { if(GetPrefBool(@"kenemy")) { return 0; } return %orig; } -(int)getDamage { if(GetPrefBool(@"kenemy")) { return 0; } return %orig; } %end %hook WaveSpawn -(BOOL)spawnEnemies:(int)fp5 wave:(id)fp2 { if(GetPrefBool(@"kspawn")) { return FALSE; } return %orig; } %end %hook Soldier -(float)damageMultiplier { if(GetPrefBool(@"ksol")) { return 9999999; } return %orig; } -(int)health { if(GetPrefBool(@"ksol")) { return 9999999; } return %orig; } -(int)initHealth { if(GetPrefBool(@"ksol")) { return 9999999; } return %orig; } -(int)attackReloadTime { if(GetPrefBool(@"ksol")) { return 0; } return %orig; } -(int)attackChargeTime { if(GetPrefBool(@"ksol")) { return 0; } return %orig; } -(int)regenrateTime { if(GetPrefBool(@"ksol")) { return 0; } return %orig; } -(int)respawnTime { if(GetPrefBool(@"ksol")) { return 0; } return %orig; } -(int)deadTime { if(GetPrefBool(@"ksol")) { return 0; } return %orig; } -(int)reviveTime { if(GetPrefBool(@"ksol")) { return 0; } return %orig; } -(BOOL)canBlockEnemy:(id)fp1 { if(GetPrefBool(@"ksol")) { return TRUE; } return %orig; } -(BOOL)cheatDeath { if(GetPrefBool(@"ksol")) { return TRUE; } return %orig; } -(BOOL)isHero { if(GetPrefBool(@"ksol")) { return TRUE; } return %orig; } -(BOOL)canHeal { if(GetPrefBool(@"ksol")) { return TRUE; } return %orig; } %end %hook Tower +(BOOL)isTowerLocked:(id)fp6 { if(GetPrefBool(@"ktower")) { return FALSE; } return %orig; } -(int)damageMultiplierModifier { if(GetPrefBool(@"ktower")) { return 9999999; } return %orig; } -(void)addRangeModifier:(int)fp10 { if(GetPrefBool(@"ktower")) { fp10 = 9999999; } return %orig(fp10); } %end %hook EnemyModifierShield -(BOOL)isActive { if(GetPrefBool(@"kshield")) { return FALSE; } return %orig; } %end %hook AppDelegate -(void)applicationDidBecomeActive:(id)arg { UIAlertView *credits = [[UIAlertView alloc] initWithTitle:@"Hacked By John Kittz :D" message:@"Pwned<3" delegate:self cancelButtonTitle:@"Thank you!" otherButtonTitles:@"follow Kittz", nil]; [credits show]; [credits release]; %orig(); } %new -(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex { NSString *button = [alertView buttonTitleAtIndex:buttonIndex]; if([button isEqualToString:@"follow Kittz"]) { [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"https://mobile.twitter.com/John_Kittz?p=s"]]; } } %end
-
So im trying to compile a hack that ive spent hours on putting together but i keep getting this error ...GameData; @class EnemyModifierShield; @class GameBackPack; @class Level... ^ /home/john/kingdomrush/theos/include/QuartzCore/QuartzCore-Structs.h:114:22: note: previous definition is here typedef struct Level Level; ^ 1 error generated. /home/john/kingdomrush/theos/makefiles/instance/rules.mk:144: recipe for target 'obj/Tweak.xm.ca30eef4.o' failed make[2]: *** [obj/Tweak.xm.ca30eef4.o] Error 1 /home/john/kingdomrush/theos/makefiles/instance/library.mk:19: recipe for target 'internal-library-all_' failed make[1]: *** [internal-library-all_] Error 2 /home/john/kingdomrush/theos/makefiles/master/rules.mk:54: recipe for target 'KingdomRush.all.tweak.variables' failed anybody? also i did not hook a class twice
-
I had the same problem but I forgot what I did to fix it
-
now that i know how to hack sub_x games i dont know where to start
-
Tim and Eric is so.....stupid I hate them but the others are alright
-
Patcher Hack Lil' Alchemist v1.33.34 +13
Johnkittz replied to Johnkittz's topic in Free Jailbreak Cheats
That's true -
Patcher Hack Lil' Alchemist v1.33.34 +13
Johnkittz replied to Johnkittz's topic in Free Jailbreak Cheats
It's basic and a easy game I hacked it out of boredom and I had no wifi I released it because well why not? It doesn't matter how basic the hacking is -
Patcher Hack Lil' Alchemist v1.33.34 +13
Johnkittz replied to Johnkittz's topic in Free Jailbreak Cheats
can a guy just hack a game? -
Patcher Hack Lil' Alchemist v1.33.34 +13
Johnkittz replied to Johnkittz's topic in Free Jailbreak Cheats
-
Patcher Hack Lil' Alchemist v1.33.34 +13
Johnkittz replied to Johnkittz's topic in Free Jailbreak Cheats
Yes I am The Chosen One -
Patcher Hack Lil' Alchemist v1.33.34 +13
Johnkittz replied to Johnkittz's topic in Free Jailbreak Cheats
i Knew it Welcome BTW Don't Mind the Name -
Patcher Hack Lil' Alchemist v1.33.34 +13
Johnkittz replied to Johnkittz's topic in Free Jailbreak Cheats
Nahhhh -
Patcher Hack Lil' Alchemist v1.33.34 +13
Johnkittz replied to Johnkittz's topic in Free Jailbreak Cheats
yes i got bored with no wifi yes -
Patcher Hack Lil' Alchemist v1.33.34 +13
Johnkittz replied to Johnkittz's topic in Free Jailbreak Cheats
Bruh -
Hacked App:Little Alchemist By Kongregate iTunes Link:https://itunes.apple.com/us/app/little-alchemist/id586470098?mt=8 Bundle ID:com.chinzilla.littleAlchemist Hack Requirements: - Jailbroken iPhone/iPad/iPod Touch. - iFile / Filza / iFunBox / iTools / AnyTrans / iExplorer / DiskAid or any other file managers for iOS. - Cydia Substrate (from Cydia). - PreferenceLoader (from Cydia). Hack Features: - GodMode - Inf Coins - Inf Energy - Bukoo Of Hero Cheats -Inf Spins -Battle Speed Hack -Inf Stars -Inf Premium Currencies -A Couple of PVP Cheats -Inf Dust -Inf Currency -Huge EXP -Free Store Items Hack Download Link: [Hidden Content] Installation Instructions: Step 1: Download the .deb hack file from the link above. Step 2: Copy the file over to your iDevice using any of the file managers mentioned above or skip this step if you're downloading from your iDevice. Step 3: Using iFile or Filza, browse to where you saved the downloaded file and tap on it. Step 4: Once you tap on the file, you will then need to press on 'Installer' or 'Install' from the options on your screen. Step 5: Let iFile / Filza finish the cheat installation. Step 6: Now open your iDevice settings and scroll down until you see the settings for this cheat and tap on it. If you do not see the cheat settings, respring or reboot your iDevice and make sure you have met all the requirements mentioned above. Step 7: Turn on the features you want and then open the game. Note: If you have any questions or problems, read our Frequently Asked Questions topic or post your issue down below and we'll do our best to help! Credits: - @@Johnkittz ENJOY I WILL BE MAKING THE SPEED HACK AND CURRENCY HACKS INTO SLIDERS SOON
- 103 replies
-
- 75
-
-
-
-
-
-
-
[Ended] Cheater and Cheat of The Month! [January]
Johnkittz replied to Rook's topic in Forum Announcements
i didnt realize i had 22 up -
trust me im not stupid but i did download it on my phone to try
-
Okay UPDATE>>>>.ADDED WILD MICROMON HACK!
-
UPDATE> ADDED MICROMON LEVEL HACK
-
Gonna be +20 soon
-
Hacked App:Micromon By Pocket Trend iTunes Link:https://itunes.apple.com/us/app/micromon/id687212362?mt=8 Bundle ID:com.mogainteractive.micromon Hack Requirements: - Jailbroken iPhone/iPad/iPod Touch. - iFile / Filza / iFunBox / iTools / AnyTrans / iExplorer / DiskAid or any other file managers for iOS. - Cydia Substrate (from Cydia). - PreferenceLoader (from Cydia). Hack Features: - Inf Eggs - Guardian Always Activated - Inf Gold - Inf Diamonds -Inf Chips(Including Super and master chips) -Inf Inventory Space -Any Item Can Be Placed on any Micromon -Use Vehicle Anywhere -Always Hit Jackpot -Always Capture -Regen Max Stamina and HP after battle -Inf Stamina (Run Forever) -Inf BattlePoints(Online!!!) -Turn on and off the Encounter in grass -Can Walk Through Walls (Buggy Sometime Jerks you back) -All Skills Unlocked (Online) -Inf Treasure Rewards -Micromon Levels up After Each Battle -All Wild Micromons are Level 99 and Can do no Damage (Note>you cant do damage either so make sure to have the chips and capture hack enabled) Hack Download Link: [Hidden Content] Installation Instructions: Step 1: Download the .deb hack file from the link above. Step 2: Copy the file over to your iDevice using any of the file managers mentioned above or skip this step if you're downloading from your iDevice. Step 3: Using iFile or Filza, browse to where you saved the downloaded file and tap on it. Step 4: Once you tap on the file, you will then need to press on 'Installer' or 'Install' from the options on your screen. Step 5: Let iFile / Filza finish the cheat installation. Step 6: Now open your iDevice settings and scroll down until you see the settings for this cheat and tap on it. If you do not see the cheat settings, respring or reboot your iDevice and make sure you have met all the requirements mentioned above. Step 7: Turn on the features you want and then open the game. Note: If you have any questions or problems, read our Frequently Asked Questions topic or post your issue down below and we'll do our best to help! Credits: - @@Johnkittz ENJOY I WILL BE ADDING MORE FEATURES AS I FIND THEM UPDATE ADDED WILD MICROMON HACK
- 183 replies
-
- 104
-
-
-
-
-
-