From ac4702cc52caed240682ce9ed11c2568d523a0f2 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Thu, 9 Sep 2021 06:13:54 -0500 Subject: [PATCH] Add new biz location types --- scripts/server/const.js | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/scripts/server/const.js b/scripts/server/const.js index a2653159..a9709694 100644 --- a/scripts/server/const.js +++ b/scripts/server/const.js @@ -58,11 +58,26 @@ const VRR_HOUSEOWNER_CLAN = 3; // Owned by a clan const VRR_HOUSEOWNER_FACTION = 4; // Owned by a faction const VRR_HOUSEOWNER_PUBLIC = 5; // Is a public house. Technically not owned. This probably won't be used. +// Gate Owner Types +const VRR_GATEOWNER_NONE = 0; // Not owned +const VRR_GATEOWNER_PLAYER = 1; // Owner is a player (character/subaccount) +const VRR_GATEOWNER_JOB = 2; // Owned by a job +const VRR_GATEOWNER_CLAN = 3; // Owned by a clan +const VRR_GATEOWNER_FACTION = 4; // Owned by a faction +const VRR_GATEOWNER_PUBLIC = 5; // Is a public gate. Technically not owned. This probably won't be used. + // Business Location Types const VRR_BIZLOC_NONE = 0; // None -const VRR_BIZLOC_FUEL = 1; // Fuel pump -const VRR_BIZLOC_DRIVETHRU = 2; // Drivethrough -const VRR_BIZLOC_VENDMACHINE = 3; // Vending machine +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 + +// 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 // Account Contact Types const VRR_CONTACT_NONE = 0;