-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathfxmanifest.lua
39 lines (30 loc) · 866 Bytes
/
fxmanifest.lua
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
-- the postal map to read from
-- change it to whatever model you want that is in this directory
local postalFile = 'new-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.3'
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'
server_export 'getPostalServer'