-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfxmanifest.lua
More file actions
44 lines (37 loc) · 884 Bytes
/
fxmanifest.lua
File metadata and controls
44 lines (37 loc) · 884 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/YzC4Du7WYm ----
---- 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_BlipManager"
author "ThreeAmigosModding"
description "Advanced blip management for FiveM."
version "1.0.0"
client_debug_mode "false"
server_debug_mode "false"
experimental_features_enabled "0"
files {
"data/blips.json",
"data/*.lua",
"locales/*.json"
}
dependencies {
"/server:7290",
"/onesync",
"ox_lib",
"ox_target"
}
shared_scripts {
"@ox_lib/init.lua",
"shared/main.lua"
}
client_scripts {
"client/main.lua"
}
server_scripts {
"server/main.lua"
}