Configuration

The Config File will allow you to set the various settings required to get the resource working as designed but adapted for your servers needs.

circle-info

You must set up the Config.Command & Config.Jobs before the script will run as this will depend on your servers job name and the command you want that job to use to activate the menu. This Menu is designed to work with only ONE job so ensure you don't try to add a second as the script will throw up errors. You can edit the Config.Buttons to what ever buttons you require however you are strongly advised to avoid the WASD keys as this will cause you movement issues when placing props and wanting to walk over to the location. The Props section will be updated with the latest props supported from other packs and therefore you must not change the ['PROP_ID']. You can however alter the Label if you find it hard to identify the prop in game

circle-info

This Script can support other creators props however they will not be supported if errors are caused whilst third party props are installed. In order to add custom third party props make sure you have the details in the correct place. ['SG_LLC0'] = { -- The YDR model name

                label = "Left-Lane Closed 0yds" -- Description of the prop
            },

circle-info

If you are not using All of our Prop Packs you will wish to NULL out the lines for the props you are not streaming. See below for Example:

Before Edit

    ['smallprops'] = {
        label = "Small Props",
        props = {
            ['sg_roadcone_clean'] = {
                label = "Highway Cone"
            },
            ['sg_roadcone_clean_stack'] = {
                label = "Highway Cone Stack"
            },
        }
    },



After Edit 

 --   ['smallprops'] = {
 --       label = "Small Props",
 --       props = {
 --           ['sg_roadcone_clean'] = {
 --               label = "Highway Cone"
 --           },
 --           ['sg_roadcone_clean_stack'] = {
 --               label = "Highway Cone Stack"
 --           },
 --       }
 --   },

Last updated