Implemented new vehicle garage, final commit v1.2.0

This commit is contained in:
ElPumpo
2018-12-30 23:29:04 +01:00
parent e7eabab212
commit 904774b6a8
12 changed files with 229 additions and 119 deletions
+37 -13
View File
@@ -49,6 +49,7 @@ Config.Hospitals = {
Vehicles = {
{
Spawner = vector3(307.7, -1433.4, 30.0),
InsideShop = vector3(446.7, -1355.6, 43.5),
Marker = { type = 36, x = 1.0, y = 1.0, z = 1.0, r = 100, g = 50, b = 200, a = 100, rotate = true },
SpawnPoints = {
{ coords = vector3(297.2, -1429.5, 29.8), heading = 227.6, radius = 4.0 },
@@ -70,10 +71,6 @@ Config.Hospitals = {
}
},
VehicleDeleters = {
vector3(327.6, -1481.1, 28.8)
},
FastTravels = {
{
From = vector3(294.7, -1448.1, 29.0),
@@ -131,6 +128,42 @@ Config.Hospitals = {
}
}
Config.AuthorizedVehicles = {
ambulance = {
{
model = 'ambulance',
label = 'Ambulance Van',
price = 5000
}
},
doctor = {
{
model = 'ambulance',
label = 'Ambulance Van',
price = 4500
}
},
chief_doctor = {
{
model = 'ambulance',
label = 'Ambulance Van',
price = 3000
}
},
boss = {
{
model = 'ambulance',
label = 'Ambulance Van',
price = 2000
}
}
}
Config.AuthorizedHelicopters = {
ambulance = {},
@@ -172,12 +205,3 @@ Config.AuthorizedHelicopters = {
}
}
Config.AuthorizedVehicles = {
{
model = 'ambulance',
label = 'Ambulance'
}
}