FileForums

FileForums (https://fileforums.com/index.php)
-   Game Trainers (https://fileforums.com/forumdisplay.php?f=51)
-   -   Cheat solution for UAZ 4x4 Racing (https://fileforums.com/showthread.php?t=82922)

Rowario 08-12-2007 03:03

Cheat solution for UAZ 4x4 Racing
 
First of all what is UAZ 4x4 Racing ?!

Soviet UAZ 4x4 drive vehicle racing game, with good graphics both at the car design and the whole level design, it features diverse playable levels with altmost no restriction which means you can drive altmost wherever your vehicle allows you to go.. it also features a diverse tuning level for all cars both visual and performance wise..

So i've been searching the web for some kind of trainer, mostly for the points in game not for the money, but no luck 'cause there isn't any, nor any kind of cheats specified by the manufacturer.. played it normaly but the points that's what makes the game fly, don't have the points, can't tune your car, and trust me going up a hill almost 50/60 degrees doesnt quite make it with the default car, you get at most 10 km/h even got 2km that means i had to wait about 20 secs for just one hill and if you think that's a good time, think about this, the level is playable START to FiNISH (by their estimate) 4 to 7 minutes, but it takes longer than that if you don't drive like a maniac .. so to my luck i managed nonetheless to cheat my way to altmost 1.000.000$ but i still don't have any idea on how to do that same thing for the point system..

A little instruction on how to make 1.000.000$ or more depends on how much is enough..
This is how i did it:
First locate the Cars directory in your game folder ..
eg. D:\Games\UAZ\data\cars
Now in that folder you will find a multitude of folders all named like the cars (technical names not those showed in the game) now choose any folder you want.. i recommend the one corresponding your car in the garage and open the file named cars.scr.. you can do that with notepad and just edit what you want .. i could have edit the cars power but that just ruins all the fun..

oh and anyone know where i could find some sort of backup of the game exe, cuz my dvd is in shambals i don't think i can make more than 3 installs at this rate.. oh and if any kind of trainer should appear and i don't find it please let me know :) thanks:eek:

Sorry for posting in the wrong section , i really didn't know , anyway there's no excuse. thanks for moving..

To get more money just open cars.scr, and edit the line that says Sell Price and edit that to whatever u want, eg. 500000 that'll get you as soon as you sell that car 500k $
Quote:

PowerTransfer( 1 )
Group( "P1" )
BuyPrice( 11000 )
SellPrice( 5500 ) --> Replace this with as much as you want the cars selling price to be, that means as soon as you sell the car the game will pay you that amount , pretty cool huh and easy :)
Power( 128 )

Joe Forster/STA 08-12-2007 03:29

(Wrong forum, moved.)

Don't request original game files; backup your DVD as soon as possible and/or ask the publisher for a replacement. (And read the forum rules.)

bleep 10-12-2007 22:39

..here's a basic one, I can't do much more as the game crashes too much on my PC.

UAZ 4x4 Racing v1.3

Have 50,000 Cash
Have 50,000 Points

streben 11-12-2007 05:31

It's maybe just is me, but i can't get the trainer to work.

bleep 11-12-2007 06:19

It was created for the english 1.3 version. It must be placed in the same folder as the game's exe. You also need to start the game by using the trainers "Run Game" option, it won't work on an existing instance of the game.

streben 11-12-2007 06:47

I have done all that and i hear cheat enabled in the speakers, but nothing happens with the money or points.

bleep 11-12-2007 07:09

You may need to refresh the screen to see the effect, if used in the garage, proceed to the dealership or elsewhere to load a new screen. If that doesn't work then our versions must differ somewhere and if that were the case the game should probably crash as it's not writing to the correct area.

streben 11-12-2007 12:09

even if i refresh nothing happens and the game don't crash at any point.

bleep 11-12-2007 18:34

Try the standard TMK trainer, if that doesn't work then I'm stumped.

You'll need to Alt+Tab to activate the cheats.

scudly 12-12-2007 13:30

bleep I had a weird thing happen, I'm in vista x32 edition and when I hit F1 it gave me money the first time, then whenever I'd hit F2 I'd hear "Cheat Enabled" but nothing would happen. Thought maybe restarting would do it, but nope no go. I've got a lot of money, but still the same base points.

Wonder if the data is stored in different points depending on your OS.

bleep 12-12-2007 14:39

Both cheats are very closely positioned in memory so if the cash cheat worked the bonus points should also have worked. I'm any case I'm using XP.

Try the TMK trainer, maybe the fault lies with the asm skeleton I used.

http://www.divshare.com/download/3084455-461

You'll need to Alt+Tab to activate the cheats.

streben 13-12-2007 11:54

how did you go about finding the memoryaddress for points?

bleep 13-12-2007 15:14

It's just a standard integer value search.

streben 14-12-2007 01:26

yeah, but did you search before and after a race or how did you do that?

bleep 14-12-2007 02:59

Quote:

Originally Posted by streben (Post 353049)
yeah, but did you search before and after a race or how did you do that?

Actually I never searched for the bonus points directly, I found it was stored +4h from cash. So find the cash addie and add 4hex to get bonus points.

Take note though, the memory address you'll find for cash is dynamically allocated and so is the region it'll break on.

Here's what I have in my notes;

bonus points (cash+4)
read:
017BC3B6 BF 181C9614 MOV EDI,14961C18
017BC3BB 8BBF 5C080000 MOV EDI,DWORD PTR DS:[EDI+85C]
017BC3C1 8B7F 58 MOV EDI,DWORD PTR DS:[EDI+58]
017BC3C4 3BF7 CMP ESI,EDI
017BC3C6 0F8F 1B000000 JG 017BC3E7

The above routine is dynamically allocated but the pointer address +offsets aren't (as far as I'm aware). So all I did was use the pointer routine as a subroutine which hooks the 'cash break on write' area;

016B27BF jmp 00409370

MOV EBX,14961C18
MOV EBX,DWORD PTR DS:[EBX+85C]
mov dword [ebx+58],0c350
MOVZX EBX,WORD PTR DS:[ESI+1]
MOV ECX,DWORD PTR SS:[EBP-10]
jmp 016B27C6

The cash routine is basically the same except for the -4h offset and jumps;

016B289F jmp 0040938e

MOV EBX,14961C18
MOV EBX,DWORD PTR DS:[EBX+85C]
mov dword [ebx+54],0c350
MOVZX EBX,WORD PTR DS:[ESI+1]
MOV ECX,DWORD PTR SS:[EBP-10]
jmp 016B28A6

The capitalised lines are the from the original pointer routine and the opcodes I replaced with the hook.

As you can see, they're virtually identical so I can't see how one works and the other doesn't for you. I've just downloaded the trainer and it still works fine for me on my game/pc.


All times are GMT -7. The time now is 23:30.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com