0ixb-stashes/fxmanifest.lua
Bxio cc53d101cb Enable Lua 5.4 in fxmanifest, bump to 1.1.2
ox_lib requires lua54 to be enabled; without it, ox_lib/init.lua
threw "Lua 5.4 must be enabled in the resource manifest!" on
resource start.
2026-08-03 11:37:34 +00:00

39 lines
653 B
Lua

fx_version 'cerulean'
game 'gta5'
lua54 'yes'
author 'SeuNome'
description 'Sistema de safes com ox_inventory e ox_target'
version '1.1.2'
-- Dependências
dependencies {
'ox_inventory',
'ox_target',
'ox_lib',
'oxmysql'
}
-- Shared / Config
shared_script '@ox_lib/init.lua'
shared_script 'config.lua'
-- Scripts do servidor
server_scripts {
'@oxmysql/lib/MySQL.lua', -- garante que o oxmysql esteja carregado
'server.lua'
}
-- Scripts do cliente
client_scripts {
'client.lua'
}
-- Comandos do console / debug
escrow_ignore {
'config.lua',
'client.lua',
'server.lua'
}