-
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) · 832 Bytes
/
fxmanifest.lua
File metadata and controls
44 lines (36 loc) · 832 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_Tackle"
author "ThreeAmigosModding"
description "Very simple tackle script w/ proper syncing & animations."
version "v1.0.0"
files {
"data/**",
"locales/*.json"
}
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"
}
escrow_ignore {
"**/*.lua"
}