Clothing fxmanifest
Only clothing-relevant keys. Full spec: Cfx resource manifest.
Difficulty: Easy · Affects: both
lua
fx_version 'cerulean'
game 'gta5'
files {
'pedalternatevariations.meta',
}
data_file 'ALTERNATE_VARIATIONS_FILE' 'pedalternatevariations.meta'
-- Official type: https://docs.fivem.net/docs/game-references/data-files/
-- Shop / apparel meta: copy the vendor's working data_file lines (often SHOP_PED_APPAREL_META_FILE in older tutorials).
dependencies {
'/policy:subdir_file_mapping', -- official comment: "clothing support"; confirm your key still has it
-- '/gameBuild:3095', -- optional minimum DLC
}
escrow_ignore {
'stream/*.ytd', -- example only if the author intends open textures
}data_file | Supports globbing in the filename field (CONFIRMED). Do not invent extra types. If the pack ships without shop meta and still works, do not add one. |
policy | /policy:subdir_file_mapping — official comment: clothing support. If clothes never stream, the key may lack it. |
lua54 | No longer required. As of June 2025 Cfx documents Lua 5.3 as deprecated and all Lua as 5.4 (CONFIRMED). Leaving the line in does not hurt; do not treat it as a clothing fix. |
escrow_ignore | Authors decide which files stay open. See Asset Escrow. |
What not to do
WARNING
Add shop meta “because a tutorial had it”
Copy the vendor’s working lines, or leave them out if the pack already works.
WARNING
lua54 as a crash fix
It is not a clothing fix.