-
Notifications
You must be signed in to change notification settings - Fork 54
/
fxmanifest.lua
61 lines (51 loc) · 1.17 KB
/
fxmanifest.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
-- FIREAC (https://github.com/AmirrezaJaberi/FIREAC)
-- Copyright 2022-2024 by Amirreza Jaberi (https://github.com/AmirrezaJaberi)
-- Licensed under the GNU Affero General Public License v3.0
-- Main Settings
fx_version 'cerulean'
game 'gta5'
-- Project Information
author 'Amirreza Jaberi'
description 'FIREAC'
version '7.1.1'
-- Web UI Page
ui_page 'ui/index.html'
-- UI Files
files {
'ui/*.html',
'ui/css/*.css',
'ui/js/*.js',
'ui/assists/**/*.*'
}
-- Shared Scripts and Configurations
shared_scripts {
'tables/*.lua',
'configs/fire-config.lua'
}
-- Client Scripts
client_scripts {
'src/fire-client.lua',
'src/fire-menu.lua',
}
-- Server Scripts
server_scripts {
'@oxmysql/lib/MySQL.lua',
'configs/fire-webhook.lua',
'src/fire-server.lua',
}
-- Exports (For use on both client and server)
exports {
'FIREAC_CHANGE_TEMP_WHHITELIST',
'FIREAC_CHECK_TEMP_WHITELIST',
'FIREAC_ACTION'
}
-- Server-specific Exports
server_exports {
'FIREAC_CHANGE_TEMP_WHHITELIST',
'FIREAC_CHECK_TEMP_WHITELIST',
'FIREAC_ACTION'
}
-- Dependencies
dependencies {
'oxmysql',
}