From 88779b3229915656d49dfd64f2e045ac9ce64db1 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Fri, 12 Aug 2022 11:59:37 -0500 Subject: [PATCH] Add body part type consts --- scripts/shared/const.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/shared/const.js b/scripts/shared/const.js index 69d75c75..de335587 100644 --- a/scripts/shared/const.js +++ b/scripts/shared/const.js @@ -138,3 +138,8 @@ const AGRP_NPC_ACTION_SPRINTTO = 4; const AGRP_NPC_ACTION_FOLLOW = 5; const AGRP_NPC_ACTION_DEFEND = 6; const AGRP_NPC_ACTION_GUARD_AREA = 7; + +// Body Part Types (for HD universe GTA games) +const AGRP_BODY_PART_TYPE_NONE = 0; // None +const AGRP_BODY_PART_TYPE_PART = 1; // Body part (head, upper body, lower body, etc) +const AGRP_BODY_PART_TYPE_PROP = 2; // Prop (hat, watch, glasses, etc) \ No newline at end of file