Usage

How to create your guides

Creating your first guide

  • Go to dynamicguides/config.lua

  • Copy this layout and add inside Config.Guides

--[[
[''] = {
    markBlip = vector2(0.0, 0.0),
    spots = {
        {
            pos = -- Use /getcam in-game to get this.
            title = '',
            text = '',
            time = 10000
        },
    }
},
]]--

Now create your guide according to the example below

How to start this guide

Now that the guide is ready in config.lua you have some ways to start it.

Last updated