Page 1 of 1

Cyber Shadow - Unleashed

Posted: Tue Jan 26, 2021 4:06 pm
by ndck1
Cyber Shadow - Unleashed

Version : v1.0.0

Scripts
- Invincibility *Hotkey Included* (No conditions needed)
- Infinite Health *Hotkey Included* (No conditions needed. Alternatively, you can use the editor and change the value of your choice)
- Infinite Special Power *Hotkey Included* (No conditions needed. Alternatively, you can use the editor and change the value of your choice)
- 1 Billion Coins *Hotkey Included* (No conditions needed. Alternatively, you can use the editor and change the value of your choice)

Editor
- Health Editor
- Weapon Power Editor
- Coins Editor
- Special Power Editor {This is uneditable}

Changelog
Lists Of Changelog
v1.0.4
- All scripts and editors updated to suit this version

v1.0.3
- All scripts and editors updated to suit this version
Note: These cheats may or may not work for you. I can't guarantee it will work for everybody. :) The most common or various issues if the cheat(s) doesn't work or activates is because the outdated or update game/table version or compatibility gaming platforms like Steam, Non-Steam, GOG, Epic, Windows Store/Gamepass, Cheat Engine versions or possibly due to any installation anomalies, Windows Version or CPU compatibility and so forth. Another situation also happens is when you did not activate the script(s) to populate the other 'children' and by doing that you might need to switch between the table and the game depending on how the script(s) was made. If all the above methods did not work for you sometimes a simple game or PC restart might resolve this issue. My table is compatible from Cheat Engine 7.1 and above but it is still a good practice to keep your current Cheat Engine software up to date. For my table, just click on the 'Activate' script for it to add process as well as activate mono automatically depending on the game whether it uses the mono features or not. Finally, I would be most grateful if you could submit your rating if the table works for you as time, patience and effort were put into making these tables and also as a gesture of your support. Thank you all very much. :)


Re: Cyber Shadow - Unleashed

Posted: Wed Jan 27, 2021 10:53 am
by Ashram
Thanks for your quick work!

Any idea if this table works for the Gamepass version?

Re: Cyber Shadow - Unleashed

Posted: Wed Jan 27, 2021 11:35 am
by ndck76
Ashram wrote:
Wed Jan 27, 2021 10:53 am
Thanks for your quick work!

Any idea if this table works for the Gamepass version?
Don't know. Why don't you try and let me know. If it doesn't, there's another table Here

Re: Cyber Shadow - Unleashed

Posted: Wed Jan 27, 2021 1:09 pm
by Ashram
ndck76 wrote:
Wed Jan 27, 2021 11:35 am
Ashram wrote:
Wed Jan 27, 2021 10:53 am
Thanks for your quick work!

Any idea if this table works for the Gamepass version?
Don't know. Why don't you try and let me know. If it doesn't, there's another table Here
So I tried, and unfortunately it doesn't work.

Re: Cyber Shadow - Unleashed

Posted: Wed Jan 27, 2021 1:57 pm
by ndck76
Ashram wrote:
Wed Jan 27, 2021 1:09 pm
So I tried, and unfortunately it doesn't work.
Reason is I am using a different version. Not gamepass version. Use the other link I provided.

Re: Cyber Shadow - Unleashed

Posted: Wed Jan 27, 2021 2:09 pm
by Ashram
ndck76 wrote:
Wed Jan 27, 2021 1:57 pm
Ashram wrote:
Wed Jan 27, 2021 1:09 pm
So I tried, and unfortunately it doesn't work.
Reason is I am using a different version. Not gamepass version. Use the other link I provided.
Yep it works perfectly with the other you linked, but there's less options.

Thank you so much anyway! :)

Re: Cyber Shadow - Unleashed

Posted: Wed Jan 27, 2021 5:19 pm
by The_Podstanar
Hey, nice simple table you got over here ;)
Just a heads up, you don't need to allocate memory to NOP something, you should instead just:

Code: Select all

[ENABLE]
aobscanmodule(ghost,CyberShadow.exe,E8 FA 50 02 00)
registersymbol(ghost)

ghost:
nop 5

[DISABLE]
ghost:
db E8 FA 50 02 00

unregistersymbol(ghost)
One more thing, 4 bytes above that call you nopped is a conditional jump, je CyberShadow.exe+75D626, which if true, will skip the call, so a more "elegant" solution would be to make it always jump:

Code: Select all

[ENABLE]
aobscanmodule(god_mode,CyberShadow.exe,74 07 8B CF E8 FA 50 02 00)
registersymbol(god_mode)

god_mode:
db EB

[DISABLE]
god_mode:
db 74

unregistersymbol(god_mode)
And last, three lines above this jump is the actual compare statement, cmp byte ptr [edi+74249],0, which checks for hit collision based on some things calculated in the call above it. If you check what writes that memory at [edi+74249], you will see mov byte ptr [esi+74249],1. So, just changing the last byte to 0 will do the trick:

Code: Select all

[ENABLE]
aobscanmodule(god_mode,CyberShadow.exe,C6 86 49 42 07 00 01)
registersymbol(god_mode)

god_mode+6:
db 00

[DISABLE]
god_mode+6:
db 01

unregistersymbol(god_mode)
However, doing it this way won't make you instantly invincible. To trigger the code and become invincible, after activating the script, you will have to either die/respawn, finish level/enter new one, get hit once or make sure the script is active before entering any level. Instead, for instant invincibility, we can use this pointer:

Code: Select all

<?xml version="1.0" encoding="utf-8"?>
<CheatTable>
  <CheatEntries>
    <CheatEntry>
      <ID>191</ID>
      <Description>"GodMode (0 = Invincible, 1 = Normal)"</Description>
      <LastState Value="0" RealAddress="03FB2561"/>
      <ShowAsSigned>0</ShowAsSigned>
      <VariableType>Byte</VariableType>
      <Address>CyberShadow.exe+32C3040</Address>
      <Offsets>
        <Offset>74249</Offset>
      </Offsets>
    </CheatEntry>
  </CheatEntries>
</CheatTable>
Just copy/paste this into CE table, set value to 0, and freeze it.

Btw, keep in mind that some spikes/obstacles can still one-hit kill us, regerdless of hit collision's status. It's hardcoded that way, and i'm too lazy to trace that crap..

Re: Cyber Shadow - Unleashed

Posted: Thu Jan 28, 2021 3:48 pm
by killerpower
weapon power editor dont work

Re: Cyber Shadow - Unleashed

Posted: Sun Feb 07, 2021 3:10 pm
by XRizerX
None of these options work.

Re: Cyber Shadow - Unleashed

Posted: Sun Feb 07, 2021 8:27 pm
by ndck76
XRizerX wrote:
Sun Feb 07, 2021 3:10 pm
None of these options work.
It does work. Those are static addresses. It won't change unless the game has been updated or you are using the game pass version. Link is mentioned above.

Re: Cyber Shadow - Unleashed

Posted: Mon Aug 23, 2021 1:28 pm
by dmmm123
These options continue to not work on the latest GOG version of the game. Not the game pass versions, the GOG version.

Re: Cyber Shadow - Unleashed

Posted: Mon Aug 23, 2021 1:32 pm
by ndck76
dmmm123 wrote:
Mon Aug 23, 2021 1:28 pm
These options continue to not work on the latest GOG version of the game. Not the game pass versions, the GOG version.
I don't have the GOG Version to test it out. Btw, this version is Unleashed so it might not work. Was it working in the previous version?

Re: Cyber Shadow - Unleashed

Posted: Mon Aug 23, 2021 1:43 pm
by dmmm123
ndck76 wrote:
Mon Aug 23, 2021 1:32 pm
dmmm123 wrote:
Mon Aug 23, 2021 1:28 pm
These options continue to not work on the latest GOG version of the game. Not the game pass versions, the GOG version.
I don't have the GOG Version to test it out. Btw, this version is Unleashed so it might not work. Was it working in the previous version?
If you mean the previous versions of the trainers, then no - none of them work either. Neither does the game pass version (had to test it just to be sure).
If you mean the previous version of the game, then I don't know - I can't test it since I can't exactly downgrade the game to a previous version.

Re: Cyber Shadow - Unleashed

Posted: Fri Nov 26, 2021 4:46 am
by Rasetsunoken
ndck76 wrote:
Tue Jan 26, 2021 4:06 pm
Cyber Shadow - Unleashed

v1.0.0

Scripts
- Invincibility *Hotkey Included* (No conditions needed)
- Infinite Health *Hotkey Included* (No conditions needed. Alternatively, you can use the editor and change the value of your choice)
- Infinite Special Power *Hotkey Included* (No conditions needed. Alternatively, you can use the editor and change the value of your choice)
- 1 Billion Coins *Hotkey Included* (No conditions needed. Alternatively, you can use the editor and change the value of your choice)

Editor
- Health Editor
- Weapon Power Editor
- Coins Editor
- Special Power Editor {This is uneditable}

v1.0.3
- All scripts and editors updated to suit this version

v1.0.4
- All scripts and editors updated to suit this version

Note: These cheats may or may not work for you. I can't guarantee it will work for everybody. :) Please make sure to use the latest cheat engine. This table will automatically "Add Process" when the game is already running but if you choose to open the table first, you may need to add the process manually. Finally, I would be most grateful if you could submit your rating if the table works for you as time, patience and effort were put into making these tables and also as a gesture of your support. Thank you all very much. :)

it's working..
Thank You so much