From 1cb5cc191dd21045619ec19853736471bf62a155 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Sun, 22 May 2022 13:34:08 -0500 Subject: [PATCH] Add NPC action state consts --- scripts/shared/const.js | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/scripts/shared/const.js b/scripts/shared/const.js index aaec359f..2abf7090 100644 --- a/scripts/shared/const.js +++ b/scripts/shared/const.js @@ -97,7 +97,7 @@ const VRR_VEHBUYSTATE_EXITVEH = 2; const VRR_VEHBUYSTATE_FARENOUGH = 3; const VRR_VEHBUYSTATE_WRONGVEH = 4; -// Body Parts for Skin Select +// Body Parts for Skin Select (IV for now, but might do other games when I can add accessory objects) const VRR_SKINSELECT_NONE = 0; const VRR_SKINSELECT_SKIN = 1; const VRR_SKINSELECT_HAT = 2; @@ -111,3 +111,13 @@ const VRR_SKINSELECT_RIGHTWRIST = 10; const VRR_SKINSELECT_LEFTHAND = 11; const VRR_SKINSELECT_RIGHTHAND = 12; const VRR_SKINSELECT_HEAD = 13; + +// Action States for NPCs +const VRR_NPC_ACTION_NONE = 0; +const VRR_NPC_ACTION_ANIM = 1; +const VRR_NPC_ACTION_WALKTO = 2; +const VRR_NPC_ACTION_RUNTO = 3; +const VRR_NPC_ACTION_SPRINTTO = 4; +const VRR_NPC_ACTION_FOLLOW = 5; +const VRR_NPC_ACTION_DEFEND = 6; +const VRR_NPC_ACTION_GUARD_AREA = 7; \ No newline at end of file