forked from Trsak/esx_inventoryhud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfxmanifest.lua
127 lines (120 loc) · 3.54 KB
/
fxmanifest.lua
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
fx_version 'adamant'
game 'gta5'
description 'ESX Inventory HUD'
version '1.1'
ui_page 'html/ui.html'
client_scripts {
'@es_extended/locale.lua',
'client/main.lua',
'client/trunk.lua',
'client/property.lua',
'client/player.lua',
'locales/cs.lua',
'locales/en.lua',
'locales/fr.lua',
'config.lua'
}
server_scripts {
'@es_extended/locale.lua',
'server/main.lua',
'locales/cs.lua',
'locales/en.lua',
'locales/fr.lua',
'config.lua'
}
files {
'html/ui.html',
'html/css/ui.css',
'html/css/jquery-ui.css',
'html/js/inventory.js',
'html/js/config.js',
-- JS LOCALES
'html/locales/cs.js',
'html/locales/en.js',
'html/locales/fr.js',
-- IMAGES
'html/img/bullet.png',
-- ICONS
'html/img/items/vine.png',
'html/img/items/jus_raisin.png',
'html/img/items/grand_cru.png',
'html/img/items/raisin.png',
'html/img/items/fish.png',
'html/img/items/fishingrod.png',
'html/img/items/bait.png',
'html/img/items/bandage.png',
'html/img/items/beer.png',
'html/img/items/binoculars.png',
'html/img/items/bread.png',
'html/img/items/cannabis.png',
'html/img/items/cigarette.png',
'html/img/items/clip.png',
'html/img/items/cocacola.png',
'html/img/items/coffee.png',
'html/img/items/coke.png',
'html/img/items/coke_pooch.png',
'html/img/items/meth.png',
'html/img/items/meth_pooch.png',
'html/img/items/opium.png',
'html/img/items/opium_pooch.png',
'html/img/items/weed.png',
'html/img/items/gold.png',
'html/img/items/icetea.png',
'html/img/items/sandwich.png',
'html/img/items/papers.png',
'html/img/items/hamburger.png',
'html/img/items/wine.png',
'html/img/items/cash.png',
'html/img/items/chocolate.png',
'html/img/items/iron.png',
'html/img/items/jewels.png',
'html/img/items/medikit.png',
'html/img/items/tequila.png',
'html/img/items/whisky.png',
'html/img/items/limonade.png',
'html/img/items/phone.png',
'html/img/items/vodka.png',
'html/img/items/water.png',
'html/img/items/cupcake.png',
'html/img/items/drpepper.png',
'html/img/items/energy.png',
'html/img/items/croquettes.png',
'html/img/items/bolpistache.png',
'html/img/items/bolnoixcajou.png',
'html/img/items/bolcacahuetes.png',
'html/img/items/fixkit.png',
'html/img/items/bolchips.png',
'html/img/items/black_chip.png',
'html/img/items/black_money.png',
'html/img/items/gym_membership.png',
'html/img/items/WEAPON_APPISTOL.png',
'html/img/items/WEAPON_ASSAULTRIFLE.png',
'html/img/items/WEAPON_ASSAULTSHOTGUN.png',
'html/img/items/WEAPON_BOTTLE.png',
'html/img/items/WEAPON_BULLPUPRIFLE.png',
'html/img/items/WEAPON_CARBINERIFLE.png',
'html/img/items/WEAPON_COMBATMG.png',
'html/img/items/WEAPON_BAT.png',
'html/img/items/WEAPON_COMBATPISTOL.png',
'html/img/items/WEAPON_CROWBAR.png',
'html/img/items/WEAPON_GOLFCLUB.png',
'html/img/items/WEAPON_KNIFE.png',
'html/img/items/WEAPON_MICROSMG.png',
'html/img/items/WEAPON_NIGHTSTICK.png',
'html/img/items/WEAPON_HAMMER.png',
'html/img/items/WEAPON_PISTOL.png',
'html/img/items/WEAPON_PUMPSHOTGUN.png',
'html/img/items/WEAPON_SAWNOFFSHOTGUN.png',
'html/img/items/WEAPON_SMG.png',
'html/img/items/WEAPON_STUNGUN.png',
'html/img/items/WEAPON_SPECIALCARBINE.png',
'html/img/items/WEAPON_KNUCKLE.png',
'html/img/items/WEAPON_FLASHLIGHT.png',
'html/img/items/WEAPON_REVOLVER.png',
'html/img/items/WEAPON_DAGGER.png',
'html/img/items/WEAPON_PETROLCAN.png',
'html/img/items/WEAPON_PISTOL50.png',
'html/img/items/WEAPON_DBSHOTGUN.png',
'html/img/items/WEAPON_SWITCHBLADE.png',
'html/img/items/WEAPON_POOLCUE.png'
}