We have finally announced an important upgrade to build 917.
- Improved code of game initialization and options menu
- Fixed random behavior of hidden settings menu
- Fixed random switching to 640x480 resolution in fullscreen mode after accessing options menu
- Improved blower hood mesh for Hauler's Badge (thanks to ramrom for that)
- Fixed incorrect names of some tuner parts for Stallion (thanks to ramrom)
== WARNING! YOUR OLD SAVEGAME WILL BE LOST AFTER THIS UPDATE. IF YOU TRY TO LOAD IT, GAME WILL CRASH. ==
In order to fix the issues with saving game settings, we had to modify the structure of savegame files. For safe transition to build 917 follow the instructions below:
1. Delete all old careers and start new one;
2. If the game won't start or if it shows "Create hw 3d device FAILED", uninstall it from Steam (right-click on the game, select "Delete local content", then go to game folder and delete ALL files from there, install the game again)
3. If neither of steps above help, contact [email protected] for help.
If you want to enable cheats, to the following:
1. Go to your game folder (usually located at Program Files\Steam\steamapps\common\Street Legal Racing Redline v2.3.1)
2. Open file Player.java in sl\scripts\game\src\
3. Look for these lines of code:
int c_enabled = 0; //defines if player has access to cheats menu
int c_garage = 0; //garage codes: money, car selector, roc teleporter, etc.
int c_track = 0; //track cheats: slowmotion, osd on/off, freeze, etc.
int c_eventlist = 0; //eventlist stuff: join any race, one-click prize
int c_catalog = 0; //show/hide kits in catalog
int c_autosave = 1; //automatic career progress save
int c_ghost = 0; //no drivers in vehicles
Replace with these:
/code]
int c_enabled = 1; //defines if player has access to cheats menu
int c_garage = 1; //garage codes: money, car selector, roc teleporter, etc.
int c_track = 1; //track cheats: slowmotion, osd on/off, freeze, etc.
int c_eventlist = 1; //eventlist stuff: join any race, one-click prize
int c_catalog = 1; //show/hide kits in catalog
int c_autosave = 1; //automatic career progress save
int c_ghost = 1; //no drivers in vehicles
Save this file, run the game again, START NEW CAREER and save it.