diff --git a/scripts/server/client.js b/scripts/server/client.js index 45f5b06b..d1501f8b 100644 --- a/scripts/server/client.js +++ b/scripts/server/client.js @@ -1075,4 +1075,10 @@ function updateAllInteriorVehiclesForPlayer(client, interior, dimension) { } } +// =========================================================================== + +function setPlayerBuyingVehicleState(state, vehicle, position) { + +} + // =========================================================================== \ No newline at end of file diff --git a/scripts/shared/const.js b/scripts/shared/const.js index 6de821e9..1ffa809a 100644 --- a/scripts/shared/const.js +++ b/scripts/shared/const.js @@ -81,4 +81,11 @@ const VRR_MPMOD_MAFIAC = 2; const VRR_GAMESCRIPT_NONE = 0; const VRR_GAMESCRIPT_DENY = 1; const VRR_GAMESCRIPT_ALLOW = 2; -const VRR_GAMESCRIPT_FORCE = 3; \ No newline at end of file +const VRR_GAMESCRIPT_FORCE = 3; + +// Vehicle Purchase States +const VRR_VEHBUYSTATE_NONE = 0; +const VRR_VEHBUYSTATE_TESTDRIVE = 1; +const VRR_VEHBUYSTATE_EXITVEH = 2; +const VRR_VEHBUYSTATE_FARENOUGH = 3; +const VRR_VEHBUYSTATE_WRONGVEH = 4; \ No newline at end of file