Welcome to the UnKnoWnCheaTs - Multiplayer Game Hacks and Cheats.
You have to register before you can post and see and access any of the advanced forum features, please click the register link to proceed to the registration form. To start viewing threads or posts, select a forum that you want to visit from the selection below.
Other Talk about any other command and Conquer Games here.
You are Unregistered, please register to gain Full access.
I've started using Cheat Engine to create a single player trainer for Red Alert 3 and i've done the Power but i'm having problem's with the money.
I found the address's and changed them in Cheat Engine and TSearch and it changed in-game so i made the trainer with CH and added more money and it worked but once i close the game and open it again it wont add more money, i tried freezing it aswell but once i re-load the game it wont work, only the Power continue's to work.
On a side note i'm using Vista 64Bit and after i made the Power trainer and sent it to my mate it would'nt give him more power but work's fine for me.
The top 2 of each scan alway's come up now if i change there value it does nothing but if i changed the 3rd one all four address's change and it work's in-game but when i start another game only the top 2 address's keep coming up for the money and 2 new one's, only 1 of the new one's actually change the money in-game.
And yes we both have the most up-to-date version the only difference is he's using WinXP 32bit and im Vista 64bit
That's because you have the place in memory that holds your value (DMA). This will change every time you play your game. You need to find the pointer. Use Tsearch and click on enable debugger and open the hack window. then goto the location that you found that hold your money value. Then put an AutoHack on it, then spend some money. It should show you another memory location. Then go and add money via the game play. You should get another value. I don't play that game but I'm sure its similar to Generals. When i get a change i will load up this game and help ya.
ok great.. what debugger are u using? Are you using tsearch or olly or cheat engine?
what you need to do is just NOP the addresses that take away your money value. I use Tsearch
You need to know how many bytes that each address uses. Like in Generals
566CD5 894704 Mov [edi+0x4], eax
the part where 894704 that's how many bytes that instruction uses. so, 89 is one byte and 47 is another and 04 is another byte. so altogether 3 bytes.
so in tmk we will do an easywrite and just
Poke 566CD5 90 90 90
then to undo
Poke 566CD5 89 47 04
To find your bytes goto your AutoHack and select the pointer that you found. Then at the bottom of the screen you will see Disassembler tab. Click that and you will see something like this:
00566CD5 894704 Mov [edi+0x4], eax
this will only work in single player. Im still studying the player mismatch when playing online.
I will download the game today and see what i find