-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathconfig.lua
20 lines (20 loc) · 1.49 KB
/
config.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Config = {}
Config.Locale = 'pl' -- your language, It would be nice if you send me your translation on fivem forum
Config.TimeToSell = 15 -- how many seconds player have to wait/stand near ped
Config.CallCops = true -- if true and if ped reject your offer then there is [Config.CallCopsPercent]% to call cops
Config.CopsRequiredToSell = 2 -- required cops on server to sell drugs
Config.CallCopsPercent = 1 -- (min1) if 1 cops will be called every time=100%, 2=50%, 3=33%, 4=25%, 5=20%
Config.PedRejectPercent = 3 -- (min1) if 1 ped reject offer=100%, 2=50%, 3=33%, 4=25%, 5=20%
Config.PlayAnimation = true -- just play animation when sold
Config.SellPooch = true -- if true, players can sell pooch like weed_pooch, meth_pooch
Config.SellSingle = false -- if true, players can sell single item like weed, meth
Config.SellWeed = true -- if true, players can sell weed
Config.SellMeth = true -- if true, players can sell meth
Config.SellCoke = true -- if true, players can sell coke
Config.SellOpiu = true -- if true, players can sell opium
Config.WeedPrice = 200 -- sell price for single, not pooch (black money)
Config.MethPrice = 250 -- sell price for single, not pooch (black money)
Config.CokePrice = 350 -- sell price for single, not pooch (black money)
Config.OpiuPrice = 300 -- sell price for single, not pooch (black money)
Config.DistanceFromCity = 10000 -- set distance that player cant sell drugs too far from city
Config.CityPoint = {x= -255.94, y= -983.93, z= 30.21}