Advertisement
Guest User

Untitled

a guest
Sep 20th, 2014
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.94 KB | None | 0 0
  1. /*
  2. Author: Chewz
  3. Desc: Vehicle Shop Config
  4. Made and Developed for Altis Life: ArmA 3.
  5. Filename: fn_VehicleShopCfg.sqf
  6. */
  7.  
  8. AL_PCSOVehShop = [ // PCSO Vehicle shop array
  9. ["PCSOCopQuadbike", "C_Quadbike_01_F", 5000, "PCSO Quadbike Patrol Vehicle"],
  10. ["PCSOCopHatchback", "C_Hatchback_01_F", 20000, "PCSO Hatchback Patrol Vehicle"]
  11. ];
  12. AL_CadetVehShop = [
  13. ["CadetCopQuadbike", "C_Quadbike_01_F", 5000, "Cadet Quadbike Patrol Vehicle"],
  14. ["CadetCopHatchback", "C_Hatchback_01_F", 20000, "Cadet Hatchback Patrol Vehicle"],
  15. ["CadetCopSUV", "C_SUV_01_F", 45000, "Cadet SUV Patrol Vehicle"]
  16. ];
  17. AL_CorpVehShop = [
  18. ["CorpCopQuadbike", "C_Quadbike_01_F", 5000, "Corporal Quadbike Patrol Vehicle"],
  19. ["CorpCopHatchback", "C_Hatchback_01_F", 20000, "Corporal Hatchback Patrol Vehicle"],
  20. ["CorpCopSUV", "C_SUV_01_F", 45000, "Corporal SUV Patrol Vehicle"],
  21. ["CorpCopHatchbackSport", "C_Hatchback_01_sport_F", 175000, "Corporal Hatchback Sport Interception Vehicle"]
  22. ];
  23. AL_SergVehShop = [
  24. ["SergCopQuadbike", "C_Quadbike_01_F", 5000, "Sergeant Quadbike Patrol Vehicle"],
  25. ["SergCopHatchback", "C_Hatchback_01_F", 20000, "Sergeant Hatchback Patrol Vehicle"],
  26. ["SergCopSUV", "C_SUV_01_F", 45000, "Sergeant SUV Patrol Vehicle"],
  27. ["SergCopHunter", "B_MRAP_01_F", 47500, "Sergeant Hunter Patrol Vehicle"],
  28. ["SergCopHatchbackSport", "C_Hatchback_01_sport_F", 175000, "Sergeant Hatchback Sport Interception Vehicle"]
  29. ];
  30. AL_LieutVehShop = [
  31. ["LieutCopQuadbike", "C_Quadbike_01_F", 5000, "Lieutenant Quadbike Patrol Vehicle"],
  32. ["LieutCopHatchback", "C_Hatchback_01_F", 20000, "Lieutenant Hatchback Patrol Vehicle"],
  33. ["LieutCopSUV", "C_SUV_01_F", 45000, "Lieutenant SUV Patrol Vehicle"],
  34. ["LieutCopHunter", "B_MRAP_01_F", 47500, "Lieutenant Hunter Patrol Vehicle"],
  35. ["LieutCopHatchbackSport", "C_Hatchback_01_sport_F", 175000, "Lieutenant Hatchback Sport Interception Vehicle"]
  36. ];
  37. AL_CaptVehShop = [
  38. ["CaptCopQuadbike", "C_Quadbike_01_F", 5000, "Captain Quadbike Patrol Vehicle"],
  39. ["CaptCopHatchback", "C_Hatchback_01_F", 20000, "Captain Hatchback Patrol Vehicle"],
  40. ["CaptCopSUV", "C_SUV_01_F", 45000, "Captain SUV Patrol Vehicle"],
  41. ["CaptCopHunter", "B_MRAP_01_F", 47500, "Captain Hunter Patrol Vehicle"],
  42. ["CaptCopHatchbackSport", "C_Hatchback_01_sport_F", 175000, "Captain Hatchback Sport Interception Vehicle"]
  43. ];
  44. AL_CommVehShop = [
  45. ["CommCopQuadbike", "C_Quadbike_01_F", 5000, "Commander Quadbike Patrol Vehicle"],
  46. ["CommCopHatchback", "C_Hatchback_01_F", 20000, "Commander Hatchback Patrol Vehicle"],
  47. ["CommCopSUV", "C_SUV_01_F", 45000, "Commander SUV Patrol Vehicle"],
  48. ["CommCopHunter", "B_MRAP_01_F", 47500, "Commander Hunter Patrol Vehicle"],
  49. ["CommCopHatchbackSport", "C_Hatchback_01_sport_F", 175000, "Commander Hatchback Sport Interception Vehicle"]
  50. ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement