roadcraft money

Ask about cheats/tables for single player games here
michaelhost
Expert Cheater
Expert Cheater
Posts: 99
Joined: Thu Feb 27, 2020 12:31 pm
Reputation: 40

Re: roadcraft money

Post by michaelhost »

Search then put this line manually in "Switch to Free text mode" to unlock all mission on your save editor

"unlockedLevels": [
"rb_map_01_storm_preparation",
"rb_map_07_rail_failure",
"rb_map_08_contamination",
"rb_map_02_storm_aftermath",
"rb_map_03_incommunicado",
"rb_map_04_salt_mines",
"rb_map_05_dam_break",
"rb_map_06_sinkholes",
"rb_map_09_sand_storm",
"rb_map_10_geothermal"
]

credits to the save editor creator
Last edited by michaelhost on Thu May 29, 2025 12:26 pm, edited 2 times in total.

michaelhost
Expert Cheater
Expert Cheater
Posts: 99
Joined: Thu Feb 27, 2020 12:31 pm
Reputation: 40

Re: roadcraft money

Post by michaelhost »

kksc2025 wrote:
Thu May 29, 2025 7:50 am
michaelhost wrote:
Wed May 28, 2025 1:31 am
vosszaa wrote:
Tue May 27, 2025 8:53 pm


Can you tell me exactly how to edit the json to unlock all the missions please
idk if that possible actually, i haven't test the save editor that far due to the game is kinda sensitive with crash and easy to corrupt your save. the least thing i know is the locked map isn't written/appeared yet on the save file if you haven't unlocked it or play the map, like the recovery point where you need to unlock the garage first for it to be written on the save file by the game. the creator also mention don't add non-existent trucks or levels to your unlocks it might upset the game
Did you try the .exe from there, seems not to work for me. Anyone with the same problem?
yes, use the .exe one (make sure you could run python program) -> it will ask you to open the save file (as .FILE) -> edit your save file -> copy your edited save to your save file location (the .exe will create a new file as a OutputSave in the same folder as the .exe) don't forget to rename it as "CompletedSave" -> reload your game

jellyfish15
Noobzor
Noobzor
Posts: 5
Joined: Wed May 28, 2025 10:59 am
Reputation: 4

Re: roadcraft money

Post by jellyfish15 »

Updated Sand script for 1.5 patch

Backup your saves in AppData\Local\Saber\RoadCraftGame\storage\steam\user don't hold me responsible for your piles of sand :mrgreen:
Attachments
Roadcraft_1.5_SandHax_Tony.ct
(1.3 KiB) Downloaded 1238 times

fxbxtest
What is cheating?
What is cheating?
Posts: 1
Joined: Thu May 29, 2025 12:43 pm
Reputation: 0

Re: roadcraft money

Post by fxbxtest »

Works perfect thank you

anonymouz
Expert Cheater
Expert Cheater
Posts: 83
Joined: Sat Feb 09, 2019 7:03 pm
Reputation: 13

Re: roadcraft money

Post by anonymouz »

jellyfish15 wrote:
Thu May 29, 2025 1:35 pm
Updated Sand script for 1.5 patch

Backup your saves in AppData\Local\Saber\RoadCraftGame\storage\steam\user don't hold me responsible for your piles of sand :mrgreen:
LML17 wrote:
Thu May 29, 2025 3:13 pm
I made a cheat for infinite sand, it's on the first page of the post. Read the cheat description!
update Game 1.0.5.1
Thanks! 8-)
Last edited by anonymouz on Thu May 29, 2025 5:07 pm, edited 1 time in total.

User avatar
LML17
Expert Cheater
Expert Cheater
Posts: 63
Joined: Thu Mar 26, 2020 4:02 am
Reputation: 148

Re: roadcraft money

Post by LML17 »

I made a cheat for infinite sand, it's on the first page of the post. Read the cheat description!
update Game 1.0.5.1

User avatar
LML17
Expert Cheater
Expert Cheater
Posts: 63
Joined: Thu Mar 26, 2020 4:02 am
Reputation: 148

Re: roadcraft money

Post by LML17 »

I made a cheat for infinite sand, it's on the first page of the post. Read the cheat description!
update Game 1.0.5.1

I used the table created by BRNoWaste, updated it and configured it so that less sand comes out, if you lift the bucket too much it will empty, but if you control it more or less in the middle it will not empty and not much sand will come out.

User avatar
Player360
Novice Cheater
Novice Cheater
Posts: 22
Joined: Sat Feb 23, 2019 10:05 pm
Reputation: 1

Re: roadcraft money

Post by Player360 »

Either that or always enable the Refill Sand option button.

jellyfish15
Noobzor
Noobzor
Posts: 5
Joined: Wed May 28, 2025 10:59 am
Reputation: 4

Re: roadcraft money

Post by jellyfish15 »

LML17 wrote:
Fri May 30, 2025 3:47 pm
I made a cheat for infinite sand, it's on the first page of the post. Read the cheat description!
update Game 1.0.5.1

I used the table created by BRNoWaste, updated it and configured it so that less sand comes out, if you lift the bucket too much it will empty, but if you control it more or less in the middle it will not empty and not much sand will come out.
tbh once you get used to the OG script, this one is annoying to use. + it stil spills sand when you drive uphill

PizzaIsLife
Noobzor
Noobzor
Posts: 8
Joined: Tue Jun 28, 2022 11:43 am
Reputation: 1

Re: roadcraft money

Post by PizzaIsLife »

jellyfish15 wrote:
Fri May 30, 2025 4:48 pm
tbh once you get used to the OG script, this one is annoying to use. + it stil spills sand when you drive uphill
Do you mean the one with overfill protection? Here it is, updated.

Code: Select all

[ENABLE]
aobscanmodule(infSand,Roadcraft - Retail.exe,F3 0F 11 44 BE 20)
alloc(newmem,$1000,infSand)
label(returnhere)
label(originalcode)
label(exit)
label(skip_fill)

newmem:
  // Get current sand value
  movss xmm2,[rsi+rdi*4+20]
  mov eax,(float)1.0       // Threshold for "empty"
  movd xmm3,eax
  comiss xmm2,xmm3
  jae skip_fill            // Wenn Sand >= 2.0,

  // Fill sand to the value 2.0
  mov eax,(float)1.0
  movd xmm2,eax
  movss [rsi+rdi*4+20],xmm2

skip_fill:
  // Make sure value is not over 2.0
  movss xmm2,[rsi+rdi*4+20]
  mov eax,(float)2.0
  movd xmm3,eax
  comiss xmm2,xmm3
  jbe ok
  movss [rsi+rdi*4+20],xmm3

ok:
  jmp returnhere

originalcode:
  movss [rsi+rdi*4+20],xmm0

exit:
  jmp returnhere

infSand:
  jmp newmem
  nop
returnhere:

[DISABLE]
unregistersymbol(infSand)
dealloc(newmem)
infSand:
  db F3 0F 11 44 BE 20
// movss [rsi+rdi*4+20],xmm0

FlareXll
What is cheating?
What is cheating?
Posts: 1
Joined: Sun May 25, 2025 3:56 pm
Reputation: 0

Re: roadcraft money

Post by FlareXll »

michaelhost wrote:
Sat May 24, 2025 2:52 pm
I've found a save editor and tested it,
it works for editing resources (under the fobresources{"your total unlocked map"} -> "your map/mission name" -> numbers 0–9; make sure you know which is which, it's better to edit resources that already have a value). You can also edit fuel (under the recovery coins in the save editor, which is separated for each map), EXP, and money.

So far, these are the only things I've tested that the game accepts without crashing or corrupting the save file. Just in case, always back up your save file before making changes.

Quick note :
- You need to quit the game before loading your edited save, the game do kinda have cache thingy so it wont read the new save file until you reload the game.
- for the fuel or recovery coins they called it, if you are on a new map you need to be atleast unlocked your base/garage first then the option will appear on the save file

I'm not sure if I'm allowed to post links to GitHub releases, but here it is:
[Link]

search then put this line manually in "Switch to Free text mode" to unlock all mission on your save editor

"unlockedLevels": [
"rb_map_01_storm_preparation",
"rb_map_07_rail_failure",
"rb_map_08_contamination",
"rb_map_02_storm_aftermath",
"rb_map_03_incommunicado",
"rb_map_04_salt_mines",
"rb_map_05_dam_break",
"rb_map_06_sinkholes",
"rb_map_09_sand_storm",
"rb_map_10_geothermal"
]

How to use :
use the .exe one (make sure you could run python program) -> it will ask you to open the save file (as .FILE) -> edit your save file -> Backup your save file (just in case) -> copy your edited save to your save file location (the .exe will create a new file as a OutputSave in the same folder as the .exe) don't forget to rename it as "CompletedSave" -> reload your game

-> (Tested on pre-update version, Not Yet Personally test it on 1.5 update but it should work as usual because why the devs change the save format anyway, right?)

Give credits to the github save editor creator
Enjoy while it works :D

Image

I can confirms this work i have done so much with the completesaveeditor there is alot of things that works if you know what you doing

Sonakome
What is cheating?
What is cheating?
Posts: 1
Joined: Thu May 29, 2025 5:09 pm
Reputation: 0

Re: roadcraft money

Post by Sonakome »

I tried today (1st June) to cheat money, i found é addresses that responsible for them but ... the game crashes when i freezes both addresses

jellyfish15
Noobzor
Noobzor
Posts: 5
Joined: Wed May 28, 2025 10:59 am
Reputation: 4

Re: roadcraft money

Post by jellyfish15 »

Sonakome wrote:
Sun Jun 01, 2025 1:00 pm
I tried today (1st June) to cheat money, i found é addresses that responsible for them but ... the game crashes when i freezes both addresses
From Cheat Engine, go to settings > debugger options> Use VEH debugger.

It shouldn't crash no more.

ScubaSteve345
What is cheating?
What is cheating?
Posts: 2
Joined: Sun May 25, 2025 5:01 am
Reputation: 0

Re: Teleporting

Post by ScubaSteve345 »

Has anyone been able to figure out teleportation? Been trying to find an easy way to get trucks to distant locations. In the save game editor under trucks it will show you the current co-ordinates of the truck, the same goes for markers you place. I tried copying the marker co-ordinates to the truck but it doesn't seem to do anything. I have no idea how to find coords on cheat engine so not able to do it myself XD :cry: :?:

grizx3
Noobzor
Noobzor
Posts: 6
Joined: Thu Oct 24, 2019 11:28 pm
Reputation: 6

Re: roadcraft money

Post by grizx3 »

Hey ally's

An online tool for editing your roadcraft save.
Forked from Roadcraft completesave editor by NakedDave

[Link]

Add/Edit XP
Add/Edit Cash
Add/Edit Inventory
Recovery Coins (gas)
Logs
Steel Beams
Pipes
Concrete
Unlock all maps
Unlock all trucks
Update company name
Remove rusty trucks from garage

Just upload the CompleteSave
C:\Users\****\AppData\Local\Saber\RoadCraftGame\storage\steam\user\76561********\Main\save\SLOT_0

*****editor by NakedDave****


Kind regards

Post Reply

Who is online

Users browsing this forum: Bing [Bot], DotBot, Majestic-12 [Bot]