forked from dollar-src/src-pawnshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.lua
More file actions
94 lines (84 loc) · 2.04 KB
/
config.lua
File metadata and controls
94 lines (84 loc) · 2.04 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
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
Config = {}
Config.Core = 'qb' -- qb / esx
Config.InventoryHeight = 160
Config.ImagePath = 'nui://qb-inventory/html/images/'
Config.SellLocations = {
vector3(387.57, 3585.62, 33.29),
}
Config.Items = {
['washedstone'] = {
label = 'Washed Stone',
price = 100,
},
['weapon_pistol'] = {
label = 'Pistol',
price = 5000,
},
['water'] = {
label = 'Water',
price = 200,
},
['wine'] = {
label = 'Wine',
price = 200,
},
}
Config.Lang = {
Header = 'Sell Item For',
sell = {
text = '[E] - Sell Items',
icon = 'cart-shopping',
position = 'right-center',
style = {
borderRadius = 0,
backgroundColor = 'green',
color = 'white'
}
},
selldistance = {
text = 'Sell Items',
icon = 'hand',
position = 'right-center',
style = {
borderRadius = 0,
backgroundColor = 'red',
color = 'white'
},
},
Dialog = {
Title = 'Sell Items',
label = 'Number of Item',
description = 'Enter an Amount Higher then 0',
icon = 'hashtag'
},
ErrorSell = {
id = 'errorr2',
title = 'ERROR',
description = 'There is No Item to Sell',
position = 'top-right',
style = {
backgroundColor = 'red',
color = 'white',
['.description'] = {
color = 'white'
}
},
icon = 'xmark',
iconColor = 'white'
},
SellItem = {
id = 'sellItemid',
title = 'ERROR',
description = 'U succesfully selled',
position = 'top-right',
style = {
backgroundColor = 'green',
color = 'white',
['.description'] = {
color = 'white'
}
},
icon = 'check',
iconColor = 'white'
},
}