From 1e3b8c53775799587e7b4c47c4a7ed4f26079082 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Sun, 2 Jan 2022 20:08:15 -0600 Subject: [PATCH] House/biz loc const --- scripts/server/const.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/scripts/server/const.js b/scripts/server/const.js index 5fcb783b..0ac7fcdf 100644 --- a/scripts/server/const.js +++ b/scripts/server/const.js @@ -68,16 +68,16 @@ const VRR_GATEOWNER_PUBLIC = 5; // Is a public gate. Technically // Business Location Types const VRR_BIZLOC_NONE = 0; // None -const VRR_BIZLOC_MAINDOOR = 0; // Main entrance/exit -const VRR_BIZLOC_DOOR = 1; // Any other entrance/exit -const VRR_BIZLOC_FUEL = 2; // Fuel pump -const VRR_BIZLOC_DRIVETHRU = 3; // Drivethrough -const VRR_BIZLOC_VENDMACHINE = 4; // Vending machine +const VRR_BIZLOC_GATE = 1; // Center of any moveable gate that belongs to the biz +const VRR_BIZLOC_GARAGE = 2; // Location for attached garage (pos1 = outside, pos2 = inside). Use pos to teleport or spawn veh/ped +const VRR_BIZLOC_FUEL = 3; // Fuel pump +const VRR_BIZLOC_DRIVETHRU = 4; // Drivethrough +const VRR_BIZLOC_VENDMACHINE = 5; // Vending machine // House Location Types const VRR_HOUSELOC_NONE = 0; // None -const VRR_HOUSELOC_MAINDOOR = 0; // Main entrance/exit -const VRR_HOUSELOC_DOOR = 1; // Any other entrance/exit +const VRR_HOUSELOC_GATE = 1; // Center of any moveable gate that belongs to the house +const VRR_HOUSELOC_GARAGE = 2; // Location for garage (pos1 = outside, pos2 = inside). Use pos to teleport or spawn veh/ped // Account Contact Types const VRR_CONTACT_NONE = 0;