-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.lua
56 lines (53 loc) · 1.39 KB
/
config.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
Config = {}
Config.Locale = 'en'
Config.ClaimCommand = 'mygift'
Config.Rewards = { -- [0 - 10000] Raffle numbers
{
raffleNumbers = 250, -- 2.5% [0-250]
text = "You won ~b~Akuma~w~!",
carModel = 'akuma',
moneyReward = 0,
blackMoneyReward = 0,
rewardImage = 'car'
},
{
raffleNumbers = 500, -- 2.5% [250-500]
text = "You won ~b~Adder~w~!",
carModel = 'adder',
moneyReward = 0,
blackMoneyReward = 0,
rewardImage = 'car'
},
{
raffleNumbers = 1250, -- 7.5% [500-1250]
text = "You won ~b~Vigero~w~!",
carModel = 'Vigero',
moneyReward = 0,
blackMoneyReward = 0,
rewardImage = 'car'
},
{
raffleNumbers = 2000, -- 7.5% [1250-2000]
text = "You won ~b~Rocoto~w~!",
carModel = 'rocoto',
moneyReward = 0,
blackMoneyReward = 0,
rewardImage = 'car'
},
{
raffleNumbers = 6000, -- 40% [2000 - 6000]
text = "You won ~b~100.000$~w~!",
carModel = nil,
moneyReward = 100000,
blackMoneyReward = 0,
rewardImage = 'money'
},
{
raffleNumbers = 10000, -- 40% [6000 - 10000]
text = "You won ~b~100.000$ black money~w~!",
carModel = nil,
moneyReward = 0,
blackMoneyReward = 150000,
rewardImage = 'black_money'
},
}