-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathconfig.lua
65 lines (60 loc) · 2.45 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
57
58
59
60
61
62
63
64
65
Config = {}
-- GENERAL SETTING
Config.SuccesChance = 60 --How many % of chance to unlock a car. (0-100)
Config.OnlyPlayerCar = true --Set false if you want to picklock work on npc car (true-false)
Config.Locale = 'fr' --Set lang (fr-en-br)
-- POLICE
Config.PoliceNumberRequired = 0 --Set how many cops is need to try stole a car. (0-64)
Config.AlertPolice = true --Turn to false if you don't want cops is called on car alarm start for player car. (true-false)
Config.CallCopsChance = 60 --How many % of chance for the car alarm start AND call cops. (0-100)
Config.BlipTime = 40 --Set how many time a blip keep flash on map. (1-200)
-- PAWNSHOP SETTING
Config.SellCarBlackMoney = false --Set this to true if you want player recive blackmoney instead of money (true-false)
Config.WaitTime = 15 --Set how many time in minutes before another vehicle can be sell to the pawnshop (0-9999...)
Config.ExpireVehicle = 7 --Set how many days the player have to buy back ther vehicle before all can buy it
Config.ResellPercentage = 10 --Percent of original car price player get from selling car (1-100)
Config.RebuyPercentage = 15 --Percent of original car price player need to buy back the car (1-100)
Config.NpcCarPrice = 100 --Set the sell price for npc car (1-9999...)
Config.PawnShopBLJob = { --Here you can add job can't sell car at PawnShop
{ JobName = "police", },
{ JobName = "mechanic", },
{ JobName = "ambulance", }
}
--ITEMS PRICES
Config.Items = {
HammerWireCutter = {name = "hammerwirecutter", price = 100},
UnlockingTool = {name = "unlockingtool", price = 1000},
Jammer = {name = "jammer", price = 10000},
Alarm1 = {name = "alarm1", price = 10000},
Alarm2 = {name = "alarm2", price = 20000},
Alarm3 = {name = "alarm3", price = 30000},
AlarmInterface = {name = "alarminterface", price = 100}
}
--SHOPS ZONES
Config.Zones = {
Shops = {
PawnShop = {
Name = "pawnshop_menu_title",
OnMap = true, --if set true PawnShop will be show on map
Pos = {
vector3(-1451.63, -382.51, 37.34),
vector3(1708.82, 3774.66, 34.49),
vector3(-230.73, 6351.28, 32.20)
},
Size = 1.5,
Color = 26,
Sprite = 52
},
BlackGarage = {
Name = "black_menu_title",
OnMap = false, --if set true BlackGarage will be show on map
Pos = {
vector3(1218.43, -3230.96, 4.16),
vector3(2352.38, 3133.29, 47.71)
},
Size = 1.5,
Color = 40,
Sprite = 229
}
}
}