-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathconfig.lua
More file actions
25 lines (22 loc) · 1.02 KB
/
Copy pathconfig.lua
File metadata and controls
25 lines (22 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Config = {}
Config.Command = "documents" -- If nil, the command won't work
Config.RegisterKey = nil -- example: "k". If nil, there won't be a key registered. "Config.Command" has to be set to work.
Config.DocumentItemName = nil -- The name of the item you want to open the documents. If nil, no item will be registered. Example: "wallet"
Config.BirthdateFormat = "DD/MM/YYYY" -- The date format your framework uses. By default, ESX: 'DD/MM/YYYY' QB: 'YYYY-MM-DD' Check your identity/multicharacter config!
Config.PaperProp = {
name = "prop_cd_paper_pile1",
xRot = -130.0,
yRot = -50.0,
zRot = 0.0
}
-- These texts only show up on client side. To change texts in the NUI,
-- go to the web/build/config.js file
Config.Locale = {
["receiveNotification"] = "You received a document: ",
["giveNotification"] = "You gave a document: ",
["cancel"] = "Cancel",
["noPlayersAround"] = "There's no one around you",
["showDocument"] = "Show Document",
["giveCopy"] = "Give Copy",
["registerMapDescription"] = "Open documents"
}