Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ Questions about the mod or development can be asked on our [Discord Server](http

## Settings
### Randomisations
#### Random character animations
Off by default
This will randomise each characters animation set.
#### Random pickup stars
On by default
This will randomise the colour of each items pickup star
#### Random couch character
On by default.
If this is checked, you will get a random character sitting on the couch in the main menu.
Expand Down
5 changes: 4 additions & 1 deletion Randomiser/CustomFiles.ini
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
*/gr?i.mfk=Resources/MissionScripts/HandleMissionInit.lua
*/sr?l.mfk=Resources/MissionScripts/HandleMissionLoad.lua
*/sr?i.mfk=Resources/MissionScripts/HandleMissionInit.lua
scripts/missions/rewards.mfk=Resources/HandleRewards.lua

art/l1z4.p3d=Resources/HandleLevelTERRA.lua
;art/l1r4a.p3d=Resources/HandleLevelTERRA.lua
Expand All @@ -21,6 +22,7 @@ art/missions/*_doors.p3d=Resources/HandleLevelDoors.lua
*CustomT.p3d=Resources/HandleLevelTERRA.lua
*TERRA.p3d=Resources/HandleLevelTERRA.lua
*.cho=Resources/HandleChar.lua
*_a.p3d=Resources/Handle_a.lua
*.rms=Resources/HandleRMS.lua
art/cars/*.p3d=Resources/HandleCarModel.lua
art/frontend/scrooby/frontend.p3d=Resources/HandleFrontend.lua
Expand All @@ -30,7 +32,8 @@ art/l*i*.p3d=Resources/HandleLevelInterior.lua
art/chars/*_m.p3d=Resources/HandleCharModel.lua
art/frontend/scrooby/resource/txtbible/srr2.p3d=Resources/CustomText.lua
art/frontend/scrooby/resource/pure3d/homer*.p3d=Resources/RandomCouch.lua
art/missions/level0?/m?.p3d=Resources/HandleMissionP3D.lua
art/missions/level0?/*.p3d=Resources/HandleMissionP3D.lua
art/wrench0.p3d=Resources/HandleWrenches.lua
art/missions/level0?/level.p3d=Resources/HandleLevelP3D.lua
sound/scripts/car_tune.spt=Resources/HandleCarTune.lua
sound/scripts/carsound.spt=Resources/HandleCarSound.lua
Expand Down
5 changes: 5 additions & 0 deletions Randomiser/CustomFiles.lua
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,15 @@ if Settings.CustomChars then
end

dofile(Paths.Resources .. "RandomCarTune.lua")

if Settings.RandomDialogue then
dofile(Paths.Resources .. "RandomDialogue.lua")
end

if Settings.RandoPickupStars then
dofile(Paths.Resources .. "InitStars.lua")
end

DebugPrint("Loaded " .. #RandomCarPoolPlayer .. " cars for the random Player pool")
DebugPrint("Loaded " .. #RandomCarPoolTraffic .. " cars for the random Traffic pool")
DebugPrint("Loaded " .. #RandomCarPoolMission .. " cars for the random Mission pool")
Expand Down
Loading