Jump to content

Kingdom Rush Tweak.xm


3 posts in this topic

Recommended Posts

Updated (edited)

http://iosgods.com/topic/5004-kingdom-rush-origins-v14-hacks-32/

 

I think I went over word limit, hide tags won't work

%hook GameBackPack
 
- (int)currentAtomicBombs {
return 999999999;
}
 
- (int)currentAtomicFreeze {
return 999999999;
}
 
- (int)currentDynamites {
return 999999999;
}
 
- (int)currentExtraGold {
return 999999999;
}
 
- (int)currentFreeze {
return 999999999;
}
 
- (int)currentGems {
return 999999999;
}
 
- (int)currentHandOfMidas {
return 999999999;
}
 
- (int)currentHearts {
return 999999999;
}
 
- (int)currentHornsHeroism {
return 999999999;
}
 
- (int)currentRodDragonFire {
return 999999999;
}
 
- (int)currentTeleportScrolls {
return 999999999;
}
 
- (int)currentTimewarp {
return 999999999;
}
 
- (int)currentWrathOfElynia {
return 999999999;
}
%end
 
%hook Enemy
 
- (bool)canDoSpecial {
return FALSE;
}
 
- (int)armor {
return 0;
}
 
- (void)attack {
 
}
 
- (bool)dodgeAttack {
return FALSE;
}
 
- (int)gems {
return 999999999;
}
 
- (int)getDamage {
return 999999999;
}
 
- (int)gold {
return 999999999;
}
 
- (int)goldBag {
return 999999999;
}
 
- (int)health {
return 0;
}
 
- (bool)canRage {
return FALSE;
}
 
- (bool)canDoMagic {
return FALSE;
}
%end
 
%hook Soldier
 
- (int)armor {
return 999999999;
}
 
- (int)health {
return 999999999;
}
%end
 
%hook GameSoundEngine
 
- (bool)canDeviceVibrate {
return FALSE;
}
 
- (bool)canVibrate {
return FALSE;
}
%end
 
%hook SoldierHero
 
- (int)xp {
return 999999999;
}
%end
 
%hook GameData
 
- (int)currentStars {
return 999999999;
}
%end
 
%hook PowerThunder
 
- (int)range {
return 999999999;
}
 
- (int)minDamage {
return 999999999;
}
%end
 
%hook PowerThunderController
 
- (float)range {
return 999999999.0f;
}
 
- (int)minDamage {
return 999999999;
}
%end
 
%hook Bag
 
- (id)gold {
return [NSNumber numberWithInt:999999999];
}
%end
 
%hook GameUpgrades
 
- (bool)hasAllUpgrades {
return TRUE;
}
%end
 
%hook MenuTower
 
- (int)sellValue {
return 999999999;
}
 
- (bool)isLocked {
return FALSE;
}
 
- (int)price {
return 0;
}
%end
Updated by Guest
Posted

flex or classdump?

I like to use flex because you can search through all of the functions instead of having to sift through each and every individual dumped header to find what I'm looking for.

×
  • 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