I donβt know how to stream this SP map files. Please teach me.
Please teach me how to edit manifest!
Create a folder in resources
named anything, here weβll call it asset
. Inside asset
, create a fxmanifest.lua
with the following code:
game 'gta5'
fx_version 'cerulean'
name 'asset' -- this can be changed
-- Providing the files may be unneeded, but who knows.
files {
"stream/*.ymf",
"stream/*.ymap",
"stream/*.ybn",
"stream/*.ytyp",
"stream/*.ydr",
"stream/*.ytd"
}
this_is_a_map 'yes'
-- Do you have any ".ytyp" files? Uncomment and put them here.
-- data_file "DLC_ITYP_REQUEST" "stream/<example>.ytyp"
Follow this by creating another folder called stream
inside the asset
folder. Place all your βfilesβ in there. Ensure & start your server.
1 Like
Thank you so much !! Is this correct?
fxmanifest needs to be inside the asset folder.
resources
βββ resource1
β βββ ...
βββ resource2
β βββ ...
βββ resource3
β βββ ...
βββ asset
βββ stream
βββ _manifest.ymf
βββ etc... (*.ydr, *.ytyp, etc)
βββ fxmanifest.lua
You can group resources together by using []
, eg
resources
βββ [folder1]
βββ asset
βββ stream
β βββ _manifest.ymf
β βββ etc... (*.ydr, *.ytyp, etc)
βββ fxmanifest.lua
βββ other_asset
βββ resource15
β βββ ...
βββ resource66
β βββ ...
βββ etc
Continued - ensuring [folder] will start every resource within that folder.
1 Like
I was able to stream! thank you.
1 Like