From 357b505238122f2ed747f296de27552eeb7923b8 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Tue, 5 Apr 2022 06:20:44 -0500 Subject: [PATCH] Add skin select body parts/props --- scripts/shared/const.js | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/scripts/shared/const.js b/scripts/shared/const.js index 3f0f0fc5..7dbc8331 100644 --- a/scripts/shared/const.js +++ b/scripts/shared/const.js @@ -80,6 +80,8 @@ const VRR_ANIMMOVE_RIGHT = 4; const VRR_MPMOD_NONE = 0; const VRR_MPMOD_GTAC = 1; const VRR_MPMOD_MAFIAC = 2; +const VRR_MPMOD_OAKWOOD = 3; +const VRR_MPMOD_RAGEMP = 4; // Business/House Game Script States //const VRR_GAMESCRIPT_NONE = 0; @@ -92,4 +94,19 @@ 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 +const VRR_VEHBUYSTATE_WRONGVEH = 4; + +// Body Parts for Skin Select +const VRR_SKINSELECT_NONE = 0; +const VRR_SKINSELECT_SKIN = 1; +const VRR_SKINSELECT_HAT = 2; +const VRR_SKINSELECT_HAIR = 3; +const VRR_SKINSELECT_EYES = 5; +const VRR_SKINSELECT_UPPER = 6; +const VRR_SKINSELECT_LOWER = 7; +const VRR_SKINSELECT_SHOES = 8; +const VRR_SKINSELECT_LEFTWRIST = 9; +const VRR_SKINSELECT_RIGHTWRIST = 10; +const VRR_SKINSELECT_LEFTHAND = 11; +const VRR_SKINSELECT_RIGHTHAND = 12; +const VRR_SKINSELECT_HEAD = 13;