The Alters

Upload your cheat tables here (No requests)
Post Reply
User avatar
XeTrinityz
Cheater
Cheater
Posts: 35
Joined: Thu May 23, 2024 10:41 pm
Reputation: 33

The Alters

Post by XeTrinityz »

The Alters CT

Features
  • Suit Energy
  • Spending Adds Resources
  • Spending Keeps Resources
  • Freeze Time


How to use this cheat table?
  1. Install Cheat Engine
  2. Double-click the .CT file in order to open it.
  3. Click the PC icon in Cheat Engine in order to select the game process.
  4. Keep the list.
  5. Activate the trainer options by checking boxes or setting values from 0 to 1
Attachments
TheAlters V0.2.2.CT
Minor fixes
(4.46 KiB) Downloaded 2650 times
Last edited by XeTrinityz on Sat Jun 14, 2025 10:20 pm, edited 7 times in total.

CWhedgehog
What is cheating?
What is cheating?
Posts: 2
Joined: Fri May 20, 2022 5:19 am
Reputation: 0

Re: The Alters

Post by CWhedgehog »

I am unable to use it, there are some errors in certain areas

Edit - It seems to run after an error, but Suit Energy pointers cannot be found

Great CT, I mainly use Freeze Time

User avatar
XeTrinityz
Cheater
Cheater
Posts: 35
Joined: Thu May 23, 2024 10:41 pm
Reputation: 33

Re: The Alters

Post by XeTrinityz »

CWhedgehog wrote:
Sat Jun 14, 2025 2:12 am
I am unable to use it, there are some errors in certain areas

Edit - It seems to run after an error, but Suit Energy pointers cannot be found

Great CT, I mainly use Freeze Time
Yeah, the pointer's less stable than I thought. I'll try to find a better one or another method for unlimited suit energy. If anyone wants to help with the table as well, feel free.

User avatar
deuxdoom
Cheater
Cheater
Posts: 34
Joined: Mon Aug 20, 2018 2:58 am
Reputation: 3

Re: The Alters

Post by deuxdoom »

+1 very thx !

Error executing this table's lua script:
[string "-- SUB to ADD Toggle Script for Cheat Engine ..."]:4: malformed number near '28C33E8'


and not work gamepass version

Viken
Expert Cheater
Expert Cheater
Posts: 64
Joined: Wed Mar 22, 2017 7:19 pm
Reputation: 11

Re: [Steam] The Alters

Post by Viken »

None of the table options work for the GOG version of the game either. Throws up an error on start-up and bumpkis. Thanks though!

zhenle1994
Cheater
Cheater
Posts: 34
Joined: Mon Dec 04, 2017 5:05 am
Reputation: 8

Re: [Steam] The Alters

Post by zhenle1994 »

Oh I would love a freeze time table for gamepass version.

denstrym
What is cheating?
What is cheating?
Posts: 1
Joined: Sat Jul 22, 2023 8:25 am
Reputation: 0

Re: [Steam] The Alters

Post by denstrym »

Некорректный формат адреса: TheAlters-Win64-Shipping.exe+28C33E8 - формат адреса может быть некорректным.
В Cheat Engine обычно используется формат с точкой (например, TheAlters.exe+28C33E8)
Пример кода:
-- SUB to ADD Toggle Script for Cheat Engine

local targetAddress = "TheAlters.exe+28C33E8" -- Corrected format
local originalBytes = nil
local patchedBytes = nil
local isPatched = false

function getOpcodeBytes(address)
local bytes = readBytes(address, 5, true)

if bytes[1] == 0x2B then
local newBytes = {0x03, bytes[2], bytes[3], bytes[4], bytes[5]}
return bytes, newBytes
elseif bytes[1] == 0x83 and bytes[2] == 0xEC then
local newBytes = {0x83, 0xC4, bytes[3], bytes[4], bytes[5]}
return bytes, newBytes
elseif bytes[1] == 0x81 and bytes[2] == 0xEC then -- Добавлена поддержка 32-битного SUB
local newBytes = {0x81, 0xC4, bytes[3], bytes[4], bytes[5]}
return bytes, newBytes
else
error("Unsupported instruction at address "..string.format("%X", address))
end
end

function togglePatch()
if originalBytes == nil then
originalBytes, patchedBytes = getOpcodeBytes(targetAddress)
end

if isPatched then
writeBytes(targetAddress, originalBytes)
print("Restored SUB instruction at "..string.format("%X", targetAddress))
else
writeBytes(targetAddress, patchedBytes)
print("Changed SUB to ADD at "..string.format("%X", targetAddress))
end

isPatched = not isPatched
end

function createToggleEntry()
local form = getMainForm()
local panel = getProperty(form, "ExtraPanel")

local toggle = createToggleBox(panel)
setProperty(toggle, "Left", 10)
setProperty(toggle, "Top", 10)
setProperty(toggle, "Caption", "Toggle SUB/ADD at "..string.format("%X", targetAddress))
setProperty(toggle, "Width", 300)

setMethodProperty(toggle, "OnChange", "togglePatch")
end

-- Improved initialization
if getCEVersion() >= 7.0 then

JANIS1289
Noobzor
Noobzor
Posts: 5
Joined: Wed May 01, 2019 6:34 pm
Reputation: 1

Re: The Alters

Post by JANIS1289 »

bad table, it's pointless as game crashes when saving with this table on

Zephyrusiac
Cheater
Cheater
Posts: 31
Joined: Sat Nov 17, 2018 7:29 am
Reputation: 1

Re: The Alters

Post by Zephyrusiac »

JANIS1289 wrote:
Sat Jun 14, 2025 9:08 pm
bad table, it's pointless as game crashes when saving with this table on
Do you mean it crashes if saving while an entry, like freeze time, is active?
Since the game saves when you sleep and that is also when time skips to morning, it would make sense that having that active would crash the game.
If that is the issue, have you tried deactivating that cheat before sleeping?

Ellick
What is cheating?
What is cheating?
Posts: 1
Joined: Sun Jun 15, 2025 12:11 am
Reputation: 0

Re: The Alters

Post by Ellick »

Zephyrusiac wrote:
Sat Jun 14, 2025 9:57 pm
Do you mean it crashes if saving while an entry, like freeze time, is active?
Since the game saves when you sleep and that is also when time skips to morning, it would make sense that having that active would crash the game.
If that is the issue, have you tried deactivating that cheat before sleeping?
Just tested it, it still crashes even when unchecking all cheats and terminating CE before going to sleep.
I also put in the adress code fix suggestion above, same.

Zephyrusiac
Cheater
Cheater
Posts: 31
Joined: Sat Nov 17, 2018 7:29 am
Reputation: 1

Re: The Alters

Post by Zephyrusiac »

Ellick wrote:
Sun Jun 15, 2025 12:14 am
Zephyrusiac wrote:
Sat Jun 14, 2025 9:57 pm
Do you mean it crashes if saving while an entry, like freeze time, is active?
Since the game saves when you sleep and that is also when time skips to morning, it would make sense that having that active would crash the game.
If that is the issue, have you tried deactivating that cheat before sleeping?
Just tested it, it still crashes even when unchecking all cheats and terminating CE before going to sleep.
I also put in the adress code fix suggestion above, same.
Alright, that’s too bad.
I’m currently using eggs’ table: here
Haven’t slept yet, but try using that for modifying time instead; it might not have the crashing issue.

VladSnakeDragon
What is cheating?
What is cheating?
Posts: 1
Joined: Sat Apr 24, 2021 4:32 am
Reputation: 0

Re: The Alters

Post by VladSnakeDragon »

Cheat Table causes a crash whenever you use any of the resource options, and then move on to next day.

The only real use I see of this, is the Freeze Time for exploration. Since time is frozen, you cannot do much. Mining, Crafting, Recharging your batteries from miners/pylons, they all take a time progression and thus do not work.

Freeze Time effectively only lets you run around and collect loose resources, as well as explore and remove debris if you have the correct equipment and quantity of it, crafted before hand.

kranao8472
Noobzor
Noobzor
Posts: 13
Joined: Sat Mar 04, 2017 2:31 am
Reputation: 0

Re: The Alters

Post by kranao8472 »

As others have reported, I am also experiencing a crash when using either of the resource cheats. I've only been wanting to use the "spending keeps resources" one, though. Still, upon testing, the crash happens when using the "adds" one as well.

One happens when deactivating the cheat. An immediate CTD and crash dialog happens the instant I untick the script.

The other happens when saving, which is what I was initially experiencing. So my first thought was to just deactivate the cheat before ending the day (as explained above) but that's when I discovered the 'deactivation' crash.

While the cheats technically work as described, no progress can be made once activated. The effort is appreciated all the same, though!

Post Reply

Who is online

Users browsing this forum: AmazonBot, ctl3d32, Google Adsense [Bot], Locke_Smithy, Pamlaoran, Rodrigorrb, toadperfect, xiang950928