[Help] "How to stream" this map files?

I don’t know how to stream this SP map files. Please teach me.

image

image

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?
image

image

image

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. :pray:

1 Like