Config
Run immersive taxi rides in seconds!
// Config
Config = {}
-- Taxi and driver configuration
Config.TaxiModel = "taxi" -- change to any vehicle model (e.g. custom taxi)
Config.DriverPed = "s_m_m_lathandy_01" -- change to any ped model
-- Cooldown between /calltaxi usage (seconds)
Config.Cooldown = 60
-- UI / behaviour flags
Config.ShowUIOnCall = true -- show destination selector as soon as /calltaxi is used
Config.HonkOnArrival = true -- taxi honks when it reaches the player
-- List of preset destinations
-- You can freely add / remove entries here.
-- Coords are standard GTA V world positions.
Config.Destinations = {
{ label = "Legion Square", coords = vector3(215.76, -908.49, 30.69) },
{ label = "Mission Row PD", coords = vector3(425.13, -979.55, 30.71) },
{ label = "Pillbox Medical", coords = vector3(294.50, -584.71, 43.20) },
{ label = "Los Santos Airport", coords = vector3(-1044.82, -2683.69, 13.95) },
{ label = "Vespucci Beach", coords = vector3(-1107.64, -1691.55, 4.38) },
{ label = "Del Perro Pier", coords = vector3(-1655.42, -1028.12, 13.02) },
{ label = "Rockford Plaza", coords = vector3(-133.32, -616.18, 36.28) },
{ label = "Sandy Shores", coords = vector3(1863.23, 3670.16, 33.69) },
{ label = "Grapeseed", coords = vector3(1707.88, 4729.12, 42.15) },
{ label = "Paleto Bay", coords = vector3(-275.95, 6227.89, 31.49) }
}
Last updated