Update README.md
This commit is contained in:
parent
2a5bea33b4
commit
4cf32935e5
16
README.md
16
README.md
|
@ -38,17 +38,19 @@ _The boilerplate was made using `yarn` but is still compatible with
|
||||||
Install dependencies by navigating to the `web` folder within
|
Install dependencies by navigating to the `web` folder within
|
||||||
a terminal of your choice and type `npm i` or `yarn`.
|
a terminal of your choice and type `npm i` or `yarn`.
|
||||||
|
|
||||||
## Features
|
|
||||||
|
|
||||||
# Enable modules in Config.EnableModules
|
# Enable modules in Config.EnableModules
|
||||||
|
|
||||||
```lua
|
```lua
|
||||||
Config.EnableModules = {
|
Config.EnableModules = {
|
||||||
["Newbie"] = false,
|
["Newbie"] = {
|
||||||
["DamageLog"] = true,
|
enabled = true,
|
||||||
["Hud"] = true,
|
client = true, -- enable client side
|
||||||
['Player'] = true,
|
priority = 1, -- 1 : init on start | 2 : init on player loaded
|
||||||
['Speedometer'] = true
|
},
|
||||||
|
["Test"] = {
|
||||||
|
enabled = true,
|
||||||
|
priority = 2, -- 1 : init on start | 2 : init on player loaded
|
||||||
|
},
|
||||||
}
|
}
|
||||||
Config.Debug = true -- print log
|
Config.Debug = true -- print log
|
||||||
Config.Dev = false
|
Config.Dev = false
|
||||||
|
|
Loading…
Reference in New Issue
Block a user