Jump to content

Ted2

Senior Member
  • Posts

    4,939
  • Joined

  • Last visited

Everything posted by Ted2

  1. World Zombination By Proletariat Inc. v3.8 iTunes URL: https://itunes.apple.com/us/app/world-zombination/id680624697?mt=8&uo=4&at=1010lce4 Mod Requirements: - Jailbroken iPhone/iPad/iPod Touch. - iFile / Filza / iFunBox / iTools or any other file managers for iOS. - Cydia Substrate (from Cydia). Hack Features: - Godmode (linked, use whenever it's a good time) - One Hit Kill (linked, use whenever it's a good time) - High Damage (linked, use whenever it's a good time INFO The hack is a in game mod menu, it's easy to disable & enable the features. Not sure if it's handy on this game, but who knows I tried unlinking, but didn't really work out, will put the offsets in coding center. Hack Download Link: [Hidden Content] See my code here: https://iosgods.com/topic/59775-world-zombination-v38-offsets-arm64/ For if you're curious or wanna try to unlink. NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions topic. If you still haven't found a solution, post your issue down below and we'll do our best to help! If the hack does work for you, post your feedback below and help out other fellow members that are encountering issues. Credits: - @Ted2 Cheat Video/Screenshots: N/A
  2. Make a request in the hack request section please.
  3. Hehe, I tried learning it, but I dunno where to start at all
  4. Thanks guys
  5. Hi, I'm not 100% sure if it's possible or not, with all those downgrade tools I've heard from few months back. But I got a iPhone 5s, iOS 9.3.3 Jailbroken. Can I update it to iOS 10.2? If yes, how? Thankyou in advance
  6. Do you have Facebook++ ? If not try downgrade to a older version using AppAdmin, maybe that will work. I had this problem too, but that was because I had Facebook++ installed.
  7. Hack has been updated to v2.10.1 now for real Last one was v2.10 but I thought I hacked v2.10.1 My mistake. Sorry Guysz!
  8. try this tool, worked fine for me.
  9. Want me to make a hacked .ipa? (you'll need to reinstall this each week then.)
  10. What device? What iOS?4 edit: be sure old hack was deleted. If not, delete all hacks, reinstall game & install new hack.
  11. For if anyone needs it, or wants to update it if there will be a update ever %ctor { if(GetPrefBool(@"key1")) { vm_writeData(0x24686E, 0xC119); // $tarchs hack vm_writeData(0x24686A, 0x00bf); // check } else { } if(GetPrefBool(@"key2")) { vm_writeData(0x28AA58, 0x30467047); // SMith level } else { } if(GetPrefBool(@"key3")) { vm_writeData(0x233F2E, 0x11F57A71); // Fame vm_writeData(0x233F2A, 0x00bf); // check } else { }
  12. Hack has been updated to version 2.10.1 Added new features. Only works on arm64, if much people complain, I'll make it support arm32 too. Enjoy
  13. Ted2

    Vip

  14. Mark solved
  15. Never said I didn't, although I still debug even using the tool
  16. You don't really need to know any coding languages. You'll need to understand the basic instructions first, ADD(s), SUB(s), MOV(s), STR, LDR. You'll need to know how to work with registers (r1, r2, r3). Although that's not always true, lots of people don't debug cause they use tools all instructions work from right to left, except a STR. So if for example R5 holds the gold reward & R1 is our normal gold. ADD R1, R5 --> ADD R5(reward) into R1(our gold) OR STR R5, R1 (SToRe R5(reward) into R1(gold) Once you understand those things, it will be easier & easier
  17. #include <substrate.h> %hook XBXAchievement -(BOOL)isSecret { return FALSE; } %end %hook XBXAchievement -(void)setIsSecret:(BOOL)arg1 { arg1 = FALSE; return %orig; } %end %hook XBXSLSAchievementTileLocator +(id)getTileSubPath:(id)arg1 dimensions:(unsigned short)arg2 achieved:(BOOL)arg3 secret:(BOOL)arg4 { //Added arg4 after BOOL arg3 = FALSE; arg4 = FALSE; return %orig; } %end %hook XBXSLSAchievementTileLocator +(id)getTileLocationForImageId:(unsigned int)arg1 fromTitleId:(unsigned int)arg2 achieved:(BOOL)arg3 secret:(BOOL)arg4 { //Added arg4 after BOOL arg3 = FALSE; arg4 = FALSE; return %orig; } %end %hook XBXSLS360TitleAchievementsResponse -(id)getAchievementImageUrl:(unsigned int)arg1 titleId:(unsigned int)arg2 achieved:(BOOL)arg3 secret:(BOOL)arg4 { //Added arg4 after BOOL arg3 = FALSE; arg4 = FALSE; return %orig; } %end You were close, you forgot to add arg4 in the function name but did return it
×
  • 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