feat(config): config as a module
This commit is contained in:
+3
-1
@@ -1,3 +1,5 @@
|
|||||||
|
local Config = require 'config.client'
|
||||||
|
|
||||||
local currentGear = {
|
local currentGear = {
|
||||||
mask = 0,
|
mask = 0,
|
||||||
tank = 0,
|
tank = 0,
|
||||||
@@ -66,7 +68,7 @@ local function attachGear()
|
|||||||
currentGear.tank = CreateObject(tankModel, 1.0, 1.0, 1.0, true, true, false)
|
currentGear.tank = CreateObject(tankModel, 1.0, 1.0, 1.0, true, true, false)
|
||||||
local bone1 = GetPedBoneIndex(cache.ped, 24818)
|
local bone1 = GetPedBoneIndex(cache.ped, 24818)
|
||||||
AttachEntityToEntity(currentGear.tank, cache.ped, bone1, -0.25, -0.25, 0.0, 180.0, 90.0, 0.0, true, true, false, false, 2, true)
|
AttachEntityToEntity(currentGear.tank, cache.ped, bone1, -0.25, -0.25, 0.0, 180.0, 90.0, 0.0, true, true, false, false, 2, true)
|
||||||
|
|
||||||
currentGear.mask = CreateObject(maskModel, 1.0, 1.0, 1.0, true, true, false)
|
currentGear.mask = CreateObject(maskModel, 1.0, 1.0, 1.0, true, true, false)
|
||||||
local bone2 = GetPedBoneIndex(cache.ped, 12844)
|
local bone2 = GetPedBoneIndex(cache.ped, 12844)
|
||||||
AttachEntityToEntity(currentGear.mask, cache.ped, bone2, 0.0, 0.0, 0.0, 180.0, 90.0, 0.0, true, true, false, false, 2, true)
|
AttachEntityToEntity(currentGear.mask, cache.ped, bone2, 0.0, 0.0, 0.0, 180.0, 90.0, 0.0, true, true, false, false, 2, true)
|
||||||
|
|||||||
@@ -1,5 +0,0 @@
|
|||||||
Config = {}
|
|
||||||
Config.OxygenLevel = 100 -- in seconds
|
|
||||||
Config.PutOnSuitTimeMs = 5000
|
|
||||||
Config.TakeOffSuitTimeMs = 5000
|
|
||||||
Config.RefillTankTimeMs = 5000
|
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
return {
|
||||||
|
OxygenLevel = 100,
|
||||||
|
PutOnSuitTimeMs = 5000,
|
||||||
|
TakeOffSuitTimeMs = 5000,
|
||||||
|
RefillTankTimeMs = 5000
|
||||||
|
}
|
||||||
+5
-8
@@ -10,20 +10,17 @@ shared_scripts {
|
|||||||
'@qbx_core/shared/locale.lua',
|
'@qbx_core/shared/locale.lua',
|
||||||
'locales/en.lua',
|
'locales/en.lua',
|
||||||
'locales/*.lua',
|
'locales/*.lua',
|
||||||
'config.lua',
|
|
||||||
}
|
}
|
||||||
|
|
||||||
modules {
|
modules {
|
||||||
'qbx_core:utils',
|
'qbx_core:utils',
|
||||||
}
|
}
|
||||||
|
|
||||||
server_scripts {
|
server_script 'server/main.lua'
|
||||||
'server/*',
|
|
||||||
}
|
|
||||||
|
|
||||||
client_scripts {
|
client_script 'client/main.lua'
|
||||||
'client/*'
|
|
||||||
}
|
file 'config/client.lua'
|
||||||
|
|
||||||
lua54 'yes'
|
lua54 'yes'
|
||||||
use_experimental_fxv2_oal 'yes'
|
use_experimental_fxv2_oal 'yes'
|
||||||
Reference in New Issue
Block a user