-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathfxmanifest.lua
More file actions
62 lines (54 loc) · 1.24 KB
/
fxmanifest.lua
File metadata and controls
62 lines (54 loc) · 1.24 KB
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
62
fx_version 'cerulean'
game 'rdr3'
rdr3_warning 'I acknowledge that this is a prerelease build of RedM, and I am aware my resources *will* become incompatible once RedM ships.'
name 'rsg-saloon-premium'
author 'devchacha'
description 'Premium Saloon Management System for RSGCore'
version '2.0.0'
lua54 'yes'
shared_scripts {
'@ox_lib/init.lua',
'config.lua'
}
client_scripts {
'client/main.lua',
'client/crafting.lua',
'client/shop.lua',
'client/jukebox.lua',
'client/propplacer.lua',
'client/consumption.lua',
'client/drunk.lua',
'client/billing.lua',
'client/animations.lua',
'client/piano.lua',
'client/phonograph.lua'
}
server_scripts {
'@oxmysql/lib/MySQL.lua',
'server/logs.lua',
'server/main.lua',
'server/crafting.lua',
'server/shop.lua',
'server/storage.lua',
'server/cashbox.lua',
'server/placedprops.lua',
'server/billing.lua',
'server/employees.lua',
'server/piano.lua',
'server/phonograph.lua'
}
ui_page 'html/index.html'
files {
'html/index.html',
'html/css/*.css',
'html/js/*.js',
'html/sounds/*.mp3',
'html/images/*.png',
'locales/*.lua'
}
dependencies {
'rsg-core',
'ox_lib',
'oxmysql',
'ox_target'
}