Hey,

I’ve been trying for a very long time to get my map-addons for my server working. But it doesn’t seem to do anything. The file is in the correct place, but I am not sure about the __resource.lua, all the addons are in the stream folder. Just wondering if my resource.lua file is corrent?? → `resource_manifest_version ‘77731fab-63ca-442c-a67b-abc70f28dfa5’

this_is_a_map ‘yes’
`
That’s all I got in it. Those are the files in the Stream folder:

The resource is being started as I can see in the console, but it won’t do anything.

Anyone know what’s going on?
Jorrit

@Nullified im still a bit new myself to map addons but any time I have tried to place more then one in a folder and stream it it seems to have failed so maybe try limiting this folder to one map addon and see if it works, if it takes effect then increase the number in there if not then double check your server.cfg (sometimes im in a hurry and forget to add that part :slight_smile: ) failing that id would need to know where the files came from to see if I can help further.

Alright, I will try to add one resource first. The folder is being started in the server.cfg, that can’t be the problem. Give me a minute and I’ll send a update on it.

Thanks

@computer_geek3k It looks like it’s still not working. I made a map in resources called ‘Map2’ putted in the same __resource.lua and added one add-on in the stream folder. I also added start Map2 in the server.cfg. Have any other options?

  1. Dont put spaces in your map file names
  2. You’re using an ancient resource manifest version. https://docs.fivem.net/scripting-reference/resource-manifest/resource-manifest/

Other than that looks fine

@d0p3t What resource manifest version should I use then?

The latest one…

There are diffrent versions right?

Manifest versions
The resource manifest has to specify a particular version for the resource to adhere to. A list of version GUIDs and features they are associated with is shown on this page.

Each manifest version includes all features from manifest versions above, except where they would overrule one another, in which case the latest version is used.

No manifest version 
By default, no manifest version is used, which is equivalent to manifest GUID 00000000-0000-0000-0000-000000000000. This (along with the empty GUID) will be removed in future releases of FXServer, and resources will be required to specify a manifest version.

Manifest version 00000000-0000-0000-0000-000000000000 (no date) 
The natives.lua file natives_21e43a33.lua will be used for client-side Lua.
Manifest version 77731fab-63ca-442c-a67b-abc70f28dfa5 (2016-12) 
No changes. This is the minimum operating level for FXServer.
Manifest version f15e72ec-3972-4fe4-9c7d-afc5394ae207 (2017-04-08) 
The natives.lua file natives_0193d0af.lua will be used for client-side Lua. This represents the state of NativeDB in early April of 2017.
Manifest version 44febabe-d386-4d18-afbe-5e627f4af937 (2017-06-07) 
The natives.lua file natives_universal.lua will be used for client-side Lua. This is a universal natives.lua file, which should be able to be switched to without having to change your scripts. It also represents a more recent (2017-06-05) snapshot of NativeDB.
Manifest version 05cfa83c-a124-4cfa-a768-c24a5811d8f9 (2017-06-04) 
Scripts will now be registered as a game network script. This is required for networking entities.
CREATE_VEHICLE and similar functions behave differently when passing true, true as network object flags. See network objects for more information.

It’s not working after using the latest manifest version