forked from dolutattoo/dolu_tool
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.lua
More file actions
19 lines (16 loc) · 819 Bytes
/
config.lua
File metadata and controls
19 lines (16 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
-- Please read documentation: https://dolutattoo.github.io/docs/category/dolu_tool
Config = {}
-- Make sure to check available languages in 'locales' folder.
-- Please contribute by creating a locale file in your language and PR on github or post it on Dolu's Discord <3.
Config.language = 'en'
-- These are default keys to interact with dolu_tool commands.
-- You can also override them in your pause menu, at the very bottom of FiveM keybinds section.
Config.openMenuKey = 'F3'
Config.toggleNoclipKey = 'F11'
Config.teleportMarkerKey = 'F10'
-- Use this function to check if a player is allowed to use dolu_tool features.
-- By default, the function returns true, meaning everyone can use dolu_tool.
-- 'type' can be 'menu', 'noclip', 'teleport' or 'target'
Config.perimission = function(type)
return true
end