Files
Elite-Gaming-FiveM/resources/Nearest-Postal/fxmanifest.lua
T
2021-12-03 01:05:09 +00:00

38 lines
835 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
--]]
fx_version 'cerulean'
games { 'gta5' }
lua54 "yes"
author 'DevBlocky'
description 'This script displays the nearest postal next to map, and allows you to navigate to specific postal codes'
version '1.5.2'
url 'https://github.com/DevBlocky/nearest-postal'
client_scripts {
'config.lua',
'cl.lua',
'cl_commands.lua',
'cl_render.lua',
-- uncomment to enable dev tools
--'cl_dev.lua',
}
server_scripts {
'config.lua',
'sv.lua'
}
file(postalFile)
postal_file(postalFile)
file 'version.json'