From 3fbde86e6d29da9bd8ccde5a1171428a8fca30c3 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Wed, 16 Dec 2020 07:56:07 -0600 Subject: [PATCH] Added job work types (route, sell, service, etc) --- 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 d91f5559..ff41f0be 100644 --- a/scripts/server/const.js +++ b/scripts/server/const.js @@ -69,4 +69,10 @@ const AG_BIZLOC_VENDMACHINE = 3; const AG_CONTACTTYPE_NONE = 0; const AG_CONTACTTYPE_NEUTRAL = 1; const AG_CONTACTTYPE_FRIEND = 2; -const AG_CONTACTTYPE_BLOCKED = 3; \ No newline at end of file +const AG_CONTACTTYPE_BLOCKED = 3; + +// Job Work Types (Currently Unused) +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