1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-10 09:32:29 +01:00

Typos, Linux Path

Krutonium
2019-01-02 03:44:51 -05:00
parent e31dd44aaa
commit fe213cee36

@@ -1,7 +1,7 @@
OpenRCT2 has a replay system that allows you to record and replay game actions such as placing footpath or creating an entire coaster. This system can be used to create regression tests so previous fixed bugs will be caught if they somehow manage to slip in again.
# Recording
The system will record every command such as placing footpath, creating a ride, modifying its attributes etc. To start a recording open the in-game console, then type
The system will record every command such as placing footpath, creating a ride, modifying its attributes etc. To start a recording, open the in-game console and type:
```
replay_startrecord example_recording
```
@@ -10,9 +10,10 @@ If you are done recording you can stop it via the console, just type:
```
replay_stoprecord
```
That should create a file in your user data folder under in a folder called "replay", the file on a Windows machine would be located at:
That should create a file in your user data folder under in a folder called "replay", the file will be located at:
```
%USERPROFILE%\Documents\OpenRCT2\replay\example_recording.sv6r
Windows: %USERPROFILE%\Documents\OpenRCT2\replay\example_recording.sv6r
Linux: ~/.config/OpenRCT2/replay/example_recording.sv6r
```
# Playback