Advertisement
Guest User

Untitled

a guest
May 25th, 2019
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.04 KB | None | 0 0
  1. -- Nightclub: -1604.664 -3012.583 -78.000
  2.  
  3. exports('GetAfterHoursNightclubsObject', function()
  4. return AfterHoursNightclubs
  5. end)
  6.  
  7. AfterHoursNightclubs = {
  8. interiorId = 271617,
  9.  
  10. Ipl = {
  11. Interior = {
  12. ipl = "ba_int_placement_ba_interior_0_dlc_int_01_ba_milo_",
  13. Load = function() EnableIpl(AfterHoursNightclubs.Ipl.Interior.ipl, true) end,
  14. Remove = function() EnableIpl(AfterHoursNightclubs.Ipl.Interior.ipl, false) end
  15. },
  16. },
  17.  
  18. Interior = {
  19. Name = {
  20. galaxy = "Int01_ba_clubname_01", studio = "Int01_ba_clubname_02", omega = "Int01_ba_clubname_03",
  21. technologie = "Int01_ba_clubname_04", gefangnis = "Int01_ba_clubname_05", maisonette = "Int01_ba_clubname_06",
  22. tony = "Int01_ba_clubname_07", palace = "Int01_ba_clubname_08", paradise = "Int01_ba_clubname_09",
  23. Set = function(name, refresh)
  24. AfterHoursNightclubs.Interior.Name.Clear(false)
  25. SetIplPropState(AfterHoursNightclubs.interiorId, name, true, refresh)
  26. end,
  27. Clear = function(refresh)
  28. for key, value in pairs(AfterHoursNightclubs.Interior.Name) do
  29. if (type(value) == "string") then
  30. SetIplPropState(AfterHoursNightclubs.interiorId, value, false, refresh)
  31. end
  32. end
  33. end
  34. },
  35. Style = {
  36. trad = "Int01_ba_Style01", edgy = "Int01_ba_Style02", glam = "Int01_ba_Style03",
  37. Set = function(style, refresh)
  38. AfterHoursNightclubs.Interior.Style.Clear(false)
  39. SetIplPropState(AfterHoursNightclubs.interiorId, style, true, refresh)
  40. end,
  41. Clear = function(refresh)
  42. for key, value in pairs(AfterHoursNightclubs.Interior.Style) do
  43. if (type(value) == "string") then
  44. SetIplPropState(AfterHoursNightclubs.interiorId, value, false, refresh)
  45. end
  46. end
  47. end
  48. },
  49. Podium = {
  50. none = "", trad = "Int01_ba_style01_podium", edgy = "Int01_ba_style02_podium", glam = "Int01_ba_style03_podium",
  51. Set = function(podium, refresh)
  52. AfterHoursNightclubs.Interior.Podium.Clear(false)
  53. SetIplPropState(AfterHoursNightclubs.interiorId, podium, true, refresh)
  54. end,
  55. Clear = function(refresh)
  56. for key, value in pairs(AfterHoursNightclubs.Interior.Podium) do
  57. if (type(value) == "string") then
  58. SetIplPropState(AfterHoursNightclubs.interiorId, value, false, refresh)
  59. end
  60. end
  61. end
  62. },
  63. Speakers = {
  64. none = "", basic = "Int01_ba_equipment_setup", upgrade = {"Int01_ba_equipment_setup", "Int01_ba_equipment_upgrade"},
  65. Set = function(speakers, refresh)
  66. AfterHoursNightclubs.Interior.Speakers.Clear(false)
  67. SetIplPropState(AfterHoursNightclubs.interiorId, speakers, true, refresh)
  68. end,
  69. Clear = function(refresh)
  70. for key, value in pairs(AfterHoursNightclubs.Interior.Speakers) do
  71. if (type(value) == "string") then
  72. SetIplPropState(AfterHoursNightclubs.interiorId, value, false, refresh)
  73. end
  74. end
  75. end
  76. },
  77. Security = {
  78. off = "", on = "Int01_ba_security_upgrade",
  79. Set = function(security, refresh)
  80. AfterHoursNightclubs.Interior.Security.Clear(false)
  81. SetIplPropState(AfterHoursNightclubs.interiorId, security, true, refresh)
  82. end,
  83. Clear = function(refresh)
  84. SetIplPropState(AfterHoursNightclubs.interiorId, AfterHoursNightclubs.Interior.Security.on, false, refresh)
  85. end
  86. },
  87. Turntables = {
  88. none = "", style01 = "Int01_ba_dj01", style02 = "Int01_ba_dj02", style03 = "Int01_ba_dj03", style04 = "Int01_ba_dj04",
  89. Set = function(turntables, refresh)
  90. AfterHoursNightclubs.Interior.Turntables.Clear(false)
  91. if turntables ~= "" then
  92. SetIplPropState(AfterHoursNightclubs.interiorId, turntables, true, refresh)
  93. else
  94. if (refresh) then RefreshInterior(AfterHoursNightclubs.interiorId) end
  95. end
  96. end,
  97. Clear = function(refresh)
  98. for key, value in pairs(AfterHoursNightclubs.Interior.Turntables) do
  99. if (type(value) == "string") then
  100. SetIplPropState(AfterHoursNightclubs.interiorId, value, false, refresh)
  101. end
  102. end
  103. end
  104. },
  105. Lights = {
  106. Droplets = {
  107. yellow = "DJ_01_Lights_01", green = "DJ_02_Lights_01", white = "DJ_03_Lights_01", purple = "DJ_04_Lights_01",
  108. Set = function(light, refresh)
  109. AfterHoursNightclubs.Interior.Lights.Droplets.Clear(false)
  110. SetIplPropState(AfterHoursNightclubs.interiorId, light, true, refresh)
  111. end,
  112. Clear = function(refresh)
  113. for key, value in pairs(AfterHoursNightclubs.Interior.Lights.Droplets) do
  114. if (type(value) == "string") then
  115. SetIplPropState(AfterHoursNightclubs.interiorId, value, false, refresh)
  116. end
  117. end
  118. end
  119. },
  120. Neons = {
  121. yellow = "DJ_01_Lights_02", white = "DJ_02_Lights_02", purple = "DJ_03_Lights_02", cyan = "DJ_04_Lights_02",
  122. Set = function(light, refresh)
  123. AfterHoursNightclubs.Interior.Lights.Neons.Clear(false)
  124. SetIplPropState(AfterHoursNightclubs.interiorId, light, true, refresh)
  125. end,
  126. Clear = function(refresh)
  127. for key, value in pairs(AfterHoursNightclubs.Interior.Lights.Neons) do
  128. if (type(value) == "string") then
  129. SetIplPropState(AfterHoursNightclubs.interiorId, value, false, refresh)
  130. end
  131. end
  132. end
  133. },
  134. Bands = {
  135. yellow = "DJ_01_Lights_03", green = "DJ_02_Lights_03", white = "DJ_03_Lights_03", cyan = "DJ_04_Lights_03",
  136. Set = function(light, refresh)
  137. AfterHoursNightclubs.Interior.Lights.Bands.Clear(false)
  138. SetIplPropState(AfterHoursNightclubs.interiorId, light, true, refresh)
  139. end,
  140. Clear = function(refresh)
  141. for key, value in pairs(AfterHoursNightclubs.Interior.Lights.Bands) do
  142. if (type(value) == "string") then
  143. SetIplPropState(AfterHoursNightclubs.interiorId, value, false, refresh)
  144. end
  145. end
  146. end
  147. },
  148. Lasers = {
  149. yellow = "DJ_01_Lights_04", green = "DJ_02_Lights_04", white = "DJ_03_Lights_04", purple = "DJ_04_Lights_04",
  150. Set = function(light, refresh)
  151. AfterHoursNightclubs.Interior.Lights.Lasers.Clear(false)
  152. SetIplPropState(AfterHoursNightclubs.interiorId, light, true, refresh)
  153. end,
  154. Clear = function(refresh)
  155. for key, value in pairs(AfterHoursNightclubs.Interior.Lights.Lasers) do
  156. if (type(value) == "string") then
  157. SetIplPropState(AfterHoursNightclubs.interiorId, value, false, refresh)
  158. end
  159. end
  160. end
  161. },
  162. Clear = function()
  163. AfterHoursNightclubs.Interior.Lights.Droplets.Clear()
  164. AfterHoursNightclubs.Interior.Lights.Neons.Clear()
  165. AfterHoursNightclubs.Interior.Lights.Bands.Clear()
  166. AfterHoursNightclubs.Interior.Lights.Lasers.Clear()
  167. end
  168. },
  169. Bar = {
  170. Enable = function(state, refresh)
  171. SetIplPropState(AfterHoursNightclubs.interiorId, "Int01_ba_bar_content", state, refresh)
  172. end
  173. },
  174. Booze = {
  175. A = "Int01_ba_booze_01", B = "Int01_ba_booze_02", C = "Int01_ba_booze_03",
  176. Enable = function (booze, state, refresh)
  177. if (IsTable(booze)) then
  178. for key, value in pairs(booze) do
  179. if (type(value) == "string") then
  180. SetIplPropState(AfterHoursNightclubs.interiorId, booze, state, refresh)
  181. end
  182. end
  183. else
  184. SetIplPropState(AfterHoursNightclubs.interiorId, booze, state, refresh)
  185. end
  186. end
  187. },
  188. Trophy = {
  189. Color = {bronze = 0, silver = 1, gold = 2},
  190. number1 = "Int01_ba_trophy01",
  191. battler = "Int01_ba_trophy02",
  192. dancer = "Int01_ba_trophy03",
  193. Enable = function (trophy, state, color, refresh)
  194. SetIplPropState(AfterHoursNightclubs.interiorId, trophy, state, refresh)
  195. SetInteriorPropColor(AfterHoursNightclubs.interiorId, trophy, color)
  196. end
  197. },
  198. Details = {
  199. clutter = "Int01_ba_Clutter", -- Clutter and graffitis
  200. worklamps = "Int01_ba_Worklamps", -- Work lamps + trash
  201. truck = "Int01_ba_deliverytruck", -- Truck parked in the garage
  202. dryIce = "Int01_ba_dry_ice", -- Dry ice machines (no effects)
  203. lightRigsOff = "light_rigs_off", -- All light rigs at once but turned off
  204. roofLightsOff = "Int01_ba_lightgrid_01", -- Fake lights
  205. floorTradLights = "Int01_ba_trad_lights", -- Floor lights meant to go with the trad style
  206. chest = "Int01_ba_trophy04", -- Chest on the VIP desk
  207. vaultAmmunations = "Int01_ba_trophy05", -- (inside vault) Ammunations
  208. vaultMeth = "Int01_ba_trophy07", -- (inside vault) Meth bag
  209. vaultFakeID = "Int01_ba_trophy08", -- (inside vault) Fake ID
  210. vaultWeed = "Int01_ba_trophy09", -- (inside vault) Opened weed bag
  211. vaultCoke = "Int01_ba_trophy10", -- (inside vault) Coke doll
  212. vaultCash = "Int01_ba_trophy11", -- (inside vault) Scrunched fake money
  213. Enable = function (details, state, refresh)
  214. SetIplPropState(AfterHoursNightclubs.interiorId, details, state, refresh)
  215. end
  216. }
  217. },
  218.  
  219. -- 760, -1337, 27
  220. Mesa = {
  221. id = 0,
  222. Barrier = {
  223. Enable = function(state)
  224. if (state == nil) then state = true end
  225. AfterHoursNightclubs.Barrier.Enable(AfterHoursNightclubs.Mesa.id, state)
  226. end
  227. },
  228. Posters = {
  229. Enable = function(poster, state)
  230. if (state == nil) then state = true end
  231. AfterHoursNightclubs.Posters.Enable(AfterHoursNightclubs.Mesa.id, poster, state)
  232. end,
  233. Clear = function()
  234. AfterHoursNightclubs.Posters.Clear(AfterHoursNightclubs.Mesa.id)
  235. end
  236. }
  237. },
  238.  
  239. -- 348, -979, 30
  240. MissionRow = {
  241. id = 1,
  242. Barrier = {
  243. Enable = function(state)
  244. if (state == nil) then state = true end
  245. AfterHoursNightclubs.Barrier.Enable(AfterHoursNightclubs.MissionRow.id, state)
  246. end
  247. },
  248. Posters = {
  249. Enable = function(poster, state)
  250. if (state == nil) then state = true end
  251. AfterHoursNightclubs.Posters.Enable(AfterHoursNightclubs.MissionRow.id, poster, state)
  252. end,
  253. Clear = function()
  254. AfterHoursNightclubs.Posters.Clear(AfterHoursNightclubs.MissionRow.id)
  255. end
  256. }
  257. },
  258.  
  259. -- -118, -1260, 30
  260. Strawberry = {
  261. id = 2,
  262. Barrier = {
  263. Enable = function(state)
  264. if (state == nil) then state = true end
  265. AfterHoursNightclubs.Barrier.Enable(AfterHoursNightclubs.Strawberry.id, state)
  266. end
  267. },
  268. Posters = {
  269. Enable = function(poster, state)
  270. if (state == nil) then state = true end
  271. AfterHoursNightclubs.Posters.Enable(AfterHoursNightclubs.Strawberry.id, poster, state)
  272. end,
  273. Clear = function()
  274. AfterHoursNightclubs.Posters.Clear(AfterHoursNightclubs.Strawberry.id)
  275. end
  276. }
  277. },
  278.  
  279. -- 9, 221, 109
  280. VinewoodWest = {
  281. id = 3,
  282. Barrier = {
  283. Enable = function(state)
  284. if (state == nil) then state = true end
  285. AfterHoursNightclubs.Barrier.Enable(AfterHoursNightclubs.VinewoodWest.id, state)
  286. end
  287. },
  288. Posters = {
  289. Enable = function(poster, state)
  290. if (state == nil) then state = true end
  291. AfterHoursNightclubs.Posters.Enable(AfterHoursNightclubs.VinewoodWest.id, poster, state)
  292. end,
  293. Clear = function()
  294. AfterHoursNightclubs.Posters.Clear(AfterHoursNightclubs.VinewoodWest.id)
  295. end
  296. }
  297. },
  298.  
  299. -- 868, -2098, 31
  300. Cypress = {
  301. id = 4,
  302. Barrier = {
  303. Enable = function(state)
  304. if (state == nil) then state = true end
  305. AfterHoursNightclubs.Barrier.Enable(AfterHoursNightclubs.Cypress.id, state)
  306. end
  307. },
  308. Posters = {
  309. Enable = function(poster, state)
  310. if (state == nil) then state = true end
  311. AfterHoursNightclubs.Posters.Enable(AfterHoursNightclubs.Cypress.id, poster, state)
  312. end,
  313. Clear = function()
  314. AfterHoursNightclubs.Posters.Clear(AfterHoursNightclubs.Cypress.id)
  315. end
  316. }
  317. },
  318.  
  319. -- -1287, -647, 27
  320. DelPerro = {
  321. id = 5,
  322. Barrier = {
  323. Enable = function(state)
  324. if (state == nil) then state = true end
  325. AfterHoursNightclubs.Barrier.Enable(AfterHoursNightclubs.DelPerro.id, state)
  326. end
  327. },
  328. Posters = {
  329. Enable = function(poster, state)
  330. if (state == nil) then state = true end
  331. AfterHoursNightclubs.Posters.Enable(AfterHoursNightclubs.DelPerro.id, poster, state)
  332. end,
  333. Clear = function()
  334. AfterHoursNightclubs.Posters.Clear(AfterHoursNightclubs.DelPerro.id)
  335. end
  336. }
  337. },
  338.  
  339. -- -680, -2461, 14
  340. Airport = {
  341. id = 6,
  342. Barrier = {
  343. Enable = function(state)
  344. if (state == nil) then state = true end
  345. AfterHoursNightclubs.Barrier.Enable(AfterHoursNightclubs.Airport.id, state)
  346. end
  347. },
  348. Posters = {
  349. Enable = function(poster, state)
  350. if (state == nil) then state = true end
  351. AfterHoursNightclubs.Posters.Enable(AfterHoursNightclubs.Airport.id, poster, state)
  352. end,
  353. Clear = function()
  354. AfterHoursNightclubs.Posters.Clear(AfterHoursNightclubs.Airport.id)
  355. end
  356. }
  357. },
  358.  
  359. -- 192, -3168, 6
  360. Elysian = {
  361. id = 7,
  362. Barrier = {
  363. Enable = function(state)
  364. if (state == nil) then state = true end
  365. AfterHoursNightclubs.Barrier.Enable(AfterHoursNightclubs.Elysian.id, state)
  366. end
  367. },
  368. Posters = {
  369. Enable = function(poster, state)
  370. if (state == nil) then state = true end
  371. AfterHoursNightclubs.Posters.Enable(AfterHoursNightclubs.Elysian.id, poster, state)
  372. end,
  373. Clear = function()
  374. AfterHoursNightclubs.Posters.Clear(AfterHoursNightclubs.Elysian.id)
  375. end
  376. }
  377. },
  378.  
  379. -- 373, 254, 103
  380. Vinewood = {
  381. id = 8,
  382. Barrier = {
  383. Enable = function(state)
  384. if (state == nil) then state = true end
  385. AfterHoursNightclubs.Barrier.Enable(AfterHoursNightclubs.Vinewood.id, state)
  386. end
  387. },
  388. Posters = {
  389. Enable = function(poster, state)
  390. if (state == nil) then state = true end
  391. AfterHoursNightclubs.Posters.Enable(AfterHoursNightclubs.Vinewood.id, poster, state)
  392. end,
  393. Clear = function()
  394. AfterHoursNightclubs.Posters.Clear(AfterHoursNightclubs.Vinewood.id)
  395. end
  396. }
  397. },
  398.  
  399. -- -1171, -1150, 6
  400. Vespucci = {
  401. id = 9,
  402. Barrier = {
  403. Enable = function(state)
  404. if (state == nil) then state = true end
  405. AfterHoursNightclubs.Barrier.Enable(AfterHoursNightclubs.Vespucci.id, state)
  406. end
  407. },
  408. Posters = {
  409. Enable = function(poster, state)
  410. if (state == nil) then state = true end
  411. AfterHoursNightclubs.Posters.Enable(AfterHoursNightclubs.Vespucci.id, poster, state)
  412. end,
  413. Clear = function()
  414. AfterHoursNightclubs.Posters.Clear(AfterHoursNightclubs.Vespucci.id)
  415. end
  416. }
  417. },
  418.  
  419. Barrier = {
  420. barrier = "ba_barriers_caseX",
  421. Enable = function(clubId, state)
  422. value = AfterHoursNightclubs.Barrier.barrier:gsub("caseX", "case" .. tostring(clubId))
  423. EnableIpl(value, state)
  424. end
  425. },
  426. Posters = {
  427. forSale = "ba_caseX_forsale",
  428. dixon = "ba_caseX_dixon",
  429. madonna = "ba_caseX_madonna",
  430. solomun = "ba_caseX_solomun",
  431. taleOfUs = "ba_caseX_taleofus",
  432.  
  433. Enable = function(clubId, poster, state)
  434. if (IsTable(poster)) then
  435. for key, value in pairs(poster) do
  436. if (type(value) == "string") then
  437. value = value:gsub("caseX", "case" .. tostring(clubId))
  438. EnableIpl(value, state)
  439. end
  440. end
  441. else
  442. poster = poster:gsub("caseX", "case" .. tostring(clubId))
  443. EnableIpl(poster, state)
  444. end
  445. end,
  446. Clear = function(clubId)
  447. for key, value in pairs(AfterHoursNightclubs.Posters) do
  448. if (type(value) == "string") then
  449. value = value:gsub("caseX", "case" .. tostring(clubId))
  450. EnableIpl(value, false)
  451. end
  452. end
  453. end
  454. },
  455.  
  456. LoadDefault = function()
  457. -- Interior setup
  458. AfterHoursNightclubs.Ipl.Interior.Load()
  459.  
  460. AfterHoursNightclubs.Interior.Name.Set(AfterHoursNightclubs.Interior.Name.omega)
  461. AfterHoursNightclubs.Interior.Style.Set(AfterHoursNightclubs.Interior.Style.edgy)
  462.  
  463. AfterHoursNightclubs.Interior.Podium.Set(AfterHoursNightclubs.Interior.Podium.edgy)
  464. AfterHoursNightclubs.Interior.Speakers.Set(AfterHoursNightclubs.Interior.Speakers.upgrade)
  465.  
  466. AfterHoursNightclubs.Interior.Security.Set(AfterHoursNightclubs.Interior.Security.on)
  467.  
  468. AfterHoursNightclubs.Interior.Turntables.Set(AfterHoursNightclubs.Interior.Turntables.style03)
  469. AfterHoursNightclubs.Interior.Lights.Lasers.Set(AfterHoursNightclubs.Interior.Lights.Lasers.cyan)
  470. AfterHoursNightclubs.Interior.Lights.Lasers.Set(AfterHoursNightclubs.Interior.Lights.Lasers.yellow)
  471. AfterHoursNightclubs.Interior.Lights.Neons.Set(AfterHoursNightclubs.Interior.Neons.Lasers.cyan)
  472. AfterHoursNightclubs.Interior.Lights.Neons.Set(AfterHoursNightclubs.Interior.Neons.Lasers.yellow)
  473.  
  474. AfterHoursNightclubs.Interior.Bar.Enable(true)
  475.  
  476. AfterHoursNightclubs.Interior.Booze.Enable(AfterHoursNightclubs.Interior.Booze, true)
  477.  
  478. AfterHoursNightclubs.Interior.Trophy.Enable(AfterHoursNightclubs.Interior.Trophy.number1, true, AfterHoursNightclubs.Interior.Trophy.Color.gold)
  479.  
  480. RefreshInterior(AfterHoursNightclubs.interiorId)
  481.  
  482.  
  483. -- Exterior IPL
  484. AfterHoursNightclubs.Mesa.Barrier.Enable(true)
  485. AfterHoursNightclubs.Mesa.Posters.Enable(AfterHoursNightclubs.Posters, true)
  486. AfterHoursNightclubs.Mesa.Posters.Enable(AfterHoursNightclubs.Posters.forSale, false)
  487.  
  488. AfterHoursNightclubs.MissionRow.Barrier.Enable(true)
  489. AfterHoursNightclubs.MissionRow.Posters.Enable(AfterHoursNightclubs.Posters, true)
  490. AfterHoursNightclubs.MissionRow.Posters.Enable(AfterHoursNightclubs.Posters.forSale, false)
  491.  
  492. AfterHoursNightclubs.Strawberry.Barrier.Enable(true)
  493. AfterHoursNightclubs.Strawberry.Posters.Enable(AfterHoursNightclubs.Posters, true)
  494. AfterHoursNightclubs.Strawberry.Posters.Enable(AfterHoursNightclubs.Posters.forSale, false)
  495.  
  496. AfterHoursNightclubs.VinewoodWest.Barrier.Enable(true)
  497. AfterHoursNightclubs.VinewoodWest.Posters.Enable(AfterHoursNightclubs.Posters, true)
  498. AfterHoursNightclubs.VinewoodWest.Posters.Enable(AfterHoursNightclubs.Posters.forSale, false)
  499.  
  500. AfterHoursNightclubs.Cypress.Barrier.Enable(true)
  501. AfterHoursNightclubs.Cypress.Posters.Enable(AfterHoursNightclubs.Posters, true)
  502. AfterHoursNightclubs.Cypress.Posters.Enable(AfterHoursNightclubs.Posters.forSale, false)
  503.  
  504. AfterHoursNightclubs.DelPerro.Barrier.Enable(true)
  505. AfterHoursNightclubs.DelPerro.Posters.Enable(AfterHoursNightclubs.Posters, true)
  506. AfterHoursNightclubs.DelPerro.Posters.Enable(AfterHoursNightclubs.Posters.forSale, false)
  507.  
  508. AfterHoursNightclubs.Airport.Barrier.Enable(true)
  509. AfterHoursNightclubs.Airport.Posters.Enable(AfterHoursNightclubs.Posters, true)
  510. AfterHoursNightclubs.Airport.Posters.Enable(AfterHoursNightclubs.Posters.forSale, false)
  511.  
  512. AfterHoursNightclubs.Elysian.Barrier.Enable(true)
  513. AfterHoursNightclubs.Elysian.Posters.Enable(AfterHoursNightclubs.Posters, true)
  514. AfterHoursNightclubs.Elysian.Posters.Enable(AfterHoursNightclubs.Posters.forSale, false)
  515.  
  516. AfterHoursNightclubs.Vinewood.Barrier.Enable(true)
  517. AfterHoursNightclubs.Vinewood.Posters.Enable(AfterHoursNightclubs.Posters, true)
  518. AfterHoursNightclubs.Vinewood.Posters.Enable(AfterHoursNightclubs.Posters.forSale, false)
  519.  
  520. AfterHoursNightclubs.Vespucci.Barrier.Enable(true)
  521. AfterHoursNightclubs.Vespucci.Posters.Enable(AfterHoursNightclubs.Posters, true)
  522. AfterHoursNightclubs.Vespucci.Posters.Enable(AfterHoursNightclubs.Posters.forSale, false)
  523. end
  524. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement