Added job work types (route, sell, service, etc)

This commit is contained in:
Vortrex
2020-12-16 07:56:07 -06:00
parent f92f10f9d4
commit 3fbde86e6d

View File

@@ -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;
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