Search found 25 matches
Re: Anno 2205
For UPlay people, the exe name changed somewhere along the line which is why most of the tables don't work anymore for it. I opened the CT posted here in a text editor and replaced all "anno2205.exe" with "anno2205_plus.exe" which let me enable the cheats. Tested briefly the max everything and no up...
- Fri Sep 18, 2020 1:41 am
- Forum: Tables
- Topic: Disgaea 4 Complete+ (Steam) - Last Update 2020.09.14
- Replies: 109
- Views: 25687
Re: Disgaea 4 Complete+ (Steam) - Last Update 2020.09.14
This is The Black X table for GamePass version. I just opened in Notepad++ and replaced all "Disgaea4pc.exe" with "Disgaea4gp.exe" :lol: Was able to enable scripts so I assume they work. Pointers appear to point to the right places. I did not fully test at all. So YMMV. Disgaea4gp - Hades Forge Tabl...
- Mon Sep 14, 2020 5:13 am
- Forum: Tables
- Topic: Staxel (Steam)
- Replies: 12
- Views: 5672
Re: Staxel (Steam)
Found currency Pointer scanned awhile until stable pointer found Dissected data on ptr addr took me to worldbase (most things were organized into vtables) Jumped to memory address of worldbase Copied AOB of arbitrary length until only 1 result found and placed in a notepad Restarted game and repeat...
- Sun Mar 29, 2020 2:45 am
- Forum: Tables
- Topic: Fell Seal: Arbiter's Mark (Steam)
- Replies: 63
- Views: 29864
Re: Fell Seal: Arbiter's Mark (Steam)
Just got this off Humble. Tested working for latest steam version as of 3/28/2020. Fell Seal.CT Added: Multiple moves per turn Added: Multiple actions per turn Added: Double components on use Added: Free shop purchases Fixed: AP Multiplier/Infinite AP Fixed: GP Multiplier Fixed: "Infinite MP" (need ...
- Tue Mar 24, 2020 3:30 am
- Forum: Single Player Cheat Requests
- Topic: [Request] Steredenn: Binary Stars
- Replies: 1
- Views: 834
Re: [Request] Steredenn: Binary Stars
Table for latest version as of 3/23/2020 Contains 'God Mode' and One Hit Kill script. Steredenn.CT P.S. You will need to ram cargo ships to destroy them (they drop weapons and shields) until you get higher base damage upgrades. With GM enabled, you won't take damage or lose combo bonus if that matte...
- Tue Mar 17, 2020 2:59 am
- Forum: Tables
- Topic: Staxel (Steam)
- Replies: 12
- Views: 5672
Re: Staxel (Steam)
Here's a table for latest version as of 3/16/2020 Game seems to have some kind of checksum that boots you from world if you inject any code. Used aobscans + LUA to get around it. Attach to 'Staxel.Server.noConsole.exe' after loading a world. Contains: Script - Max item count in inventory slot 1 (act...
- Mon Mar 16, 2020 9:19 pm
- Forum: Cheat Engine Lua Scripting
- Topic: Error referencing variable in Disable section
- Replies: 4
- Views: 2014
Re: Error referencing variable in Disable section
Resolved.
It needed
It needed
if syntaxcheck then return end
again after disable section.- Mon Mar 16, 2020 9:02 pm
- Forum: Cheat Engine Lua Scripting
- Topic: Error referencing variable in Disable section
- Replies: 4
- Views: 2014
- Mon Mar 16, 2020 8:50 pm
- Forum: Cheat Engine Lua Scripting
- Topic: Error referencing variable in Disable section
- Replies: 4
- Views: 2014
Error referencing variable in Disable section
I'm getting an error when trying to destroy timer when script is disabled. What am I missing here? Function works fine, variables read and write normally. Tested with print() and in game. t_maxStack.destroy() line placed anywhere above '[DISABLE]' will allow script to save with no error. Tried movin...
- Tue Dec 31, 2019 4:59 am
- Forum: Tables
- Topic: Ancestors Legacy
- Replies: 17
- Views: 26356
Re: Ancestors Legacy
Updated ArmY of 0n3 pointers/scripts for latest game version as of 12/30/2019 and combined reinzhart infinite recruits script as well.
- Tue Nov 26, 2019 3:02 am
- Forum: Tables
- Topic: Shiness: The Lightning Kingdom
- Replies: 11
- Views: 7100
Re: Shiness: The Lightning Kingdom
Quick table for this game.
There's a lot more that can be added. But game is pretty boring. So probably won't.
Comments in the code so maybe someone else can pick it up.
There's a lot more that can be added. But game is pretty boring. So probably won't.
Comments in the code so maybe someone else can pick it up.
- Tue Nov 26, 2019 1:09 am
- Forum: Cheat Engine
- Topic: Compare big address in assembly
- Replies: 10
- Views: 1915
Re: Compare big address in assembly
After some trial and error, was able to get it working by storing big value some place in memory and referencing that in the compare. If there is an easier/more efficient method for doing this, please still let me know. compareaddy: dq 7FF477AA1240 newmem: cmp rax,1 je incItems cmp rcx,[compareaddy]...
- Tue Nov 26, 2019 12:35 am
- Forum: Cheat Engine
- Topic: Compare big address in assembly
- Replies: 10
- Views: 1915
Compare big address in assembly
Using the new CE feature, it found a commonality and I would like to compare it out in a script. However, seems that the value is large or my syntax is incorrect. Any help to put me in the right direction would be appreciated :geek: https://i.imgur.com/wyvLilP.png cmp rcx,7FF477AA1240 https://i.imgu...
- Sat Jun 30, 2018 2:31 pm
- Forum: Cheat Engine Lua Scripting
- Topic: Write value of a lua variable to an address
- Replies: 3
- Views: 22062
Write value of a lua variable to an address
Thanks a lot that helped me find what was wrong.
My main problem though is that my lua variable was a table so I needed to add [1] to get the value I wanted.
Knew it was something obvious. Thanks again.
My main problem though is that my lua variable was a table so I needed to add [1] to get the value I wanted.
Knew it was something obvious. Thanks again.
- Sat Jun 30, 2018 5:40 am
- Forum: Cheat Engine Lua Scripting
- Topic: Write value of a lua variable to an address
- Replies: 3
- Views: 22062
Write value of a lua variable to an address
Just messing around with different mono hacking methods, but stuck at this part. I was able to use the mono lua commands to consistently get the base address that I want to use for pointers/other codes. But not able to get that to write to the symbol I made for it. Thought at first maybe value is no...