[Help] How do i stream addon peds?

Yes, It is possible. You need to have a peds.meta. I use this as a Template. peds.meta (3.2 KB)

You need to add the peds.meta to your __resource.lua.

Inside your resource create a “stream” Folder, “data” Folder & a __resource.lua inside your __resource file put this

resource_manifest_version '77731fab-63ca-442c-a67b-abc70f28dfa5'

files {
	'data/peds.meta',
}

data_file 'PED_METADATA_FILE' 'data/peds.meta'

Change the peds name to for example “addonped”. (Remember to add _p in the end for the props file.)
Then install the peds.meta is posted at the top and change the top part where it says “The actual spawn name” to “addonped” because thats what we named the files. When thats done change “The actual spawn name_p” to “addonped_p” because thats the props for the ped. Then add the resource to your server.cfg then you restart the server and it should be a addon ped if its been done correctly.

7 Likes