Files
ND_Core/fxmanifest.lua
T

35 lines
597 B
Lua
Raw Normal View History

2021-12-24 22:16:53 +01:00
-- For support join my discord: https://discord.gg/Z9Mxu72zZ6
2021-12-23 22:40:54 +01:00
2022-07-23 00:06:20 -04:00
author "Andyyy#7666, N1K0#0001"
2022-07-16 04:46:27 +02:00
description "ND Framework Core"
2022-11-04 22:16:39 -04:00
version "3.1.5"
2021-12-23 22:40:54 +01:00
2021-12-24 17:31:12 +01:00
fx_version "cerulean"
game "gta5"
lua54 "yes"
2021-12-25 00:31:22 +01:00
shared_script "config_client.lua"
2022-10-04 00:32:21 +02:00
client_scripts {
2022-10-04 17:49:36 +02:00
"client/main.lua",
"client/events.lua"
2022-10-04 00:32:21 +02:00
}
2022-11-04 22:16:39 -04:00
2021-12-23 22:40:54 +01:00
server_scripts {
2022-07-16 04:46:27 +02:00
"@oxmysql/lib/MySQL.lua",
2021-12-25 04:46:06 +01:00
"config_server.lua",
2022-10-04 17:49:36 +02:00
"server/main.lua",
2022-11-04 22:02:59 -04:00
"server/commands.lua",
2022-10-04 17:49:36 +02:00
"server/functions.lua",
"server/events.lua"
2021-12-23 22:40:54 +01:00
}
exports {
2022-07-16 04:46:27 +02:00
"GetCoreObject"
2021-12-24 17:31:12 +01:00
}
2022-07-08 23:24:04 +02:00
2021-12-31 02:51:34 +01:00
server_exports {
2022-07-16 04:46:27 +02:00
"GetCoreObject"
2021-12-31 02:51:34 +01:00
}
2022-03-24 21:28:33 +01:00
2022-09-07 12:11:56 +02:00
dependency "oxmysql"