Configuring locations

Configuring new locations

{
  -- The coordinates of the base unit (the item which the user interacts with to hire a bike)
  machineCoordinates = vector3(168.95793151855, -784.54144287109, 30.56356048584),
  -- The heading of the base unit
  machineHeading = 251.42901611328,
  -- The direction which the bike docks should be relative to the dock (left/right only)
  direction = "left",
  -- The number of docks at this particular station
  numberOfDocks = 5,
  -- Show blip on the map with how many bikes are available at this location
  showBlip = true,
},

machineCoordinates = vector3(x, y, z ), when adding a new location you're going to want to change the x, y, z values to the location. This is the machine you interact with to hire a bike.

machineHeading = 251.42901611328, this is the way the machine will face.

direction = "left", the direction that the bike docks will be placed from the machine, please only use left or right.

numberOfDocks = 5, this will allow you to place how many bike docks you wish for this location to have.

showBlip = true, you can enable or disable the blip to this location. To disable please change true to false.

Last updated