Page 15 of 20

Re: Binding Of Isaac: Afterbirth+

Posted: Tue Apr 06, 2021 2:02 am
by FrankySahwit
Could someone add functionality like pointers and cheats for local (couch) co-op players? Especially interested in reviving them, which normally happens only after defeating the floor boss.

Re: Binding Of Isaac: Afterbirth+

Posted: Tue Apr 06, 2021 2:24 am
by Kaptin
Zadrave wrote:
Tue Apr 06, 2021 1:18 am
Would love for a debug console code still if someone can find the address.
Try 0x01074198

Re: Binding Of Isaac: Afterbirth+

Posted: Tue Apr 06, 2021 2:39 pm
by Zadrave
Kaptin wrote:
Tue Apr 06, 2021 2:24 am
Zadrave wrote:
Tue Apr 06, 2021 1:18 am
Would love for a debug console code still if someone can find the address.
Try 0x01074198
Doesn't work, I tried

Re: Binding Of Isaac: Afterbirth+

Posted: Wed Apr 07, 2021 12:29 pm
by Mister
Senseless_Hope wrote:
Thu Apr 01, 2021 10:41 pm
I found some Pointer Adresses for Like the Hearts and stuff like Keys isaac-ng[WIP Repentance].CT
This table does not work anymore as of 4.0.1, it worked fine on 4.0.0.
I'm looking for a table that allows you to edit the Donation Machine on 4.0.1 but it seems the more recent ones don't work either.
Can anyone get the quoted table to work again on 4.0.1? Would be much appreciated, thanks.

Re: Binding Of Isaac: Afterbirth+

Posted: Wed Apr 07, 2021 9:10 pm
by Kaptin
Mister wrote:
Wed Apr 07, 2021 12:29 pm
Senseless_Hope wrote:
Thu Apr 01, 2021 10:41 pm
I found some Pointer Adresses for Like the Hearts and stuff like Keys isaac-ng[WIP Repentance].CT
This table does not work anymore as of 4.0.1, it worked fine on 4.0.0.
I'm looking for a table that allows you to edit the Donation Machine on 4.0.1 but it seems the more recent ones don't work either.
Can anyone get the quoted table to work again on 4.0.1? Would be much appreciated, thanks.
With this script you will automatically set your donation machine at 999 if you want to have different value just edit the script:

    Code: Select all

     
     [ENABLE]
    
    aobscanmodule(DonationAutomate,isaac-ng.exe,89 84 BE B8 02 00 00) // should be unique
    alloc(newmem,$1000)
    
    label(code)
    label(return)
    
    newmem:
    
    code:
      //mov [esi+edi*4+000002B8],eax
      mov [esi+edi*4+000002B8],(int)999
      jmp return
    
    DonationAutomate:
      jmp newmem
      nop 2
    return:
    registersymbol(DonationAutomate)
    
    [DISABLE]
    
    DonationAutomate:
      db 89 84 BE B8 02 00 00
    
    unregistersymbol(DonationAutomate)
    dealloc(newmem)
    
    {
    // ORIGINAL CODE - INJECTION POINT: isaac-ng.exe+438137
    
    isaac-ng.exe+43810F: 0F 85 53 07 00 00                 - jne isaac-ng.exe+438868
    isaac-ng.exe+438115: 8B 55 0C                          - mov edx,[ebp+0C]
    isaac-ng.exe+438118: 8B C2                             - mov eax,edx
    isaac-ng.exe+43811A: 8B 8C BE B8 02 00 00              - mov ecx,[esi+edi*4+000002B8]
    isaac-ng.exe+438121: F7 D8                             - neg eax
    isaac-ng.exe+438123: 3B C1                             - cmp eax,ecx
    isaac-ng.exe+438125: 7E 0D                             - jle isaac-ng.exe+438134
    isaac-ng.exe+438127: C7 84 BE B8 02 00 00 00 00 00 00  - mov [esi+edi*4+000002B8],00000000
    isaac-ng.exe+438132: EB 0A                             - jmp isaac-ng.exe+43813E
    isaac-ng.exe+438134: 8D 04 11                          - lea eax,[ecx+edx]
    // ---------- INJECTING HERE ----------
    isaac-ng.exe+438137: 89 84 BE B8 02 00 00              - mov [esi+edi*4+000002B8],eax
    // ---------- DONE INJECTING  ----------
    isaac-ng.exe+43813E: C6 06 01                          - mov byte ptr [esi],01
    isaac-ng.exe+438141: 83 BE E0 05 00 00 00              - cmp dword ptr [esi+000005E0],00
    isaac-ng.exe+438148: 76 0C                             - jna isaac-ng.exe+438156
    isaac-ng.exe+43814A: 68 67 01 00 00                    - push 00000167
    isaac-ng.exe+43814F: 8B CE                             - mov ecx,esi
    isaac-ng.exe+438151: E8 2A FE FF FF                    - call isaac-ng.exe+437F80
    isaac-ng.exe+438156: 83 BE E0 05 00 00 0A              - cmp dword ptr [esi+000005E0],0A
    isaac-ng.exe+43815D: 72 0C                             - jb isaac-ng.exe+43816B
    isaac-ng.exe+43815F: 68 81 01 00 00                    - push 00000181
    isaac-ng.exe+438164: 8B CE                             - mov ecx,esi
    }

    Re: Binding Of Isaac: Afterbirth+

    Posted: Thu Apr 08, 2021 3:58 am
    by magusdawn
    AikonCWD wrote:
    Sun Apr 04, 2021 8:57 pm
    This is my table. Basic player structure dump (red hearts, keys, bombs, coins), Current Item, energy and Cards/Runes
    There is a script to edit pedestal items, so you can place new items on it.
    There is a dropdown selector with all items, even the new DLC update ones.
    The dropdowwn menu works for cards/runes (added the new cards and runes of DLC)

    Image

    Image

    isaac-ng.CT
    I just found this and it was GREAT... and then like 20 minutes later they pushed out an update that broke it. PLEASE update it, it's so great, it's the only thing that makes Jacob and Esau remotely playable!!!

    Edit: Actually the pedestal script still works, which is GREAT, but if you could also fix the player pointers that would be amazing.

    Re: Binding Of Isaac: Afterbirth+

    Posted: Thu Apr 08, 2021 4:37 am
    by Bobbyrobro
    Game just updated so I did a quick update to my godmode script to hold us over until the table makers update their full tables.

    edit: renamed file

    Re: Binding Of Isaac: Afterbirth+

    Posted: Thu Apr 08, 2021 7:22 am
    by AikonCWD
    Game is updated and every offset is now in a new address, I will need like two hours to get the table working again.
    I'm working on it right now, don't worry

    Re: Binding Of Isaac: Afterbirth+

    Posted: Thu Apr 08, 2021 8:17 am
    by AikonCWD
    Table updated to work with v4.0.2 Steam version
    - Added new script to create items on demand
    - Added trinket editor

    Image

    Image

    Image

    If something is not working, let me know! I only tested with Isaac, but this should work with any character.
    isaac-ng.CT
    (63.86 KiB) Downloaded 101 times

    Re: Binding Of Isaac: Afterbirth+

    Posted: Thu Apr 08, 2021 9:13 am
    by CloudStrifeMerc
    AikonCWD wrote:
    Thu Apr 08, 2021 8:17 am
    Table updated to work with v4.0.2 Steam version
    - Added new script to create items on demand
    - Added trinket editor

    Image

    Image

    Image

    If something is not working, let me know! I only tested with Isaac, but this should work with any character.

    isaac-ng.CT
    is there any way you could add charge control for tainted bethany's "lemegeton" item. its an active item but is placed in the card/rune slot and you cant drop it or anything. ive looked in the pills, cards and runes section but cheat engine has it listed as the high priestess. not sure if its possible to add control for something like this but i thought id ask.
    [edit]
    right after posting this i realised i can change it to my actual active item so disregard my previous question

    Re: Binding Of Isaac: Afterbirth+

    Posted: Thu Apr 08, 2021 10:49 am
    by Mister
    Kaptin wrote:
    Wed Apr 07, 2021 9:10 pm
    With this script you will automatically set your donation machine at 999 if you want to have different value just edit the script:
      I am unsure how to use this script. I tried to load it in Show Cheat Table Lua Script but it tells me there are errors in the syntax so I must be doing something wrong. Would you mind teaching me how to use this script? Thanks.

      Re: Binding Of Isaac: Afterbirth+

      Posted: Thu Apr 08, 2021 1:05 pm
      by Baofu
      AikonCWD wrote:
      Thu Apr 08, 2021 8:17 am
      Table updated to work with v4.0.2 Steam version
      - Added new script to create items on demand
      - Added trinket editor

      Image

      Image

      Image

      If something is not working, let me know! I only tested with Isaac, but this should work with any character.

      isaac-ng.CT
      We need player stats. I wanna set my Luck real high. Great work!

      Re: Binding Of Isaac: Afterbirth+

      Posted: Thu Apr 08, 2021 1:28 pm
      by AikonCWD
      Small update:

      - Added script to prevent Donation Machine to jam.

      Now you can set/lock your coins to 99 and use the Donation Machine in Shop until it reaches 999. Don't add any additional coin or the machine will explode.

      I will try to add pointers for stats.

      EDIT: Table updated again, adding some stats.
      isaac-ng.CT
      (68.17 KiB) Downloaded 154 times
      Edit the stat and then "check/click" the address to freeze. If you don't freeze the address, the game will try to switch back to the original value.

      There are 2 stats I can't find. Sorry

      Re: Binding Of Isaac: Afterbirth+

      Posted: Thu Apr 08, 2021 2:29 pm
      by UraiFen4444
      Not sure if it helps but i have a table that have the stats pointers (for the old version of reptance), maybe you could use it for information.

      If you want, i can upload it for you (im not the creator of the table)

      Re: Binding Of Isaac: Afterbirth+

      Posted: Thu Apr 08, 2021 3:51 pm
      by mrmeeseeks1991
      Im not sure what Im doing wrong. Im using the newest version of this table on Cheat Engine 7.2 with the new updated Isaac. Whenever I try to load the script it asks me "Keep the current address list/code list?" and when I click yes and try to activate any of the sections Cheat Engine freezes and it doesnt work anymore :( Is the table just not working anymore or am I doing anything wrong? This is how it looks after I try to activate something:
      Image