Sign Setup

Setting up your Custom Vinewood Sign is simple!

Custom Vinewood Sign

Configuration File

To begin, navigate to the config.lua file included in the resource folder.

    textLines = {
        [1] = "london", -- Line 1 of text (top)
        [2] = "studios", -- Line 2 of text (bottom)
    },

    -- This section allows you to add more than 1 choice of text to the sign. The sign will rotate through the different text options at the rate defined below 
    additionalText = {
        useAdditionalText = false, -- Set to false to disable text rotation 
        timeToRotate = 5, -- The amount of time to rotate through the text in seconds

        -- We've added multiple default texts here, but you can add or remove to have as many as you like
        -- If additional text is enabled then the above textLines values will not be used, you'll need to add them here
        textOptions = {
            [1] = {
                [1] = "london",
                [2] = "studios",
            },
            [2] = {
                [1] = "vinewood",
                [2] = "sign",
            },
            [3] = {
                [1] = "more text",
                [2] = "here",
            },
        },

    },

This can be found on lines 3-11 of the config. Here you can set the top line and bottom line of your vinewood sign. This must be a maximum of 10 characters on each line, including spaces.

The new additionalText option allows you to configure the resource such that the text displayed on the vinewood sign will rotate at the interval described. You can add or remove as many different options of text as your server needs by copying and pasting one of the text options and renumbering it. You can also disable this feature entirely by setting useAdditionalText to false.

Make sure to count the numbers of characters carefully before starting the resource to ensure that your message will display correctly.

Restart resource

After saving the config.lua file, make sure to restart the resource and your message should be displayed in-game.

Your custom vinewood sign will also be fully emissive at night.

Custom Vinewood Sign

Last updated

Was this helpful?