From 798cec782eefbd5e8275e1bfce1fb486794f3ab8 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Mon, 21 Dec 2020 23:40:44 -0600 Subject: [PATCH] Add vehicle seat const --- scripts/server/const.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/scripts/server/const.js b/scripts/server/const.js index ff41f0be..6ed7b529 100644 --- a/scripts/server/const.js +++ b/scripts/server/const.js @@ -75,4 +75,10 @@ const AG_CONTACTTYPE_BLOCKED = 3; const AG_JOBWORKTYPE_NONE = 0; const AG_JOBWORKTYPE_ROUTE = 1; // Jobs that use routes. Bus, trash collector, mail, etc const AG_JOBWORKTYPE_SELL = 2; // Jobs that sell items to other players and NPCs. Drugs, guns, etc -const AG_JOBWORKTYPE_SERVICE = 3; // Services to other players and NPCs. Taxi ride, mechanic fix, etc \ No newline at end of file +const AG_JOBWORKTYPE_SERVICE = 3; // Services to other players and NPCs. Taxi ride, mechanic fix, etc + +// Vehicle Seats +const AG_VEHSEAT_DRIVER = 0; +const AG_VEHSEAT_FRONTPASSENGER = 1; +const AG_VEHSEAT_REARLEFTPASSENGER = 2; +const AG_VEHSEAT_REARRIGHTPASSENGER = 3; \ No newline at end of file