Add more per-game default blip sprites

This commit is contained in:
Vortrex
2020-12-14 10:44:18 -06:00
parent 6a3f4f4a25
commit e4d32d328f

View File

@@ -87,8 +87,12 @@ let serverConfig = {
ammunation: 20, ammunation: 20,
payAndSpray: 18, payAndSpray: 18,
vehicleDealership: 6, vehicleDealership: 6,
restaurant: -1,
fastFood: -1,
bank: 0, bank: 0,
fuelStation: -1, fuelStation: -1,
business: -1,
house: -1,
}, },
{ // GTA VC { // GTA VC
policeStation: 0, policeStation: 0,
@@ -97,8 +101,12 @@ let serverConfig = {
ammunation: 16, ammunation: 16,
payAndSpray: 27, payAndSpray: 27,
vehicleDealership: 7, vehicleDealership: 7,
restaurant: -1,
fastFood: -1,
bank: 0, bank: 0,
fuelStation: -1, fuelStation: -1,
business: -1,
house: -1,
}, },
{ // GTA SA { // GTA SA
policeStation: 30, policeStation: 30,
@@ -107,8 +115,12 @@ let serverConfig = {
ammunation: 6, ammunation: 6,
payAndSpray: 63, payAndSpray: 63,
vehicleDealership: 55, vehicleDealership: 55,
restaurant: -1,
fastFood: -1,
bank: 52, bank: 52,
fuelStation: 0, fuelStation: 0,
business: -1,
house: -1,
}, },
{ // GTA UG { // GTA UG
policeStation: 8, policeStation: 8,
@@ -117,8 +129,12 @@ let serverConfig = {
ammunation: 20, ammunation: 20,
payAndSpray: 18, payAndSpray: 18,
vehicleDealership: 6, vehicleDealership: 6,
restaurant: -1,
fastFood: -1,
bank: 52, bank: 52,
fuelStation: 0, fuelStation: 0,
business: -1,
house: -1,
}, },
{ // GTA IV { // GTA IV
policeStation: 8, policeStation: 8,
@@ -127,15 +143,36 @@ let serverConfig = {
ammunation: 20, ammunation: 20,
payAndSpray: 18, payAndSpray: 18,
vehicleDealership: 6, vehicleDealership: 6,
restaurant: -1,
fastFood: -1,
bank: 52, bank: 52,
fuelStation: 0, fuelStation: 0,
business: -1,
house: -1,
}, },
], ],
pickupModels: {
},
pickupTypes: [
{},
{ // GTA 3
business: 2,
},
{ // GTA Vice City
business: 2,
},
{ // GTA San Andreas
business: 2,
}
],
// Not implemented yet // Not implemented yet
keybindText: { keybindText: {
actionKey: "E", actionKey: "E",
vehicleEngineKey: "O", vehicleEngineKey: "I",
vehicleLightsKey: "K", vehicleLightsKey: "K",
vehicleLocksKey: "L", vehicleLocksKey: "L",
}, },
@@ -148,8 +185,8 @@ let serverConfig = {
discordBotToken: "", discordBotToken: "",
discordEnabled: false, discordEnabled: false,
defaultKeybinds: [ defaultKeybinds: [
new serverClasses.keyBindData(false, SDLK_o, "engine"), new serverClasses.keyBindData(false, SDLK_i, "engine"),
new serverClasses.keyBindData(false, SDLK_i, "lights"), new serverClasses.keyBindData(false, SDLK_k, "lights"),
new serverClasses.keyBindData(false, SDLK_l, "lock"), new serverClasses.keyBindData(false, SDLK_l, "lock"),
], ],
}; };