Advertisement
Guest User

Police Garage

a guest
May 28th, 2017
618
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.38 KB | None | 0 0
  1. local vehshop = {
  2. opened = false,
  3. title = "Police Garage",
  4. currentmenu = "main",
  5. lastmenu = nil,
  6. currentpos = nil,
  7. selectedbutton = 0,
  8. marker = { r = 0, g = 155, b = 255, a = 200, type = 1 },
  9. menu = {
  10. x = 0.9,
  11. y = 0.08,
  12. width = 0.2,
  13. height = 0.04,
  14. buttons = 10,
  15. from = 1,
  16. to = 10,
  17. scale = 0.4,
  18. font = 0,
  19. ["main"] = {
  20. title = "CATEGORIES",
  21. name = "main",
  22. buttons = {
  23. {name = "Vehicles", description = ""},
  24. {name = "Motorcycles", description = ""},
  25. }
  26. },
  27. ["vehicles"] = {
  28. title = "VEHICLES",
  29. name = "vehicles",
  30. buttons = {
  31. {name = "Police", description = ''},
  32. {name = "FBI", description = ''},
  33. }
  34. },
  35. ["Police"] = {
  36. title = "Police",
  37. name = "Police",
  38. buttons = {
  39. {name = "Police Cruiser Dodge", costs = 0, description = {}, model = "police2"},
  40. {name = "Police SUV Ford", costs = 0, description = {}, model = "police3"},
  41. {name = "Police Crusier Ford", costs = 0, description = {}, model = "police4"},
  42. {name = "Police SUV Ford MK2", costs = 0, description = {}, model = "police5"},
  43. {name = "Police SUV K9", costs = 0, description = {}, model = "police6"},
  44. {name = "Police Cruiser Ford Old", costs = 0, description = {}, model = "police7"},
  45. {name = "Police Transport Van", costs = 0, description = {}, model = "policet"},
  46. {name = "Sheriff SUV", costs = 0, description = {}, model = "sheriff2"},
  47. {name = "Sheriff Crusier Old", costs = 0, description = {}, model = "sheriff3"},
  48. {name = "Sheriff Cruiser New", costs = 0, description = {}, model = "sheriff"},
  49. }
  50. },
  51. ["FBI"] = {
  52. title = "FBI",
  53. name = "FBI",
  54. buttons = {
  55. {name = "FBI Dodge Cruiser", costs = 0, description = {}, model = "fbi"},
  56. {name = "FBI SUV", costs = 0, description = {}, model = "fbi2"},
  57. }
  58. },
  59. ["motorcycles"] = {
  60. title = "MOTORCYCLES",
  61. name = "motorcycles",
  62. buttons = {
  63. {name = "Police Motorcycle", costs = 0, description = {}, model = "policeb"},
  64. }
  65. },
  66. }
  67. }
  68. local fakecar = {model = '', car = nil}
  69. local vehshop_locations = {
  70. {entering = {448.804,-1020.32,28.4669}, inside = {448.805,-1021.35,28.4669,90.000}, outside = {448.804,-1020.31,28.4668,90.000}}, --vespucci blvd
  71. {entering = {-480.0646,6024.3320,31.3405}, inside = {-480.0646,6024.3320,31.3405,90.000}, outside = {-480.0646,6024.3320,31.3405,90.000}}, --paleto bay
  72. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement