fxmanifest.lua Oluşturucu
Herhangi bir FiveM ya da RedM resource'u için geçerli bir fxmanifest.lua oluştur: shared/client/server script'leri, NUI sayfası, dosyalar, bağımlılıklar, export'lar ve lua54.
Bu araç ve notları şimdilik İngilizce.
Resource
Scripts
NUI & files
data_file
Dependencies & exports
fx_version 'cerulean'
game 'gta5'
lua54 'yes'
name 'my_script'
description 'Basic client/server script'
version '1.0.0'
shared_scripts {
'config.lua',
}
client_scripts {
'client/*.lua',
}
server_scripts {
'server/*.lua',
}
How to use it
- Pick a starting point: Basic script, NUI resource or Vehicle pack.
- Add or remove scripts. The small
+ @ox_lib/init.luastyle buttons add common framework imports. - Download
fxmanifest.luainto your resource folder andensurethe resource in server.cfg.
Your manifest is saved in this browser, so you can come back and tweak it.
Load order
Scripts load in the order they are listed, and shared_scripts load before client and server scripts on each side. That is why @ox_lib/init.lua or @qbx_core/modules/lib.lua go at the top of shared_scripts, and config.lua should come before any file that reads Config. Paths starting with @ point into another resource, which needs to be started first (list it in dependencies).
A typical Qbox / ox_lib manifest
fx_version 'cerulean'
game 'gta5'
lua54 'yes'
name 'my_job'
version '1.0.0'
shared_scripts {
'@ox_lib/init.lua',
'@qbx_core/modules/lib.lua',
'config.lua',
}
client_scripts {
'@qbx_core/modules/playerdata.lua',
'client/*.lua',
}
server_scripts {
'@oxmysql/lib/MySQL.lua',
'server/*.lua',
}
dependencies {
'ox_lib',
'qbx_core',
'oxmysql',
}Vehicle packs
Put models (.yft, .ytd) in a stream folder, they are streamed automatically. Meta files need two things: a files entry so clients download them, and a data_file line so the game loads them. Globs such as data/**/vehicles.meta let you keep one folder per car.
Gotchas
ui_pagemust also be infiles, or the NUI frame stays blank. The generator adds it for you.fxmanifest.luareplaced the old__resource.lua. Do not ship both.- RedM resources need
game 'rdr3'plus the exactrdr3_warningline, which is added automatically. - Changing the manifest requires
refreshthenensure your_resourcein the server console.
Diğer config ve kod araçları
server.cfg Oluşturucu
Hostname, slot, OneSync, endpoint, tag, resource ve ACE izinleriyle eksiksiz, çalışan bir server.cfg hazırla.
Araç Handling Editörü
Kütle, çekiş gücü, yol tutuş ve süspansiyonu arayüzden ayarla, sonra handling.meta ya da runtime Lua olarak dışa aktar.
Kıyafet Tasarımcısı
Bir kıyafet .ydd ya da .ydr dosyasını .ytd'leriyle aç, 3D'de ya da UV düzeni üzerinde katmanlar, yazı ve resimlerle boya, sonra yeni .ytd texture'ları dışa aktar.
