RiP-GarageV2
RiP-GarageV2 is gives you the opportunity to rename vehicles in your garage and add them to your favourites.
Config
Some options are explained here. However this does not represent the original config file.
RiP.Fraktion
You can use the public garage to park out/in fraction vehicles in addition to the garage build-in RiP-Fraktion.
RiP.Fraktion = false -- [BOOLEAN] enable fraction vehicles (RiP-Fraktion required)
RiP.AutomaticReset
Automatlicly retrieve all parked-out vehicles to the garage on script/server start.
RiP.AutomaticReset = true -- [BOOLEAN] reset vehicles on resource start
RiP.Garages
With this option you can create further garages. Just copy the code below and paste it under the last garage in your config.
It is important in order to create a working config to pay attention about all {}
and ,
.
{
Name = "Meeting Point", -- [STRING] garage label (leave empty to display street name)
Type = 'car', -- [STRING] garage type (all vehicles with this SQL type will be listed)
Location = vector3(213.92, -808.51, 31.02), -- [VECTOR] garage location (x,y,z)
Blip = {
Show = true, -- [BOOLEAN] enable/disable garage blip
Name = "RiP-Garage", -- [STRING] blip label
Type = 357, -- [INTEGER] blip type
Scale = 0.9, -- [DECIMAL] blip size
Display = 4, -- [INTEGER] blip display type
Color = 13 -- [INTEGER] blip color
},
Marker = {
Type = 22, -- [INTEGER] marker type
Size = {X = 1.0, Y = 1.0, Z = 0.9}, -- [DECIMAL] marker scaling
Color = {R = 117, G = 94, B = 170} -- [INTEGER] marker color (rgb)
},
SpawnPoints = { -- unlimited park-out points (copy-paste element to add more)
{
Position = vector3(221.4474029541, -806.83673095703, 30.368890762329), -- [VECTOR] park-out position (x,y,z)
Heading = 248.54, -- [DECIMAL] park-out heading
Radius = 1.0 -- [DECIMAL] park-out space
},
},
},
Add different types in one garage
To add different vehicle- (sql) types in one garage use the Type
parameter as followed.
Type = {'car', 'boat'},
In this particular case all vehicles with the database type car
and boat
will be listed.