24 lines
526 B
Lua
24 lines
526 B
Lua
-- the postal map to read from
|
|
-- change it to whatever model you want that is in this directory
|
|
local postalFile = 'ocrp-postals.json'
|
|
|
|
--[[
|
|
WHAT EVER YOU DO, DON'T TOUCH ANYTHING BELOW UNLESS YOU **KNOW** WHAT YOU ARE DOING
|
|
If you just want to change the postal file, **ONLY** change the above variable
|
|
--]]
|
|
resource_manifest_version '44febabe-d386-4d18-afbe-5e627f4af937'
|
|
|
|
client_scripts {
|
|
'config.lua',
|
|
'cl.lua'
|
|
}
|
|
server_script {
|
|
'config.lua',
|
|
'sv.lua'
|
|
}
|
|
|
|
file(postalFile)
|
|
postal_file(postalFile)
|
|
|
|
file 'version.json'
|