FiveM ESX 药物创建者
config = {}
-- Coordinates where you can pick up each ingredient (Not every ingredient is already here, I suggest you to add the remaining ones, like sprite, in a market instead of making it harvestable)
config.ingredientsCoords = {
["codeine"] = {x = 2193.8, y = 5594.4, z = 53.7, radius = 2.0},
["liquid_sulfur"] = {x = 422.16, y = 6465.56, z = 28.8, radius = 2.0},
["ammonium_nitrate"] = {x = 430.96, y = 6474.92, z = 28.84, radius = 2.0},
["sodium_hydroxide"] = {x = 3559.0, y = 3674.6, z = 28.12, radius = 2.0},
["pseudoefedrine"] = {x = 249.04, y = -1375.64, z = 39.52, radius = 2.0},
["carbon"] = {x = 1127.8, y = -2001.48, z = 35.44, radius = 2.0},
["hydrogen"] = {x = 1553.36, y = 837.88, z = 78.52, radius = 2.0},
["nitrogen"] = {x = 283.52, y = -1336.08, z = 24.52, radius = 2.0},
["oxygen"] = {x = 280.16, y = -1333.24, z = 24.52, radius = 2.0},
}
-- Coordinates of labs
config.Labs = {
[1] = vector3(1388.4, 3605.51, 38.94),
[2] = vector3(2436.24, 4965.56, 42.36),
}
-- Can players sell drugs by plane?
config.enableAirplaneSell = true
-- Meters where the player can sell drugs
config.heightToSell = 600
-- Time required player has to remain above config.heightToSell and above the ocean in order to sell with a plane (ms)
config.timeToSellInPlane = 300000
-- When a player starts selling drugs in plane, the police will be alerted
config.alarmPoliceInPlane = true
-- Can Players sell drugs by boat?
config.enableBoatSell = true
-- Time required player has to remain in ocean in order to sell with a boat (ms)
config.timeToSellInBoat = 120000
-- When a player starts selling drugs in boat, the police will be alerted
config.alarmPoliceInBoat = true
--[[
true: allows players to sell drugs by going anywhere in the ocean using the specific vehicle
false: allows players to sell drugs by going in the radius of config.sellArea using the specific vehicle
]]
config.sellUseWholeOcean = {
plane = true,
boat = false,
}
-- works with config.sellUseWholeOcean
config.sellArea = {
plane = {x = 1.0, y = 2.0, z = 3.0, radius = 300.0},
boat = {x = 3449.7, y = 105.4, z = 32.43, radius = 200.0}
}
-- If config.sellUseWholeOcean = false for specific vehicle, when in radius will the area be shown?
config.showRadiusWhileSelling = true
-- Should ingredients blips be showed on the map?
config.enableIngredientsBlips = false
-- Should labs blips be showed on the map?
config.enableLabsBlips = false
-- Seconds the blip will remain in the map after a npc calls police
config.blipTimeAfterNPCCallPolice = 120
-- Allow players to sell drugs to NPCs?
config.enableNPCSell = true
config.enableFireOnError = true
© 版权声明
THE END
暂无评论内容