diff --git a/scripts/server/config.js b/scripts/server/config.js index f82713aa..786ca321 100644 --- a/scripts/server/config.js +++ b/scripts/server/config.js @@ -110,6 +110,8 @@ function loadGameConfig() { fuelStation: 0, business: -1, house: 31, + bar: 49, + club: 48, }, { // GTA UG policeStation: 8, @@ -322,7 +324,351 @@ function loadGameConfig() { ], ], + defaultBusinessItems: + [ + { + }, + { + clothingStore: [ + ["Outfit", 500, 2] + ], + legalGunStore: [ + ["Colt 45", 500, 2], + ["Shotgun", 500, 2], + ["Baseball Bat", 500, 2] + ], + illegalGunStore: [ + ["Uzi", 500, 2], + ["AK-47", 500, 2], + ["M16", 500, 2], + ["Sniper Rifle", 500, 2] + ], + gasStation: [ + ["Bottle of Soda", 500, 2], + ["Can of Soda", 500, 2], + ["Slice of Pizza", 500, 2], + ["Bottle of Water", 500, 2], + ["Can of Beer", 500, 2], + ], + electronicsStore: [ + ["Phone", 500, 2], + ["Walkie Talkie", 500, 2], + ["Megaphone", 500, 2], + ["Tazer", 500, 2], + ["Camera", 500, 2], + ], + bar: [ + ["Bottle of Vodka", 500, 2], + ["Bottle of Whiskey", 500, 2], + ["Bottle of Soda", 500, 2], + ["Bottle of Wine", 500, 2], + ["Bottle of Bourbon", 500, 2], + ["Shot of Bourbon", 500, 2], + ["Shot of Vodka", 500, 2], + ["Shot of Whiskey", 500, 2], + ["Glass of Wine", 500, 2], + ], + club: [ + ["Bottle of Vodka", 500, 2], + ["Bottle of Whiskey", 500, 2], + ["Bottle of Soda", 500, 2], + ["Bottle of Wine", 500, 2], + ["Bottle of Bourbon", 500, 2], + ["Shot of Bourbon", 500, 2], + ["Shot of Vodka", 500, 2], + ["Shot of Whiskey", 500, 2], + ["Glass of Wine", 500, 2], + ], + chicken: [ + ["Bucket of Chicken", 500, 2], + ["Chicken Tenders Meal", 500, 2], + ["Large Fries", 500, 2], + ["Small Fries", 500, 2], + ["Bottle of Soda", 500, 2], + ], + burger: [ + ["Bacon Cheeseburger", 500, 2], + ["Double Cheeseburger", 500, 2], + ["Big Boy Burger", 500, 2], + ["Large Fries", 500, 2], + ["Small Fries", 500, 2], + ["Bottle of Soda", 500, 2], + ], + chinese: [ + ["Egg Roll", 500, 2], + ["Lo Mein", 500, 2], + ["Fried Rice", 500, 2], + ["Crab Rangoon", 500, 2], + ["Egg Drop Soup", 500, 2], + ["Moo Shu Pork", 500, 2], + ["Egg Foo Young", 500, 2], + ["Sesame Chicken", 500, 2], + ], + italian: [ + ["Bottle of Wine", 500, 2], + ["Glass of Wine", 500, 2], + ["Arancini", 500, 2], + ["Lasagne", 500, 2], + ["Chicken Alfredo", 500, 2], + ["Fettucine Alfredo", 500, 2], + ["Chicken Parmigiana", 500, 2], + ["Chicken Carbonara", 500, 2], + ["Sausage Rigatoni", 500, 2], + ["Chicken Salad", 500, 2], + ["Caesar Salad", 500, 2], + ], + mexican: [ + ["Crunchy Taco", 500, 2], + ["Beaf and Bean Burrito", 500, 2], + ["Burrito Supreme", 500, 2], + ["Cheesy Nachos", 500, 2], + ["Nacho Supreme", 500, 2], + ["Bottle of Soda", 500, 2], + ], + pizza: [ + ["Large Pizza", 500, 2], + ["Medium Pizza", 500, 2], + ["Small Pizza", 500, 2], + ["Buffalo Wings", 500, 2], + ["Hot Wings", 500, 2], + ["Bottle of Soda", 500, 2], + ], + }, + { + clothingStore: [ + ["Outfit", 500, 2] + ], + legalGunStore: [ + ["Colt .45", 500, 2], + ["Python", 500, 2], + ["Shotgun", 500, 2], + ["Stubby Shotgun", 500, 2], + ["Baseball Bat", 500, 2], + ["Brass Knuckles", 500, 2], + ], + illegalGunStore: [ + ["Uzi", 500, 2], + ["MP5", 500, 2], + ["Tec-9", 500, 2], + ["Ingram", 500, 2], + ["Ruger", 500, 2], + ["M4", 500, 2], + ["Sniper Rifle", 500, 2], + ["Laser Sniper", 500, 2], + ], + gasStation: [ + ["Bottle of Soda", 500, 2], + ["Can of Soda", 500, 2], + ["Slice of Pizza", 500, 2], + ["Bottle of Water", 500, 2], + ["Can of Beer", 500, 2] + ], + electronicsStore: [ + ["Phone", 500, 2], + ["Walkie Talkie", 500, 2], + ["Megaphone", 500, 2], + ["Tazer", 500, 2], + ["Camera", 500, 2] + ], + bar: [ + ["Bottle of Vodka", 500, 2], + ["Bottle of Whiskey", 500, 2], + ["Bottle of Soda", 500, 2], + ["Bottle of Wine", 500, 2], + ["Bottle of Bourbon", 500, 2], + ["Shot of Bourbon", 500, 2], + ["Shot of Vodka", 500, 2], + ["Shot of Whiskey", 500, 2], + ["Glass of Wine", 500, 2], + ], + club: [ + ["Bottle of Vodka", 500, 2], + ["Bottle of Whiskey", 500, 2], + ["Bottle of Soda", 500, 2], + ["Bottle of Wine", 500, 2], + ["Bottle of Bourbon", 500, 2], + ["Shot of Bourbon", 500, 2], + ["Shot of Vodka", 500, 2], + ["Shot of Whiskey", 500, 2], + ["Glass of Wine", 500, 2], + ], + chicken: [ + ["Bucket of Chicken", 500, 2], + ["Chicken Tenders Meal", 500, 2], + ["Large Fries", 500, 2], + ["Small Fries", 500, 2], + ["Bottle of Soda", 500, 2], + ], + burger: [ + ["Bacon Cheeseburger", 500, 2], + ["Double Cheeseburger", 500, 2], + ["Big Boy Burger", 500, 2], + ["Large Fries", 500, 2], + ["Small Fries", 500, 2], + ["Bottle of Soda", 500, 2], + ], + chinese: [ + ["Egg Roll", 500, 2], + ["Lo Mein", 500, 2], + ["Fried Rice", 500, 2], + ["Crab Rangoon", 500, 2], + ["Egg Drop Soup", 500, 2], + ["Moo Shu Pork", 500, 2], + ["Egg Foo Young", 500, 2], + ["Sesame Chicken", 500, 2], + ], + italian: [ + ["Bottle of Wine", 500, 2], + ["Glass of Wine", 500, 2], + ["Arancini", 500, 2], + ["Lasagne", 500, 2], + ["Chicken Alfredo", 500, 2], + ["Fettucine Alfredo", 500, 2], + ["Chicken Parmigiana", 500, 2], + ["Chicken Carbonara", 500, 2], + ["Sausage Rigatoni", 500, 2], + ["Chicken Salad", 500, 2], + ["Caesar Salad", 500, 2], + ], + mexican: [ + ["Crunchy Taco", 500, 2], + ["Beaf and Bean Burrito", 500, 2], + ["Burrito Supreme", 500, 2], + ["Cheesy Nachos", 500, 2], + ["Nacho Supreme", 500, 2], + ["Bottle of Soda", 500, 2], + ], + pizza: [ + ["Large Pizza", 500, 2], + ["Medium Pizza", 500, 2], + ["Small Pizza", 500, 2], + ["Buffalo Wings", 500, 2], + ["Hot Wings", 500, 2], + ["Bottle of Soda", 500, 2], + ], + }, + { + clothingStore: [ + ["Outfit", 500, 2] + ], + legalGunStore: [ + ["Baseball Bat", 500, 2], + ["Pepper Spray", 500, 2], + ["Brass Knuckles", 500, 2], + ["9mm", 500, 2], + ["Desert Eagle", 500, 2], + ["Shotgun", 500, 2], + ["Country Rifle", 500, 2] + ], + illegalGunStore: [ + ["Micro SMG/Uzi", 500, 2], + ["MP5", 500, 2], + ["Tec-9", 500, 2], + ["AK-47", 500, 2], + ["M4", 500, 2], + ["Combat Shotgun", 500, 2], + ["Sniper Rifle", 500, 2] + ], + sexShop: [ + ["Purple Dildo", 500, 2], + ["Dildo", 500, 2], + ["Vibrator", 500, 2], + ["Silver Vibrator", 500, 2], + ["Flowers", 500, 2] + ], + gasStation: [ + ["Bottle of Soda", 500, 2], + ["Can of Soda", 500, 2], + ["Slice of Pizza", 500, 2], + ["Bottle of Water", 500, 2], + ["Can of Beer", 500, 2] + ], + electronicsStore: [ + ["Phone", 500, 2], + ["Walkie Talkie", 500, 2], + ["Megaphone", 500, 2], + ["Tazer", 500, 2], + ["Camera", 500, 2] + ], + bar: [ + ["Bottle of Vodka", 500, 2], + ["Bottle of Whiskey", 500, 2], + ["Bottle of Soda", 500, 2], + ["Bottle of Wine", 500, 2], + ["Bottle of Bourbon", 500, 2], + ["Shot of Bourbon", 500, 2], + ["Shot of Vodka", 500, 2], + ["Shot of Whiskey", 500, 2], + ["Glass of Wine", 500, 2], + ], + club: [ + ["Bottle of Vodka", 500, 2], + ["Bottle of Whiskey", 500, 2], + ["Bottle of Soda", 500, 2], + ["Bottle of Wine", 500, 2], + ["Bottle of Bourbon", 500, 2], + ["Shot of Bourbon", 500, 2], + ["Shot of Vodka", 500, 2], + ["Shot of Whiskey", 500, 2], + ["Glass of Wine", 500, 2], + ], + chicken: [ + ["Bucket of Chicken", 500, 2], + ["Chicken Tenders Meal", 500, 2], + ["Large Fries", 500, 2], + ["Small Fries", 500, 2], + ["Bottle of Soda", 500, 2], + ], + burger: [ + ["Bacon Cheeseburger", 500, 2], + ["Double Cheeseburger", 500, 2], + ["Big Boy Burger", 500, 2], + ["Large Fries", 500, 2], + ["Small Fries", 500, 2], + ["Bottle of Soda", 500, 2], + ], + chinese: [ + ["Egg Roll", 500, 2], + ["Lo Mein", 500, 2], + ["Fried Rice", 500, 2], + ["Crab Rangoon", 500, 2], + ["Egg Drop Soup", 500, 2], + ["Moo Shu Pork", 500, 2], + ["Egg Foo Young", 500, 2], + ["Sesame Chicken", 500, 2], + ], + italian: [ + ["Bottle of Wine", 500, 2], + ["Glass of Wine", 500, 2], + ["Arancini", 500, 2], + ["Lasagne", 500, 2], + ["Chicken Alfredo", 500, 2], + ["Fettucine Alfredo", 500, 2], + ["Chicken Parmigiana", 500, 2], + ["Chicken Carbonara", 500, 2], + ["Sausage Rigatoni", 500, 2], + ["Chicken Salad", 500, 2], + ["Caesar Salad", 500, 2], + ], + mexican: [ + ["Crunchy Taco", 500, 2], + ["Beaf and Bean Burrito", 500, 2], + ["Burrito Supreme", 500, 2], + ["Cheesy Nachos", 500, 2], + ["Nacho Supreme", 500, 2], + ["Bottle of Soda", 500, 2], + ], + pizza: [ + ["Large Pizza", 500, 2], + ["Medium Pizza", 500, 2], + ["Small Pizza", 500, 2], + ["Buffalo Wings", 500, 2], + ["Hot Wings", 500, 2], + ["Bottle of Soda", 500, 2], + ], + } + ], interiorTemplates: [ false, @@ -425,9 +771,17 @@ function loadGameConfig() { sexShop: new serverClasses.interiorTemplateData(toVector3(-106.72, -19.64, 1000.71), 3), bincoStore: new serverClasses.interiorTemplateData(toVector3(207.54, -109.00, 1005.13), 15), wardrobe: new serverClasses.interiorTemplateData(toVector3(255.71, -41.13, 1002.02), 14), - cityHall: new serverClasses.interiorTemplateData(toVector3(389.538, 173.652, 1008.38), 1), + cityHall: new serverClasses.interiorTemplateData(toVector3(389.538, 173.652, 1008.38), 3), gantonGym: new serverClasses.interiorTemplateData(toVector3(772.2,-5.06,1000.73), 1), insuranceCompany: new serverClasses.interiorTemplateData(toVector3(-2029.76, -119.624, 1035.17), 1), + stripClub1: new serverClasses.interiorTemplateData(toVector3(1204.80,-11.58,1000.92), 2), + stripClub1Private: new serverClasses.interiorTemplateData(toVector3(1204.80, 13.89, 1000.92), 2), + nightClub: new serverClasses.interiorTemplateData(toVector3(493.39,-22.72,1000.67), 17), + warehouse1: new serverClasses.interiorTemplateData(toVector3(1412.63, -1.78, 1000.92), 1), + warehouse2: new serverClasses.interiorTemplateData(toVector3(1302.51, -1.78, 1001.02), 18), + warehouse3: new serverClasses.interiorTemplateData(toVector3(76.63, -301.15, 1.57), 0), + warehouse4: new serverClasses.interiorTemplateData(toVector3(1059.89, 2081.68, 10.82), 0), + bikeSchool: new serverClasses.interiorTemplateData(toVector3(1494.32, 1304.94, 1093.28), 3), }, { // GTA UG @@ -438,6 +792,14 @@ function loadGameConfig() { }, ], + skinChangePosition: [ + [], + [], + [], + [toVector3(258.14, -41.76, 1002.023), 1.322, 14], + [], + [], + ], /* animations: [ false,