Skip to content

Commit

Permalink
Merge pull request #2 from MichaelCoding25/master
Browse files Browse the repository at this point in the history
Change __resource to fxmanifest
  • Loading branch information
DevBlocky authored Feb 4, 2021
2 parents 980b3ec + 3de3deb commit 585708b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ This script displays a nearest postal next to where PLD would go and also has a
- `new-postals.json` -> [New and Improved Postals](https://forum.fivem.net/t/release-postal-code-map-new-improved-v1-1/147458)
- `old-postals.json` -> [Original Postals](https://forum.fivem.net/t/release-modified-street-names-w-postal-numbers/8717)
- `ocrp-postals.json` -> [OCRP Postals](https://forum.fivem.net/t/release-ocrp-community-releases/166277)
3. To setup the postal map, open the `__resource.lua` file and change the variable `postalFile` to one of the files above
3. To setup the postal map, open the `fxmanifest.lua` file and change the variable `postalFile` to one of the files above
- **NOTE**: This defaults as the `new-postals.json` file

## Command
Expand Down
10 changes: 8 additions & 2 deletions __resource.lua → fxmanifest.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,19 @@ 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
--]]
resource_manifest_version '44febabe-d386-4d18-afbe-5e627f4af937'
fx_version 'cerulean'
games { 'gta5' }

author 'blockba5her'
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'
version '1.4.2'
url 'https://github.com/blockba5her/nearest-postal'

client_scripts {
'config.lua',
'cl.lua'
}
server_script {
server_scripts {
'config.lua',
'sv.lua'
}
Expand Down
4 changes: 2 additions & 2 deletions version.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"version": "1.4",
"changelog": "Performance Improvements; Config Updates; Bug Fixes"
"version": "1.4.2",
"changelog": "Changed __resource to fxmanifest"
}

0 comments on commit 585708b

Please sign in to comment.