-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathfxmanifest.lua
More file actions
42 lines (36 loc) · 848 Bytes
/
fxmanifest.lua
File metadata and controls
42 lines (36 loc) · 848 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
fx_version 'cerulean'
games { 'gta5' }
name 'keep-bags'
description 'a bag script that allows players to carry more items within their inventory'
version '2.2.0'
author "Swkeep#7049"
repository 'https://github.com/swkeep/keep-bags'
shared_scripts {
'shared/harmony.lua',
'locale/en.lua',
'locale/de.lua',
'shared/props.lua',
'config.lua',
'shared/shared.lua',
}
client_scripts {
'client/client_main.lua',
'client/functions.lua',
'client/clothing.lua',
'client/backpacks.lua',
'client/inventory.lua',
'client/retrieve.lua',
'client/outfitbag.lua'
}
server_script {
'@oxmysql/lib/MySQL.lua',
'server/server.db.lua',
'server/server_main.lua',
'server/lockpick.lua',
'server/retrieve.lua'
}
dependencies {
'oxmysql',
'keep-harmony'
}
lua54 'yes'