From 57d274b334ea9013ef4f4a222ecde11a4fd4ed29 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Sat, 25 Feb 2023 04:44:20 -0600 Subject: [PATCH] Payphone state constants --- scripts/shared/const.js | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/scripts/shared/const.js b/scripts/shared/const.js index 45c5c8e2..b1fe8b98 100644 --- a/scripts/shared/const.js +++ b/scripts/shared/const.js @@ -142,4 +142,12 @@ const V_NPC_ACTION_GUARD_AREA = 7; const V_VEHSEAT_DRIVER = 0; const V_VEHSEAT_FRONTPASSENGER = 1; const V_VEHSEAT_REARLEFTPASSENGER = 2; -const V_VEHSEAT_REARRIGHTPASSENGER = 3; \ No newline at end of file +const V_VEHSEAT_REARRIGHTPASSENGER = 3; + +// PayPhone States +const V_PAYPHONE_STATE_NONE = 0; +const V_PAYPHONE_STATE_IDLE = 1; +const V_PAYPHONE_STATE_RINGING = 2; +const V_PAYPHONE_STATE_ACTIVE_CALL = 3; +const V_PAYPHONE_STATE_BROKEN = 4; +const V_PAYPHONE_STATE_CALLING = 5; \ No newline at end of file