Files
ND_Core/fxmanifest.lua

31 lines
608 B
Lua
Raw Normal View History

-- For support join my discord: https://discord.gg/Z9Mxu72zZ6
2021-12-23 22:40:54 +01:00
2023-07-09 03:07:46 +02:00
author "Andyyy#7666"
description "ND Framework Core"
2023-07-09 03:07:46 +02:00
version "2.0.0"
2021-12-23 22:40:54 +01:00
2021-12-24 17:31:12 +01:00
fx_version "cerulean"
game "gta5"
lua54 "yes"
2023-07-16 12:30:35 +02:00
shared_script "@ox_lib/init.lua"
2022-10-04 00:32:21 +02:00
client_scripts {
2023-07-09 21:19:35 +02:00
"client/main.lua",
2023-07-11 01:06:13 +02:00
"shared/functions.lua",
2023-07-12 04:53:14 +02:00
"client/vehicle.lua",
2022-12-03 08:09:33 +01:00
"client/functions.lua",
2023-07-12 04:53:14 +02:00
"client/events.lua"
2022-10-04 00:32:21 +02:00
}
2021-12-23 22:40:54 +01:00
server_scripts {
"@oxmysql/lib/MySQL.lua",
2022-10-04 17:49:36 +02:00
"server/main.lua",
2023-07-11 01:06:13 +02:00
"shared/functions.lua",
2023-07-10 02:31:59 +02:00
"server/player.lua",
2023-07-12 04:53:14 +02:00
"server/vehicle.lua",
2023-07-10 02:31:59 +02:00
"server/functions.lua"
2021-12-31 02:51:34 +01:00
}
2023-07-16 12:30:35 +02:00
file "init.lua"
2022-03-24 21:28:33 +01:00
2023-01-11 13:16:33 +01:00
dependency "oxmysql"