diff --git a/scripts/server/config.js b/scripts/server/config.js index 7d1305ea..80b941b2 100644 --- a/scripts/server/config.js +++ b/scripts/server/config.js @@ -36,10 +36,11 @@ let serverConfig = { policeBlue: toColour(70, 130, 180, 255), medicPink: toColour(219, 112, 147, 255), firefighterRed: toColour(205, 92, 92, 255), - busDriverGreen: toColour(50,205, 50, 255), + busDriverGreen: toColour(50, 205, 50, 255), taxiDriverYellow: toColour(240, 230, 140, 255), - burntYellow: toColour(0, 180, 180, 255), - burntOrange: toColour(0, 120, 210, 255), + burntYellow: toColour(210, 210, 0, 255), + burntOrange: toColour(210, 120, 0, 255), + bankGreen: toColour(0, 150, 0, 255), } }, accountPasswordHash: "SHA512", @@ -71,6 +72,63 @@ let serverConfig = { talkDistance: 10, whisperDistance: 2, megaphoneDistance: 40, + vehicleLockDistance: 5, + startWorkingDistance: 5, + takeJobDistance: 5, + stopWorkingDistance: 10, + blipSprites: [ + false, + { // GTA III + policeStation: 8, + fireStation: 9, + hospital: 12, + ammunation: 20, + payAndSpray: 18, + vehicleDealership: 6, + bank: 0, + fuelStation: -1, + }, + { // GTA VC + policeStation: 0, + fireStation: 0, + hospital: 0, + ammunation: 16, + payAndSpray: 27, + vehicleDealership: 7, + bank: 0, + fuelStation: -1, + }, + { // GTA SA + policeStation: 30, + fireStation: 20, + hospital: 22, + ammunation: 6, + payAndSpray: 63, + vehicleDealership: 55, + bank: 52, + fuelStation: 0, + }, + { // GTA UG + policeStation: 8, + fireStation: 9, + hospital: 12, + ammunation: 20, + payAndSpray: 18, + vehicleDealership: 6, + bank: 52, + fuelStation: 0, + }, + { // GTA IV + policeStation: 8, + fireStation: 9, + hospital: 12, + ammunation: 20, + payAndSpray: 18, + vehicleDealership: 6, + bank: 52, + fuelStation: 0, + }, + ], }; // ---------------------------------------------------------------------------- \ No newline at end of file