forked from Mobius1/esx_xp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfxmanifest.lua
64 lines (52 loc) · 1.11 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
fx_version 'adamant'
game 'gta5'
description 'XP Ranking System'
author 'Karl Saunders'
version '1.2.3'
server_scripts {
'@mysql-async/lib/MySQL.lua',
'@es_extended/locale.lua',
'locales/en.lua',
'config.lua',
'ranks.lua',
'utils.lua',
'server/main.lua'
}
client_scripts {
'@es_extended/locale.lua',
'locales/en.lua',
'config.lua',
'ranks.lua',
'utils.lua',
'client/main.lua',
'client/functions.lua',
'client/events.lua',
'demo.lua', -- remove if not required
}
dependencies {
'es_extended',
}
ui_page 'ui/ui.html'
files {
'ui/ui.html',
'ui/fonts/ChaletComprimeCologneSixty.ttf',
'ui/css/app.css',
'ui/js/class.xpm.js',
'ui/js/class.paginator.js',
'ui/js/class.leaderboard.js',
'ui/js/app.js'
}
export 'ESXP_SetInitial'
export 'ESXP_Add'
export 'ESXP_Remove'
export 'ESXP_SetRank'
export 'ESXP_GetXP'
export 'ESXP_GetRank'
export 'ESXP_GetXPToNextRank'
export 'ESXP_GetXPToRank'
export 'ESXP_GetMaxXP'
export 'ESXP_GetMaxRank'
export 'ESXP_ShowUI'
export 'ESXP_HideUI'
export 'ESXP_TimeoutUI'
export 'ESXP_SortLeaderboard'