-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.lua
More file actions
20 lines (19 loc) · 729 Bytes
/
config.lua
File metadata and controls
20 lines (19 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Config = {}
Config.Framework = "esx" -- esx/qbcore
Config.TimeBetweenChecking = 60 -- In seconds, ideal is something like in from 60s to 120s
Config.Lang = {
hungry = "You are hungry! Go eat something.",
thirsty = "You are thirsty! Go drink some water.",
veryhungry = "You are very hungry! Go eat something.",
verythirsty = "You are very thirsty! Go drink some water.",
}
Notify = function(description, icon, iconcolor, duration) -- EDIT TO YOUR OWN NOTIFICATIONS IF YOU DONT USE LIB NOTIFICATIONS!
lib.notify({
id = "status",
title = "Status",
description = description,
icon = icon,
iconColor = iconcolor,
duration = duration,
})
end