0% found this document useful (0 votes)
57 views

RoyalRenderings Custom Music Tutorial

This document provides a step-by-step guide for creating a custom music tutorial using the Royal Renderings template. It outlines the necessary files to download, the directory structure for file placement, and instructions for editing the Lua script to include song details. The final steps include adding multiple songs and testing the setup in-game.

Uploaded by

nnasrsalhalsyah
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
57 views

RoyalRenderings Custom Music Tutorial

This document provides a step-by-step guide for creating a custom music tutorial using the Royal Renderings template. It outlines the necessary files to download, the directory structure for file placement, and instructions for editing the Lua script to include song details. The final steps include adding multiple songs and testing the setup in-game.

Uploaded by

nnasrsalhalsyah
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

Royal Renderings

Custom Music Tutorial


You need the Template to follow these instructions

Step 1
Download the Required Files​
- Music Pack Template
- Selected Song (In MP3 Format)
- Album Art​

Step 2
Export the Template into this directory:​
\AppData\Local\BeamNG.drive\0.34\mods\unpacked\

Your folder hierarchy should look like this:​


mods
└─ unpacked
└── RoyalRenderings_RadioPack_Template
├── art
└── vehicles

Step 3
Place your MP3 file into:​
\art\sound\music\

Place your Album Art into:​


\vehicles\common\album_covers\
Step 4
Rename both files to the name of your song
This doesn’t have to be specific, just something you can type easily

Step 5
Open additional_songs_template.lua inside:​
\vehicles\common\lua\songs\

Change:​
Title - To your song name​
Artist - To the artist name
Song Path - To the name of your songs MP3
Only change the “songfile” to the name of your mp3​
(Eg, “art/sound/music/OneLastBreath”)​
Album Art - To the name of your songs PNG/JPG​
Only change the “imagefile.png” to the name of your mp3​
(Eg, “local://local/vehicles/common/album_covers/OneLastBreath.png”)
Duration - To the amount of Seconds that your song’s MP3 is
You can calculate this by doing: minutes*60+seconds

Your song’s section should look like this:​


title = "One Last Breath",
artist = "Creed",
songPath = "art/sound/music/OneLastBreath",
albumArt = "local://local/vehicles/common/album_covers/OneLastBreath.png",
duration = 239

Step 6
Adding More than One Song
Duplicate the Brackets for each song you want to add. So if you have 2
songs, it would look like this:​

Step 7
Save the file and try in game

You might also like