Jump to content

Sterling0x1

Senior Member
  • Posts

    323
  • Joined

  • Last visited

Everything posted by Sterling0x1

  1. I could hack Dawn of Titans, i hacked android version aswell. The only issue is, that it doesnt run on my ipod 6 for some reason. If they fix it i will most likely hack it, in the meantime, you could ask Zahir to update his release.
  2. Yeah i used the tweak template, feedback would be nice, since im stuck on 8.4.... I prefer originality I feel bad enough using someone else's header, because i wasn't able to make it 64bit compatible myself I will make patchers if it becomes relevant (maybe games with more features), but for now im totally happy with a fully working tweak I guess it working then
  3. Hehe i know the rules, thats why I removed it from my popup here Its my gift to iG for helping me, I will release a few more in the future, i think its only fair actually you were right, the link was buggy redirected to the wrong upload. Weird... anyways its fixed nope, just install, respring, enjoy. Patcher is too fancy
  4. Hacks:Massive HP Massive Damage Massive DefenseNotes: Download deb file. Install it on your device Respring!!! Enjoy --- Tested on arm64, ios 8.4. Should work on all devices.Download: [Hidden Content] Hacked by Ekin SPECIAL THANKS TO @DiDA FOR THE MODIFIED HEADER!
  5. Is this working on 8.4? edit: connects fine, but cant decrypt the binary most likely on 64 bit devices.
  6. This exactly what I was looking for. Thanks for this tutorial!
  7. Please update the script for high stats. Code: # -*- coding: utf-8 -*- import re def response(context, flow): path = flow.request.path query = flow.request.get_query() if path.endswith("get_battle_init_data"): r1 = r'"atk":(\d+),"mdef":(\d+),"acc":(\d+),' re.compile(r1) flow.response.replace(r1, '"atk":9999,"mdef":9999,"acc":9999,',5) r2 = r'"matk":(\d+),"spd":(\d+),' re.compile(r2) flow.response.replace(r2, '"matk":9999,"spd":9999,', 5) r3 = r'id":"(\d+)","eva":(\d+),' re.compile(r3) flow.response.replace(r3, r'id":"\1","eva":9999,', 5) r4 = r'def_ss_point_factor":(\d+),"def":(\d+),' re.compile(r4) flow.response.replace(r4, r'def_ss_point_factor":\1,"def":9999,', 5) r5 = r'max_hp":(\d+),"init_hp":(\d+),' re.compile(r5) flow.response.replace(r5, 'max_hp":1,"init_hp":1,') r6 = r'max_hp":"(\d+)","init_hp":"(\d+)",' re.compile(r6) flow.response.replace(r6, 'max_hp":"1","init_hp":"1",')
×
  • 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