Jump to content

carpoa

ViP Pro
  • Posts

    259
  • Joined

  • Last visited

Posts posted by carpoa

  1. 350x350bb.jpg
    Mod Requirements:
    - Jailbroken iPhone/iPad/iPod Touch.
    - iGameGodFilza / iMazing or any other file managers for iOS.
    - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak.
    - PreferenceLoader (from Cydia, Sileo or Zebra).

     

    Hack Features:

    - Own All Store items for free (Godmode, Golden Items etc.) [VIP ONLY] :new:
    - Age specific cheats (End childs current lover, set if the child is living with hero etc) [VIP ONLY] :new:
    - Cult cheats, Crime cheats and more [VIP ONLY] :new:

    - No Ads [FREE CHEAT]


    Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
    Modded Android APK(s): https://iosgods.com/forum/68-android-section/
    For more fun, check out the Club(s): https://iosgods.com/clubs/


    iOS Hack Download Link:

    Hidden Content

    Reply to this topic to see the hidden content & download link.


    Installation Instructions:
    STEP 1: Download the .deb Cydia hack file from the link above. Use Safari/Google Chrome or other iOS browsers to download.
    STEP 2: Once the file has downloaded, tap on it and then you will be prompted on whether you want to open the deb with iGameGod or copy it to Filza.
    STEP 3: If necessary, tap on the downloaded file, and then, you will need to press 'Install' from the options on your screen.
    STEP 4: Let iGameGod/Filza finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
    STEP 5: If the hack is a Mod Menu — which is usually the case nowadays — the cheat features can be toggled in-game. Some cheats have options that can be enabled from your iDevice settings.
    STEP 6: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game.

     

    NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions & Answers 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, please post your feedback below and help out other fellow members that are encountering issues.


    Credits:
    - @carpoa


    Cheat Video/Screenshots:

    N/A

    • Like 39
    • Winner 8
    • Thanks 3
    • Haha 3
    • Agree 7
    • Informative 4
  2. 350x350bb.jpg


    Mod Requirements:
    - Jailbroken iPhone/iPad/iPod Touch.
    - iGameGodFilza / iMazing or any other file managers for iOS.
    - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak.
    - PreferenceLoader (from Cydia, Sileo or Zebra).


    Hack Features:
    - Own All Store items for free (Godmode, Golden Items etc.) [VIP ONLY] :new:
    - Age specific cheats (End childs current lover, set if the child is living with hero etc) [VIP ONLY] :new:
    - Cult cheats, Crime cheats and more [VIP ONLY] :new:

    - No Ads [FREE CHEAT]
    More cheats soon.


    Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
    Modded Android APK(s): https://iosgods.com/forum/68-android-section/
    For more fun, check out the Club(s): https://iosgods.com/clubs/


    iOS Hack Download Link:

    Hidden Content

    React or reply to this topic to see the hidden content & download link.

    VIP Version:


    Installation Instructions:
    STEP 1: Download the .deb Cydia hack file from the link above. Use Safari/Google Chrome or other iOS browsers to download.
    STEP 2: Once the file has downloaded, tap on it and then you will be prompted on whether you want to open the deb with iGameGod or copy it to Filza.
    STEP 3: If necessary, tap on the downloaded file, and then, you will need to press 'Install' from the options on your screen.
    STEP 4: Let iGameGod/Filza finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
    STEP 5: If the hack is a Mod Menu — which is usually the case nowadays — the cheat features can be toggled in-game. Some cheats have options that can be enabled from your iDevice settings.
    STEP 6: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game.

     

    NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions & Answers 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, please post your feedback below and help out other fellow members that are encountering issues.


    Credits:
    - @carpoa


    Cheat Video/Screenshots:

    N/A

    • Like 49
    • Winner 2
    • Thanks 8
    • Haha 3
    • Agree 4
    • Informative 6
  3. Don't touch any files apart for the main game binary which is usually named something like this: GameNameHere (e.g FreeFire) or the UnityFramework binary which can be found inside PATH_HERE\Frameworks\UnityFramework.framework\UnityFramework.

    • Like 1
  4. 4 minutes ago, tien0246 said:

    1. Yes
    2. I gusse it is offset in stack, skip it
    3. No, you must use pointer class + 0x10

    void (*old_PersistentPlayerUpdate)(void* _this) = nil;
    void PersistentPlayerUpdate(void* _this) {
       old_PersistentPlayerUpdate(_this);
       if ([menu isSwitchWithIdentifierActive:@"currency"]) {
         void *playerData = *(void **)((uint64_t)_this + 0x18);
         void *Container = *(void **)((uint64_t)playerData + 0x30);
         void *Player = *(void **)((uint64_t)Container + 0x10);
         void *player = *(void **)((uint64_t)Player + 0x10);
        *(int *)((uint64_t)player + 0x134) = 999999999;
        *(int *)((uint64_t)player + 0x138) = 999999999;
        *(int *)((uint64_t)player + 0x13C) = 999999999;
        *(int *)((uint64_t)player + 0x140) = 999999999;
      }
    }

    MSHookFunction((void *)getRealOffset(APEncryptHex(0x013BE034)), (void *)PersistentPlayerUpdate, (void **)&old_PersistentPlayerUpdate);

    Thank you and thank you alot more for providing a code sample. 

  5. Got a few questions, Still new to decompiling stuff and reversing so yeah.

    I will list them below.

     

    1.

    When I am reversing a function and it calls the CityBalance$$GetUpgradePrice then (I am guessing) it stores the returned value in D8 from D0 right? 

    image.png

     

    2.

    When decompiling functions I sometimes see var_whateverhere = 0xwhateverHere but it isnt a field offset of anykind, what do they do and how can I understand them? (I included some of the start asm of that function to help you understand if needed)

    image.png

     

    3.

    When wanting to hook onto functions, to modify the field offset (in this case we will use 0x10 = int Coins) would I do something like FunctionOffset + 0x10 to get the fieldoffest variable to then read/write toward that pointed to object?

     

    Like I said I am still new to decompiling stuff and reversing, please excuse me if this is easy for you. 

  6. [TEMP] Note: This hack will get updated with more features in the future!

    512x512bb.jpg


    Modded/Hacked App: Potion Punch 2 by Monstronauts Inc.
    Bundle ID: com.monstronauts.potionpunch2
    iTunes Store Link: https://apps.apple.com/us/app/potion-punch-2/id1463550435


    Mod Requirements:
    - Jailbroken iPhone/iPad/iPod Touch.
    - iGameGod Filza / iMazing or any other file managers for iOS.
    - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak.
    - PreferenceLoader (from Cydia, Sileo or Zebra).


    Hack Features:

    • Purchase Refunds (Get the value of the item you paid back)

     

    Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/
    Modded Android APK(s): https://iosgods.com/forum/68-android-section/
    For more fun, check out the Club(s): https://iosgods.com/clubs/


    iOS Hack Download Link:

    Hidden Content

    React or reply to this topic to see the hidden content & download link.


    Installation Instructions:
    STEP 1: Download the .deb Cydia hack file from the link above. Use Safari/Google Chrome or other iOS browsers to download.
    STEP 2: Once the file has downloaded, tap on it and then you will be prompted on whether you want to open the deb with iGameGod or copy it to Filza.
    STEP 3: If necessary, tap on the downloaded file, and then, you will need to press 'Install' from the options on your screen.
    STEP 4: Let iGameGod/Filza finish the cheat installation. Make sure it successfully installs, otherwise see the note below.
    STEP 5: If the hack is a Mod Menu — which is usually the case nowadays — the cheat features can be toggled in-game. Some cheats have options that can be enabled from your iDevice settings.
    STEP 6: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game.

     

    NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions & Answers 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, please post your feedback below and help out other fellow members that are encountering issues.


    Credits:
    - @carpoa


    Cheat Video/Screenshots:

    IMG-0005.png

    • Like 3
    • Thanks 1
    • Agree 1
  7. 6 minutes ago, Garrethecarrott said:

    Bet that :) wish i had yalls ungodly skills for messing with Hex 💀

    Its not only just touching offsets with hex it can be you actually having to develop stuff depending on the game you're trying to cheat on. Unity are the easiest game engine to hack next to source engine by valve. 

  8. You cant just edit a program and expect to get free stuff thats not how the world of computers work. If you want to get into this please first go learn how a computer works, the difference between a client and a server and many other technical knowledge.

    If you need money honestly I would just go look for a job. Dont try to make money off this unless your gonna make a cheat for COD: WZ or some other AAA game that is actually worth it.

    You wont make much money depending on what youre making cheats for. Please don't blindly follow youtube tutorials, they help but if you dont understand a single thing youre doing at all then dont do it.

     

    I would like to add most or many of the very known cheaters on this platform have years of experience with reverse engineering and have a very good knowledge base on how things work internally with computers. The experience really does pay off but it is not worth doing if you have no experience.

  9. I can decompile the DLL however there is nothing at all returned. I have tried every decompile method IDA provides in their GUI to try and decompile but does not work.

    Ida Version:

    IDA Pro: 7.0

     

    Error when using the IDA python scripts:

    Assuming __cdecl calling convention by default
    Error C:\Users\\Documents\IOSGODS\DeadTrigger\UnityFramework-il2cppdumper\il2cpp.h,36: Syntax error near: int32_t
    Error C:\Users\\Documents\IOSGODS\DeadTrigger\UnityFramework-il2cppdumper\il2cpp.h,37: Syntax error near: }
    Error C:\Users\\Documents\IOSGODS\DeadTrigger\UnityFramework-il2cppdumper\il2cpp.h,67: Syntax error near: uint32_t
    Error C:\Users\\Documents\IOSGODS\DeadTrigger\UnityFramework-il2cppdumper\il2cpp.h,68: Syntax error near: uint32_t
    Error C:\Users\\Documents\IOSGODS\DeadTrigger\UnityFramework-il2cppdumper\il2cpp.h,69: Syntax error near: uint32_t
    Error C:\Users\\Documents\IOSGODS\DeadTrigger\UnityFramework-il2cppdumper\il2cpp.h,70: Syntax error near: size_t
    Error C:\Users\\Documents\IOSGODS\DeadTrigger\UnityFramework-il2cppdumper\il2cpp.h,72: Syntax error near: uint32_t
    Error C:\Users\\Documents\IOSGODS\DeadTrigger\UnityFramework-il2cppdumper\il2cpp.h,73: Syntax error near: uint32_t
    Error C:\Users\\Documents\IOSGODS\DeadTrigger\UnityFramework-il2cppdumper\il2cpp.h,74: Syntax error near: uint32_t
    Error C:\Users\\Documents\IOSGODS\DeadTrigger\UnityFramework-il2cppdumper\il2cpp.h,75: Syntax error near: int32_t
    Error C:\Users\\Documents\IOSGODS\DeadTrigger\UnityFramework-il2cppdumper\il2cpp.h,76: Syntax error near: uint32_t
    Error C:\Users\\Documents\IOSGODS\DeadTrigger\UnityFramework-il2cppdumper\il2cpp.h,77: Syntax error near: uint32_t
    Error C:\Users\\Documents\IOSGODS\DeadTrigger\UnityFramework-il2cppdumper\il2cpp.h,78: Syntax error near: int32_t
    Error C:\Users\\Documents\IOSGODS\DeadTrigger\UnityFramework-il2cppdumper\il2cpp.h,79: Syntax error near: uint32_t
    Error C:\Users\\Documents\IOSGODS\DeadTrigger\UnityFramework-il2cppdumper\il2cpp.h,80: Syntax error near: uint32_t
    Error C:\Users\\Documents\IOSGODS\DeadTrigger\UnityFramework-il2cppdumper\il2cpp.h,81: Syntax error near: uint16_t
    Error C:\Users\\Documents\IOSGODS\DeadTrigger\UnityFramework-il2cppdumper\il2cpp.h,82: Syntax error near: uint16_t
    Error C:\Users\\Documents\IOSGODS\DeadTrigger\UnityFramework-il2cppdumper\il2cpp.h,83: Syntax error near: uint16_t
    Error C:\Users\\Documents\IOSGODS\DeadTrigger\UnityFramework-il2cppdumper\il2cpp.h,84: Syntax error near: uint16_t
    Error C:\Users\\Documents\IOSGODS\DeadTrigger\UnityFramework-il2cppdumper\il2cpp.h,85: Syntax error near: uint16_t
    Total 20 errors
    Script finished!
    Syntax error near: int32_t
    Syntax error near: }
    Syntax error near: uint32_t
    Syntax error near: uint32_t
    Syntax error near: uint32_t
    Syntax error near: size_t
    Syntax error near: uint32_t
    Syntax error near: uint32_t
    Syntax error near: uint32_t
    Syntax error near: int32_t
    Syntax error near: uint32_t
    Syntax error near: uint32_t
    Syntax error near: int32_t
    Syntax error near: uint32_t
    Syntax error near: uint32_t
    Syntax error near: uint16_t
    Syntax error near: uint16_t
    Syntax error near: uint16_t
    Syntax error near: uint16_t
    Syntax error near: uint16_t

     

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