Supreme Ruler Ultimate Trainers
. Various Steam AchievementsAchievementHow to unlock.
Trainer options F1 - Active trainer F2 - fast Researh F3 - Fast Construction F4 - Add 500m Cash Notice: To best get the cash cheat to work first. Orbiter urban dictionary.
'Nuclear' Winter is Coming. Use a Nuclear Weapon against another Nation. A Far Far Better Rest. Accumulate losses of 100 Units. A Most Ingenious Paradox. Achieve a Formal Alliance with a former Enemy. A Point Here.
Cheat Engine Table for Supreme Ruler Ultimate.Credits: barbarian815, Yuee
Enjoy.
-----------------------------------------------------------------------------------------
Table have been updated to V9.0.73. *DLC TRUMP RISING*
If you were to continue using pointers, it would be easier on yourself to use the following script to create your own variable to hold that base address. This way, when you update it due to a patch, you don't have to go through and update every single address in your list.
Code:
[ENABLE]
alloc(base,4)
base:
db C0 53 DB 00
registersymbol(base)
[DISABLE]
dealloc(base)
unregistersymbol(base)
You would change your pointers now to start at [base] instead of 00db53c0.
Now when that address needs to change, you simply change the db value in the script.
Be sure to note how the bytes (two-character pairs) are reversed.
To properly setup a script in the hopes of never having to update the table again, you want to right-click one of the addresses and find out what accesses this address. Hopefully one of the found code blocks is continuously accessing that address. You want this just so you don't need to wait for the user to purchase something before your custom code executes.
In the found code blocks, go through and view their register states. Hopefully one of the registers has a value equal to your base pointer address (00db53c0). If so, then you will want to do an AOB injection at that point and insert code similar to my original script. Except this time, set [base] equal to whichever register contains the pointer address.
Code:
mov [base],eax
--------------
First of all: Thanks barbarian for this table. I'm not sure if i'm allowed to do this or not but i updated it for the new update. Hope you don't mind.