Skip to content

Commit 585708b

Browse files
authored
Merge pull request #2 from MichaelCoding25/master
Change __resource to fxmanifest
2 parents 980b3ec + 3de3deb commit 585708b

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This script displays a nearest postal next to where PLD would go and also has a
1212
- `new-postals.json` -> [New and Improved Postals](https://forum.fivem.net/t/release-postal-code-map-new-improved-v1-1/147458)
1313
- `old-postals.json` -> [Original Postals](https://forum.fivem.net/t/release-modified-street-names-w-postal-numbers/8717)
1414
- `ocrp-postals.json` -> [OCRP Postals](https://forum.fivem.net/t/release-ocrp-community-releases/166277)
15-
3. To setup the postal map, open the `__resource.lua` file and change the variable `postalFile` to one of the files above
15+
3. To setup the postal map, open the `fxmanifest.lua` file and change the variable `postalFile` to one of the files above
1616
- **NOTE**: This defaults as the `new-postals.json` file
1717

1818
## Command

__resource.lua renamed to fxmanifest.lua

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,19 @@ local postalFile = 'new-postals.json'
66
WHAT EVER YOU DO, DON'T TOUCH ANYTHING BELOW UNLESS YOU **KNOW** WHAT YOU ARE DOING
77
If you just want to change the postal file, **ONLY** change the above variable
88
--]]
9-
resource_manifest_version '44febabe-d386-4d18-afbe-5e627f4af937'
9+
fx_version 'cerulean'
10+
games { 'gta5' }
11+
12+
author 'blockba5her'
13+
description 'This script displays a nearest postal next to where PLD would go and also has a command to draw a route to a specific postal'
14+
version '1.4.2'
15+
url 'https://github.com/blockba5her/nearest-postal'
1016

1117
client_scripts {
1218
'config.lua',
1319
'cl.lua'
1420
}
15-
server_script {
21+
server_scripts {
1622
'config.lua',
1723
'sv.lua'
1824
}

version.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"version": "1.4",
3-
"changelog": "Performance Improvements; Config Updates; Bug Fixes"
2+
"version": "1.4.2",
3+
"changelog": "Changed __resource to fxmanifest"
44
}

0 commit comments

Comments
 (0)