Skip to content

Commit 9ad7dd2

Browse files
committed
README and Config for v3.0
1 parent 84ed462 commit 9ad7dd2

File tree

3 files changed

+18
-9
lines changed

3 files changed

+18
-9
lines changed

README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# Rainbomizer: V 🌈
55

6-
<a href="https://media.discordapp.net/attachments/821138024192278640/906978373333581864/20211107183741_1.jpg"> <img src="https://media.discordapp.net/attachments/821138024192278640/906978373333581864/20211107183741_1.jpg"></a>
6+
<a href="https://media.discordapp.net/attachments/806946194433376296/835847069511188490/20210425131911_1.jpg"> <img src="https://media.discordapp.net/attachments/806946194433376296/835847069511188490/20210425131911_1.jpg?width=933&height=513"></a>
77

88
A modification for Grand Theft Auto V that randomizes various aspects of the game from vehicles and sounds to missions and weapons.
99
<hr>
@@ -21,14 +21,14 @@ A modification for Grand Theft Auto V that randomizes various aspects of the gam
2121
## Features
2222

2323
New Features
24-
- 💡 **(NEW) Light Randomizer** - Randomizes all light colours in the game.
25-
- 🏥 **(NEW) Respawn Randomizer** - Randomizes where you respawn.
26-
- 🎥 **(NEW) Switch Scene Randomizer** - Randomizes the scene played when you switch to a different character.
24+
- 🔧 **Vehicles Appearance Randomizer**: Randomizes vehicle colours and upgrades like license plates, paintjobs, armour, etc.
25+
- 🏎️ **Parked Car Randomizer**: Randomizes vehicles parked around the map including boats and planes.
26+
- 👚 **Clothes Randomizer**: Randomizes the clothes and props the peds spawn with.
2727

2828
Features
2929
- :helicopter: **Traffic Randomizer** - Randomizes cars that spawn in traffic.
3030
- :blue_car: **Mission Vehicle Randomizer** - Randomizes vehicles you are given in missions, making sure that the vehicle you're given is usable for that mission.
31-
- :rainbow: **Colour Randomizer** - Randomizes colours of various in-game elements, including cars, the HUD, and more.
31+
- :rainbow: **HUD Colour Randomizer** - Randomizes colours of various in-game elements, the HUD, blips and more.
3232
- :page_with_curl: **Mission Randomizer** - Randomizes order of missions in-game. Upon completion of a mission, the game progresses as if you completed the original mission.
3333
- :gun: **Weapon Randomizer** - Randomizes weapons given to the enemies.
3434
- :sound: **Sounds Randomizer** - Randomizes dialogue and sound effects played in-game.
@@ -40,6 +40,10 @@ Features
4040
- :tractor: **Handling Randomizer** - Randomizes the handling of all vehicles.
4141
- :rocket: **Weapon Stats Randomizer** - Randomizes weapon stats such as fire rate, range, etc. of all weapons.
4242
- :oncoming_police_car: **Dispatch Randomizer** - Randomizes all dispatched police cars, ambulances, helicopters, and boats.
43+
- 💡 **Light Randomizer** - Randomizes all light colours in the game.
44+
- 🏥 **Respawn Randomizer** - Randomizes where you respawn.
45+
- 🎥 **Switch Scene Randomizer** - Randomizes the scene played when you switch to a different character.
46+
4347

4448
<span id="installation"></span>
4549
## Installation

config.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
########################################################
22

33
# Rainbomizer for V
4-
# Copyright (C) 2020-2021 - Parik
4+
# Copyright (C) 2020-2022 - Parik
55

66
# This program is free software: you can redistribute it and/or modify
77
# it under the terms of the GNU General Public License as published by
@@ -24,6 +24,8 @@
2424

2525
RainbomizerCredits = true
2626

27+
CarGeneratorRandomizer = true
28+
ClothesRandomizer = true
2729
TrafficRandomizer = true
2830
DispatchRandomizer = true
2931
HudRandomizer = true
@@ -133,6 +135,7 @@ RandomizeCarColours = true
133135
RandomizeCarUpgrades = true
134136

135137
# Value of 50 = 50% of cars will have random horn/armour
138+
RandomizeLicensePlateOdds = 75
136139
RandomizeHornOdds = 45
137140
RandomizeArmourOdds = 45
138141

src/common/configDefault.hh

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const char configDefault[] = R"(
22
########################################################
33
44
# Rainbomizer for V
5-
# Copyright (C) 2020-2021 - Parik
5+
# Copyright (C) 2020-2022 - Parik
66
77
# This program is free software: you can redistribute it and/or modify
88
# it under the terms of the GNU General Public License as published by
@@ -25,6 +25,8 @@ const char configDefault[] = R"(
2525
2626
RainbomizerCredits = true
2727
28+
CarGeneratorRandomizer = true
29+
ClothesRandomizer = true
2830
TrafficRandomizer = true
2931
DispatchRandomizer = true
3032
HudRandomizer = true
@@ -134,6 +136,7 @@ RandomizeCarColours = true
134136
RandomizeCarUpgrades = true
135137
136138
# Value of 50 = 50% of cars will have random horn/armour
139+
RandomizeLicensePlateOdds = 75
137140
RandomizeHornOdds = 45
138141
RandomizeArmourOdds = 45
139142
@@ -195,5 +198,4 @@ OddsOfPlayerModels = 20
195198
LightShiftFrequency = 1.0
196199
197200
# 0-100, with 0 being lights are never random to 100 being lights are always random.
198-
RandomizeOdds = 85.0
199-
)";
201+
RandomizeOdds = 85.0)";

0 commit comments

Comments
 (0)