-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfxmanifest.lua
More file actions
44 lines (36 loc) · 887 Bytes
/
fxmanifest.lua
File metadata and controls
44 lines (36 loc) · 887 Bytes
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
--[[------------------------------------------------------
---- For Support - discord.gg/threeamigos ----
---- Docs - https://docs.threeamigos.shop ----
---- Do not edit if you do not know what you're doing ----
--]]------------------------------------------------------
game "gta5"
lua54 "yes"
fx_version "cerulean"
use_experimental_fxv2_oal "yes"
name "TAM_BugReports"
author "ThreeAmigosModding"
description "Bug Report System for fivem with Discord & GitHub integration."
version "1.0.0"
files {
"data/**",
"locales/*.json",
"web/build/index.html",
"web/build/**/*",
}
ui_page "web/build/index.html"
dependencies {
"/server:9000",
"/gameBuild:2802",
"/onesync",
"ox_lib",
}
shared_scripts {
"@ox_lib/init.lua",
"shared/main.lua"
}
client_scripts {
"client/main.lua",
}
server_scripts {
"server/main.lua",
}