Page 1 of 1

[COMPLETED] Indivisible (Windows Store/Game Pass)

Posted: Fri Feb 28, 2020 11:40 am
by Rhark
Game Name: Indivisible
Game Engine: Z-Engine
Game Version: 1.0.8.0
Options Desired: Cheat Table with:
  • Infinite Party Health
  • Always Full Iddhi
  • Easy Kills
  • Instant Attacks
  • Easy XP
  • Add Ringsels
Game/Steam Website: [Link]
Other Info: [Link]

COMPLETED: viewtopic.php?f=4&t=11807

Re: [REQUEST] Indivisible (Windows Store/Game Pass)

Posted: Wed Mar 04, 2020 2:38 pm
by ABUHMED1991
+1

Re: [REQUEST] Indivisible (Windows Store/Game Pass)

Posted: Thu Mar 05, 2020 6:18 am
by SvT
I'm working on a table that I might complete when I have time.
Here is a simple Godmode script for now (only works when in actual combat, not when you receive damage from an enemy in the "open world").

Code: Select all

[ENABLE]
aobscanmodule(enableCheats,Indivisible.exe,F3 0F 10 04 81)
alloc(newmem,$1000,enableCheats)

label(code)
label(return)

newmem:
cmp rax,76
jne code
cmp r9,A
jne code
cmp [rcx+58],(float)1
jne code
mov [rcx+rax*4+4],(float)99999 // set max health to 9999
mov [rcx+rax*4],(float)99999 // give 9999 health
movss xmm0,[rcx+rax*4]
jmp return

code:
movss xmm0,[rcx+rax*4]
jmp return

enableCheats:
  jmp newmem
return:
registersymbol(enableCheats)

[DISABLE]
enableCheats:
  db F3 0F 10 04 81

unregistersymbol(enableCheats)
dealloc(newmem)
I also have no collision (projectiles, spikes, etc.) and the platforms on a timer won't disappear :P
[Link]

Re: [REQUEST] Indivisible (Windows Store/Game Pass)

Posted: Mon Mar 09, 2020 5:11 pm
by SvT