From 9217638191ccc28399e3c27112ade6f8c4c7c2a6 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Thu, 6 Jan 2022 13:33:17 -0600 Subject: [PATCH] New anim const --- scripts/shared/const.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/shared/const.js b/scripts/shared/const.js index 28cee556..80ac8964 100644 --- a/scripts/shared/const.js +++ b/scripts/shared/const.js @@ -61,10 +61,13 @@ const VRR_PROPLABEL_INFO_BUYBIZ = 8; // Animation Types const VRR_ANIMTYPE_NONE = 0; -const VRR_ANIMTYPE_ADD = 1; +const VRR_ANIMTYPE_NORMAL = 1; const VRR_ANIMTYPE_BLEND = 2; const VRR_ANIMTYPE_SHARED = 3; // Forces this animation to play in sync with another ped's mirrored anim (handshake, kiss, gang signs, etc) const VRR_ANIMTYPE_SPECIALACTION = 4; // This animtype uses a special action (only in SA) +const VRR_ANIMTYPE_SURRENDER = 5; // This animtype is used to surrender (like handsup or cower) +const VRR_ANIMTYPE_FORCED = 6; // This animtype is forced (can't use stopanim to get out of it) +const VRR_ANIMTYPE_FREEZE = 6; // This animtype is forced (can't use stopanim to get out of it) // Animation Move Types const VRR_ANIMMOVE_NONE = 0;