💡Installation
Installation guide of Radio V2 System.
Step 1: Move resource
Extract the zip you downloaded from keymaster and drop the stg-radiov2 folder in the resources folder.
Step 2: Install SQL
Install the SQL file from the [SETUP] folder in the downloaded ZIP.
Step 3: Add Items
The radio item is most likely already present in your server, but if not, you can follow the steps below (it works with all inventories, I’ve just included a few examples).
🖼️ You can find the item images inside the images folder located in the [SETUP] directory.
INSERT INTO items (name, label)
VALUES
('radio', 'Radio'),
('jammer', 'Jammer');radio = { name = 'radio', label = 'Radio', weight = 2000, type = 'item', image = 'radio.png', unique = true, useable = true, shouldClose = true, description = 'You can communicate with this through a signal' },
jammer = { name = 'jammer', label = 'Jammer', weight = 2000, type = 'item', image = 'jammer.png', unique = true, useable = true, shouldClose = true, description = 'You can communicate with this through a signal' },['radio'] = {
label = 'Radio',
weight = 1000,
stack = false
},
['jammer'] = {
label = 'Jammer',
weight = 1000,
stack = false,
},Step 4: Start script
Start stg-radiov2 in server.cfg.
ensure stg-radiov2Last updated