Skip to content

Commit

Permalink
v0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Die4Ever committed Apr 10, 2022
1 parent e5b2b67 commit 9e16bf5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,21 @@ You'll need a development build of OpenRCT2 from https://openrct2.org/downloads/

Copy the `rctrando.js` file into the OpenRCT2 plugin folder, which is usually `%USERPROFILE%\Documents\OpenRCT2\plugin\`

Currently v0.4 randomizes:
Currently v0.5 randomizes:
* scenario goals
* scenario length
* park values such as starting cash, starting bank loan amount, maxBankLoan, landPrice
* park flags such as difficultGuestGeneration, forbidMarketingCampaigns, and preferMoreIntenseRides
* the base stats of each ride type
* runningCost, excitement, intensity, and nausea
* Ride Type Stat Re-rolls
* How often to rerandomize the stats for ride types. Build the Theme Park of Theseus.
* You will get notifications at the bottom of the screen when these re-rolls happen.

The Randomization Range option specifies how much values can be changed from their original. Low will have a narrow range so the values are close to their originals, while Extreme can give much wider variety. This is mostly separate from difficulty, but Extreme can give unpredictable results.

<img src="https://i.imgur.com/37Xe054.png" alt="v0.4 Settings Menu" width="500"/>
<img src="https://i.imgur.com/oEhD1Y4.png" alt="Settings Menu" width="500"/>

<img src="https://i.imgur.com/837f9tB.png" alt="v0.4 Changes List" width="600"/>
<img src="https://i.imgur.com/xL7YPl1.png" alt="Changes List" width="600"/>

Join the [Discord discussion here](https://discord.gg/jjfKT9nYDR) or follow me on [Twitter @Die4EverDM](https://twitter.com/Die4EverDM)
1 change: 1 addition & 0 deletions src/rctrando.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ function RandomizeRide(rideId) {
if(!settings.rando_ride_types)
return;
let ride = map.getRide(rideId);
// TODO: ride.object.name is the name of the vehicle not the ride type
RandomizeRideType(ride, ride.object.name, ride.type);
}

Expand Down
2 changes: 1 addition & 1 deletion src/rctrando_init.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const rando_name = 'RollerCoaster Tycoon Randomizer';
const rando_version = '0.5 Beta';
const rando_version = '0.5';
let debug:boolean = false;

console.log(" \n"+rando_name+" v"+rando_version
Expand Down

0 comments on commit 9e16bf5

Please sign in to comment.