Advertisement
Guest User

Untitled

a guest
Mar 5th, 2015
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 34.95 KB | None | 0 0
  1. D3DCarConfig = {}
  2.  
  3. D3DCarConfig.DarkRPIs2_5_0 = true
  4. -- if u using DarkRP 2.5.0 set this to ' true '
  5. -- if not, Set this to 'false'
  6.  
  7. D3DCarConfig.PlayerMaxCarAmount = 1 -- if you break this, your car will be removed and saved into inventory
  8. D3DCarConfig.Car = {}
  9.  
  10. //===========================================
  11. local TB2Insert = {}
  12. TB2Insert.VehicleName = "porcycletdm" -- This is unique name.
  13. TB2Insert.CarName = "Tri-Cycle" -- The car name. will be displayed at shop
  14. TB2Insert.CarPrice = 1 -- price
  15. TB2Insert.CarRefund = 0 -- refund
  16. TB2Insert.MaxAmount = 1 -- max amount of this car.
  17. TB2Insert.Description = [[A quicker way of getting around just by a little than running.]]
  18. table.insert(D3DCarConfig.Car,TB2Insert)
  19. //===========================================
  20.  
  21.  
  22.  
  23. local TB2Insert = {}
  24. TB2Insert.VehicleName = "beetle68tdm"
  25. TB2Insert.CarName = "1968 Volkswagen Beetle"
  26. TB2Insert.CarPrice = 2000
  27. TB2Insert.CarRefund = 1000
  28. TB2Insert.MaxAmount = 1
  29. TB2Insert.Description = "Used 1968 Volkswagen Beetle nice car for someone new in town."
  30. table.insert(D3DCarConfig.Car,TB2Insert)
  31.  
  32.  
  33. local TB2Insert = {}
  34. TB2Insert.VehicleName = "vwcampertdm"
  35. TB2Insert.CarName = "Volkswagen Camper"
  36. TB2Insert.CarPrice = 12500
  37. TB2Insert.CarRefund = 100
  38. TB2Insert.MaxAmount = 1
  39. TB2Insert.Description = "Basic car for someone new to town."
  40. table.insert(D3DCarConfig.Car,TB2Insert)
  41.  
  42. local TB2Insert = {}
  43. TB2Insert.VehicleName = "dbstdm"
  44. TB2Insert.CarName = "Aston Martin DBS"
  45. TB2Insert.CarPrice = 299576
  46. TB2Insert.CarRefund = 149788
  47. TB2Insert.MaxAmount = 1
  48. TB2Insert.Description = "The modern Aston Martin DBS is a high performance GT sports car version of the DB9 from the UK manufacturer Aston Martin."
  49. table.insert(D3DCarConfig.Car,TB2Insert)
  50.  
  51.  
  52.  
  53. local TB2Insert = {}
  54. TB2Insert.VehicleName = "v12vantagetdm"
  55. TB2Insert.CarName = "Aston Martin V12 Vantage"
  56. TB2Insert.CarPrice = 123695
  57. TB2Insert.CarRefund = 61847
  58. TB2Insert.MaxAmount = 1
  59. TB2Insert.Description = "Bulging in the right places, this is Aston’s smallest sports car—and while the V-8 models are also the least-expensive Astons, you won’t care from behind the wheel."
  60. table.insert(D3DCarConfig.Car,TB2Insert)
  61.  
  62.  
  63.  
  64.  
  65. local TB2Insert = {}
  66. TB2Insert.VehicleName = "audir8tdm"
  67. TB2Insert.CarName = "Audi R8"
  68. TB2Insert.CarPrice = 115900
  69. TB2Insert.CarRefund = 57950
  70. TB2Insert.MaxAmount = 1
  71. TB2Insert.Description = "Specifically tailored to the high-performance demands of an exotic car, quattro® actively sends power to the wheels with the most grip, enhancing acceleration and cornering performance."
  72. table.insert(D3DCarConfig.Car,TB2Insert)
  73.  
  74.  
  75.  
  76.  
  77. local TB2Insert = {}
  78. TB2Insert.VehicleName = "audir8spydtdm"
  79. TB2Insert.CarName = "Audi R8 Spyder"
  80. TB2Insert.CarPrice = 129400
  81. TB2Insert.CarRefund = 64700
  82. TB2Insert.MaxAmount = 1
  83. TB2Insert.Description = "Designed to thrill, the 2014 Audi R8 Spyder sets you free by setting you apart. This is a supercar that's been engineered to its fullest."
  84. table.insert(D3DCarConfig.Car,TB2Insert)
  85.  
  86.  
  87. local TB2Insert = {}
  88. TB2Insert.VehicleName = "audir8plustdm"
  89. TB2Insert.CarName = "Audi R8 5.2 plus"
  90. TB2Insert.CarPrice = 115900
  91. TB2Insert.CarRefund = 57950
  92. TB2Insert.MaxAmount = 1
  93. TB2Insert.Description = "An exotic supercar deserves a drivetrain to match. Luckily, the R8 comes equipped with our legendary quattro® all-wheel drive system. Specifically tailored to the high-performance demands of an exotic car, quattro® actively sends power to the wheels with the most grip, enhancing acceleration and cornering performance. It’s just another way the R8 keeps you ahead of the curve."
  94. table.insert(D3DCarConfig.Car,TB2Insert)
  95.  
  96.  
  97. local TB2Insert = {}
  98. TB2Insert.VehicleName = "rs4avanttdm"
  99. TB2Insert.CarName = "Audi RS4 Avant"
  100. TB2Insert.CarPrice = 78000
  101. TB2Insert.CarRefund = 39000
  102. TB2Insert.MaxAmount = 1
  103. TB2Insert.Description = "The latest Audi RS4 Avant, the fourth iteration of a size-medium RS station wagon, is a vehicle whose concept fits its German home turf perfectly. It’s rather compact, and it features the highly practical five-door body style coveted all over the Old World. Oh, and it’s powered by an engine that’s well beyond adequate, even for one of the world’s few remaining markets where high speeds rule."
  104. table.insert(D3DCarConfig.Car,TB2Insert)
  105.  
  106.  
  107. local TB2Insert = {}
  108. TB2Insert.VehicleName = "s5tdm"
  109. TB2Insert.CarName = "Audi S5"
  110. TB2Insert.CarPrice = 52500
  111. TB2Insert.CarRefund = 26250
  112. TB2Insert.MaxAmount = 1
  113. TB2Insert.Description = "When we pioneered our iconic LED daytime running lights, the idea was to help make you more visible to other drivers. But where some saw lights, we saw an opportunity to also make beautiful design. Simply brilliant."
  114. table.insert(D3DCarConfig.Car,TB2Insert)
  115.  
  116.  
  117.  
  118. local TB2Insert = {}
  119. TB2Insert.VehicleName = "auditttdm"
  120. TB2Insert.CarName = "Audi TT"
  121. TB2Insert.CarPrice = 40350
  122. TB2Insert.CarRefund = 20175
  123. TB2Insert.MaxAmount = 1
  124. TB2Insert.Description = "With impeccable build quality and excellent driving dynamics, and the TT offers year-round driving excitement in an aggressive and luxurious package that's reasonably priced considering the luxury brand."
  125. table.insert(D3DCarConfig.Car,TB2Insert)
  126.  
  127.  
  128.  
  129. local TB2Insert = {}
  130. TB2Insert.VehicleName = "bmw1mtdm"
  131. TB2Insert.CarName = "BMW 1M"
  132. TB2Insert.CarPrice = 51995
  133. TB2Insert.CarRefund = 25997
  134. TB2Insert.MaxAmount = 1
  135. TB2Insert.Description = ""
  136. table.insert(D3DCarConfig.Car,TB2Insert)
  137.  
  138. local TB2Insert = {}
  139. TB2Insert.VehicleName = "507tdm"
  140. TB2Insert.CarName = "BMW 507"
  141. TB2Insert.CarPrice = 11000
  142. TB2Insert.CarRefund = 5500
  143. TB2Insert.MaxAmount = 1
  144. TB2Insert.Description = ""
  145. table.insert(D3DCarConfig.Car,TB2Insert)
  146.  
  147.  
  148.  
  149. local TB2Insert = {}
  150. TB2Insert.VehicleName = "m1tdm"
  151. TB2Insert.CarName = "BMW M1 1981"
  152. TB2Insert.CarPrice = 499990
  153. TB2Insert.CarRefund = 249995
  154. TB2Insert.MaxAmount = 1
  155. TB2Insert.Description = ""
  156. table.insert(D3DCarConfig.Car,TB2Insert)
  157.  
  158.  
  159. local TB2Insert = {}
  160. TB2Insert.VehicleName = "m3e92tdm"
  161. TB2Insert.CarName = " BMW M3 E92"
  162. TB2Insert.CarPrice = 73000
  163. TB2Insert.CarRefund = 36500
  164. TB2Insert.MaxAmount = 1
  165. TB2Insert.Description = ""
  166. table.insert(D3DCarConfig.Car,TB2Insert)
  167.  
  168.  
  169.  
  170.  
  171. local TB2Insert = {}
  172. TB2Insert.VehicleName = "bmwm3gtrtdm"
  173. TB2Insert.CarName = "BMW M3 GTR"
  174. TB2Insert.CarPrice = 62950
  175. TB2Insert.CarRefund = 31475
  176. TB2Insert.MaxAmount = 1
  177. TB2Insert.Description = ""
  178. table.insert(D3DCarConfig.Car,TB2Insert)
  179.  
  180. local TB2Insert = {}
  181. TB2Insert.VehicleName = "m5e34tdm"
  182. TB2Insert.CarName = "BMW M5 E34"
  183. TB2Insert.CarPrice = 15000
  184. TB2Insert.CarRefund = 7500
  185. TB2Insert.MaxAmount = 1
  186. TB2Insert.Description = ""
  187. table.insert(D3DCarConfig.Car,TB2Insert)
  188.  
  189. local TB2Insert = {}
  190. TB2Insert.VehicleName = "bmwm5e60tdm"
  191. TB2Insert.CarName = "BMW M5 E60"
  192. TB2Insert.CarPrice = 13990
  193. TB2Insert.CarRefund = 6995
  194. TB2Insert.MaxAmount = 1
  195. TB2Insert.Description = ""
  196. table.insert(D3DCarConfig.Car,TB2Insert)
  197.  
  198. local TB2Insert = {}
  199. TB2Insert.VehicleName = "bmwm613tdm"
  200. TB2Insert.CarName = "BMW M6 2013"
  201. TB2Insert.CarPrice = 122095
  202. TB2Insert.CarRefund = 61047
  203. TB2Insert.MaxAmount = 1
  204. TB2Insert.Description = ""
  205. table.insert(D3DCarConfig.Car,TB2Insert)
  206.  
  207. local TB2Insert = {}
  208. TB2Insert.VehicleName = "eb110tdm"
  209. TB2Insert.CarName = "Bugatti EB110"
  210. TB2Insert.CarPrice = 1600000
  211. TB2Insert.CarRefund = 800000
  212. TB2Insert.MaxAmount = 1
  213. TB2Insert.Description = ""
  214. table.insert(D3DCarConfig.Car,TB2Insert)
  215.  
  216.  
  217. local TB2Insert = {}
  218. TB2Insert.VehicleName = "veyrontdm"
  219. TB2Insert.CarName = "Bugatti Veyron"
  220. TB2Insert.CarPrice = 1600000
  221. TB2Insert.CarRefund = 10000
  222. TB2Insert.MaxAmount = 1
  223. TB2Insert.Description = ""
  224. table.insert(D3DCarConfig.Car,TB2Insert)
  225.  
  226.  
  227.  
  228. local TB2Insert = {}
  229. TB2Insert.VehicleName = "escaladetdm"
  230. TB2Insert.CarName = "Cadlilac Escalade"
  231. TB2Insert.CarPrice = 72970
  232. TB2Insert.CarRefund = 4178
  233. TB2Insert.MaxAmount = 1
  234. TB2Insert.Description = ""
  235. table.insert(D3DCarConfig.Car,TB2Insert)
  236.  
  237.  
  238.  
  239.  
  240. local TB2Insert = {}
  241. TB2Insert.VehicleName = "blazertdm"
  242. TB2Insert.CarName = "Chevrolet Blazer"
  243. TB2Insert.CarPrice = 9120
  244. TB2Insert.CarRefund = 3215
  245. TB2Insert.MaxAmount = 1
  246. TB2Insert.Description = ""
  247. table.insert(D3DCarConfig.Car,TB2Insert)
  248.  
  249.  
  250.  
  251.  
  252. local TB2Insert = {}
  253. TB2Insert.VehicleName = "c10tdm"
  254. TB2Insert.CarName = "Chevrolet C10"
  255. TB2Insert.CarPrice = 39995
  256. TB2Insert.CarRefund = 15478
  257. TB2Insert.MaxAmount = 1
  258. TB2Insert.Description = ""
  259. table.insert(D3DCarConfig.Car,TB2Insert)
  260.  
  261.  
  262.  
  263.  
  264. local TB2Insert = {}
  265. TB2Insert.VehicleName = "69camarotdm"
  266. TB2Insert.CarName = "Chevrolet Camaro SS 69"
  267. TB2Insert.CarPrice = 32500
  268. TB2Insert.CarRefund = 16478
  269. TB2Insert.MaxAmount = 1
  270. TB2Insert.Description = ""
  271. table.insert(D3DCarConfig.Car,TB2Insert)
  272.  
  273.  
  274.  
  275.  
  276. local TB2Insert = {}
  277. TB2Insert.VehicleName = "camarozl1tdm"
  278. TB2Insert.CarName = "Chevrolet Camaro ZL1"
  279. TB2Insert.CarPrice = 55505
  280. TB2Insert.CarRefund = 20195
  281. TB2Insert.MaxAmount = 1
  282. TB2Insert.Description = ""
  283. table.insert(D3DCarConfig.Car,TB2Insert)
  284.  
  285.  
  286.  
  287.  
  288. local TB2Insert = {}
  289. TB2Insert.VehicleName = "chevellesstdm"
  290. TB2Insert.CarName = "Chevrolet Chevelle SS"
  291. TB2Insert.CarPrice = 59900
  292. TB2Insert.CarRefund = 30146
  293. TB2Insert.MaxAmount = 1
  294. TB2Insert.Description = ""
  295. table.insert(D3DCarConfig.Car,TB2Insert)
  296.  
  297.  
  298.  
  299.  
  300. local TB2Insert = {}
  301. TB2Insert.VehicleName = "chevstingray427tdm"
  302. TB2Insert.CarName = "Chevelle Corvette Stingray"
  303. TB2Insert.CarPrice = 55000
  304. TB2Insert.CarRefund = 12982
  305. TB2Insert.MaxAmount = 1
  306. TB2Insert.Description = ""
  307. table.insert(D3DCarConfig.Car,TB2Insert)
  308.  
  309.  
  310.  
  311.  
  312. local TB2Insert = {}
  313. TB2Insert.VehicleName = "impala96tdm"
  314. TB2Insert.CarName = "Chevelle Impala SS 96"
  315. TB2Insert.CarPrice = 14500
  316. TB2Insert.CarRefund = 9516
  317. TB2Insert.MaxAmount = 1
  318. TB2Insert.Description = ""
  319. table.insert(D3DCarConfig.Car,TB2Insert)
  320.  
  321.  
  322.  
  323.  
  324. local TB2Insert = {}
  325. TB2Insert.VehicleName = "sparktdm"
  326. TB2Insert.CarName = "Chevrolet Spark"
  327. TB2Insert.CarPrice = 12270
  328. TB2Insert.CarRefund = 10621
  329. TB2Insert.MaxAmount = 1
  330. TB2Insert.Description = ""
  331. table.insert(D3DCarConfig.Car,TB2Insert)
  332.  
  333.  
  334.  
  335.  
  336. local TB2Insert = {}
  337. TB2Insert.VehicleName = "challenger70tdm"
  338. TB2Insert.CarName = "Dodge Challenger 1970"
  339. TB2Insert.CarPrice = 73995
  340. TB2Insert.CarRefund = 51821
  341. TB2Insert.MaxAmount = 1
  342. TB2Insert.Description = ""
  343. table.insert(D3DCarConfig.Car,TB2Insert)
  344.  
  345.  
  346.  
  347.  
  348. local TB2Insert = {}
  349. TB2Insert.VehicleName = "chargersrt8tdm"
  350. TB2Insert.CarName = "Dodge Charger SRT-8"
  351. TB2Insert.CarPrice = 27995
  352. TB2Insert.CarRefund = 15268
  353. TB2Insert.MaxAmount = 1
  354. TB2Insert.Description = ""
  355. table.insert(D3DCarConfig.Car,TB2Insert)
  356.  
  357.  
  358.  
  359.  
  360. local TB2Insert = {}
  361. TB2Insert.VehicleName = "charger2012tdm"
  362. TB2Insert.CarName = "Dodge Charger SRT8"
  363. TB2Insert.CarPrice = 27995
  364. TB2Insert.CarRefund = 14325
  365. TB2Insert.MaxAmount = 1
  366. TB2Insert.Description = ""
  367. table.insert(D3DCarConfig.Car,TB2Insert)
  368.  
  369.  
  370.  
  371.  
  372. local TB2Insert = {}
  373. TB2Insert.VehicleName = "dodgeramtdm"
  374. TB2Insert.CarName = "Dodge Ram SRT10"
  375. TB2Insert.CarPrice = 50850
  376. TB2Insert.CarRefund = 20156
  377. TB2Insert.MaxAmount = 1
  378. TB2Insert.Description = ""
  379. table.insert(D3DCarConfig.Car,TB2Insert)
  380.  
  381.  
  382.  
  383.  
  384.  
  385. local TB2Insert = {}
  386. TB2Insert.VehicleName = "fer_250gtotdm"
  387. TB2Insert.CarName = "Ferrari 250 GTO"
  388. TB2Insert.CarPrice = 34650000
  389. TB2Insert.CarRefund = 17325000
  390. TB2Insert.MaxAmount = 1
  391. TB2Insert.Description = ""
  392. table.insert(D3DCarConfig.Car,TB2Insert)
  393.  
  394.  
  395.  
  396.  
  397. local TB2Insert = {}
  398. TB2Insert.VehicleName = "ferrari250gttdm"
  399. TB2Insert.CarName = "Ferrari 250GT"
  400. TB2Insert.CarPrice = 10976000
  401. TB2Insert.CarRefund = 5488000
  402. TB2Insert.MaxAmount = 1
  403. TB2Insert.Description = ""
  404. table.insert(D3DCarConfig.Car,TB2Insert)
  405.  
  406.  
  407.  
  408.  
  409. local TB2Insert = {}
  410. TB2Insert.VehicleName = "458spidtdm"
  411. TB2Insert.CarName = "Ferrari 458 Spider"
  412. TB2Insert.CarPrice = 257412
  413. TB2Insert.CarRefund = 128706
  414. TB2Insert.MaxAmount = 1
  415. TB2Insert.Description = ""
  416. table.insert(D3DCarConfig.Car,TB2Insert)
  417.  
  418.  
  419.  
  420.  
  421. local TB2Insert = {}
  422. TB2Insert.VehicleName = "ferrari512trtdm"
  423. TB2Insert.CarName = "Ferrari 512 TR"
  424. TB2Insert.CarPrice = 601251
  425. TB2Insert.CarRefund = 4156
  426. TB2Insert.MaxAmount = 1
  427. TB2Insert.Description = ""
  428. table.insert(D3DCarConfig.Car,TB2Insert)
  429.  
  430.  
  431.  
  432.  
  433. local TB2Insert = {}
  434. TB2Insert.VehicleName = "enzotdm"
  435. TB2Insert.CarName = "Ferrari Enzo"
  436. TB2Insert.CarPrice = 80629
  437. TB2Insert.CarRefund = 3584
  438. TB2Insert.MaxAmount = 1
  439. TB2Insert.Description = ""
  440. table.insert(D3DCarConfig.Car,TB2Insert)
  441.  
  442.  
  443.  
  444.  
  445. local TB2Insert = {}
  446. TB2Insert.VehicleName = "ferf12tdm"
  447. TB2Insert.CarName = "Ferrari F12 Berlinetta"
  448. TB2Insert.CarPrice = 100432
  449. TB2Insert.CarRefund = 50321
  450. TB2Insert.MaxAmount = 1
  451. TB2Insert.Description = ""
  452. table.insert(D3DCarConfig.Car,TB2Insert)
  453.  
  454.  
  455.  
  456.  
  457. local TB2Insert = {}
  458. TB2Insert.VehicleName = "f50tdm"
  459. TB2Insert.CarName = "Ferrari F50"
  460. TB2Insert.CarPrice = 625816
  461. TB2Insert.CarRefund = 2498
  462. TB2Insert.MaxAmount = 1
  463. TB2Insert.Description = ""
  464. table.insert(D3DCarConfig.Car,TB2Insert)
  465.  
  466.  
  467.  
  468.  
  469. local TB2Insert = {}
  470. TB2Insert.VehicleName = "lafertdm"
  471. TB2Insert.CarName = "Ferrari LaFerrari"
  472. TB2Insert.CarPrice = 965145
  473. TB2Insert.CarRefund = 2593
  474. TB2Insert.MaxAmount = 1
  475. TB2Insert.Description = ""
  476. table.insert(D3DCarConfig.Car,TB2Insert)
  477.  
  478.  
  479.  
  480.  
  481. local TB2Insert = {}
  482. TB2Insert.VehicleName = "crownvic_taxitdm"
  483. TB2Insert.CarName = "Ford Crown Victoria Taxi"
  484. TB2Insert.CarPrice = 5000
  485. TB2Insert.CarRefund = 1500
  486. TB2Insert.MaxAmount = 1
  487. TB2Insert.Description = ""
  488. table.insert(D3DCarConfig.Car,TB2Insert)
  489.  
  490.  
  491.  
  492.  
  493. local TB2Insert = {}
  494. TB2Insert.VehicleName = "coupe40tdm"
  495. TB2Insert.CarName = "Ford Deluxe Coupe 1940"
  496. TB2Insert.CarPrice = 400000
  497. TB2Insert.CarRefund = 100500
  498. TB2Insert.MaxAmount = 1
  499. TB2Insert.Description = ""
  500. table.insert(D3DCarConfig.Car,TB2Insert)
  501.  
  502.  
  503.  
  504.  
  505. local TB2Insert = {}
  506. TB2Insert.VehicleName = "f100tdm"
  507. TB2Insert.CarName = "Ford F100"
  508. TB2Insert.CarPrice = 100125
  509. TB2Insert.CarRefund = 1589
  510. TB2Insert.MaxAmount = 1
  511. TB2Insert.Description = ""
  512. table.insert(D3DCarConfig.Car,TB2Insert)
  513.  
  514.  
  515.  
  516.  
  517. local TB2Insert = {}
  518. TB2Insert.VehicleName = "f350tdm"
  519. TB2Insert.CarName = "Ford F350 Super-Duty"
  520. TB2Insert.CarPrice = 90495
  521. TB2Insert.CarRefund = 1567
  522. TB2Insert.MaxAmount = 1
  523. TB2Insert.Description = ""
  524. table.insert(D3DCarConfig.Car,TB2Insert)
  525.  
  526.  
  527.  
  528.  
  529. local TB2Insert = {}
  530. TB2Insert.VehicleName = "focusrstdm"
  531. TB2Insert.CarName = "Ford Focus RS"
  532. TB2Insert.CarPrice = 77256
  533. TB2Insert.CarRefund = 5168
  534. TB2Insert.MaxAmount = 1
  535. TB2Insert.Description = ""
  536. table.insert(D3DCarConfig.Car,TB2Insert)
  537.  
  538.  
  539.  
  540.  
  541.  
  542.  
  543.  
  544.  
  545.  
  546. local TB2Insert = {}
  547. TB2Insert.VehicleName = "focussvttdm"
  548. TB2Insert.CarName = "Ford Focus SVT"
  549. TB2Insert.CarPrice = 90325
  550. TB2Insert.CarRefund = 2547
  551. TB2Insert.MaxAmount = 1
  552. TB2Insert.Description = ""
  553. table.insert(D3DCarConfig.Car,TB2Insert)
  554.  
  555.  
  556.  
  557.  
  558. local TB2Insert = {}
  559. TB2Insert.VehicleName = "gt05tdm"
  560. TB2Insert.CarName = "Ford GT 05"
  561. TB2Insert.CarPrice = 60424
  562. TB2Insert.CarRefund = 2548
  563. TB2Insert.MaxAmount = 1
  564. TB2Insert.Description = ""
  565. table.insert(D3DCarConfig.Car,TB2Insert)
  566.  
  567.  
  568.  
  569.  
  570. local TB2Insert = {}
  571. TB2Insert.VehicleName = "mustanggttdm"
  572. TB2Insert.CarName = "Ford Mustang GT"
  573. TB2Insert.CarPrice = 32584
  574. TB2Insert.CarRefund = 1548
  575. TB2Insert.MaxAmount = 1
  576. TB2Insert.Description = ""
  577. table.insert(D3DCarConfig.Car,TB2Insert)
  578.  
  579.  
  580.  
  581.  
  582. local TB2Insert = {}
  583. TB2Insert.VehicleName = "raptorsvttdm"
  584. TB2Insert.CarName = "Ford Raptor SVT"
  585. TB2Insert.CarPrice = 80452
  586. TB2Insert.CarRefund = 4152
  587. TB2Insert.MaxAmount = 1
  588. TB2Insert.Description = ""
  589. table.insert(D3DCarConfig.Car,TB2Insert)
  590.  
  591.  
  592.  
  593.  
  594. local TB2Insert = {}
  595. TB2Insert.VehicleName = "transittdm"
  596. TB2Insert.CarName = "Ford Transit"
  597. TB2Insert.CarPrice = 70215
  598. TB2Insert.CarRefund = 24832
  599. TB2Insert.MaxAmount = 1
  600. TB2Insert.Description = ""
  601. table.insert(D3DCarConfig.Car,TB2Insert)
  602.  
  603.  
  604.  
  605.  
  606. local TB2Insert = {}
  607. TB2Insert.VehicleName = "sierralowtdm"
  608. TB2Insert.CarName = "GMC Sierra"
  609. TB2Insert.CarPrice = 70216
  610. TB2Insert.CarRefund = 1268
  611. TB2Insert.MaxAmount = 1
  612. TB2Insert.Description = ""
  613. table.insert(D3DCarConfig.Car,TB2Insert)
  614.  
  615.  
  616.  
  617.  
  618. local TB2Insert = {}
  619. TB2Insert.VehicleName = "sierratdm"
  620. TB2Insert.CarName = "GMC Sierra Monster"
  621. TB2Insert.CarPrice = 80169
  622. TB2Insert.CarRefund = 4125
  623. TB2Insert.MaxAmount = 1
  624. TB2Insert.Description = ""
  625. table.insert(D3DCarConfig.Car,TB2Insert)
  626.  
  627.  
  628.  
  629.  
  630. local TB2Insert = {}
  631. TB2Insert.VehicleName = "syclonetdm"
  632. TB2Insert.CarName = "GMC Syclone"
  633. TB2Insert.CarPrice = 70632
  634. TB2Insert.CarRefund = 4105
  635. TB2Insert.MaxAmount = 1
  636. TB2Insert.Description = ""
  637. table.insert(D3DCarConfig.Car,TB2Insert)
  638.  
  639.  
  640.  
  641.  
  642. local TB2Insert = {}
  643. TB2Insert.VehicleName = "gmcvantdm"
  644. TB2Insert.CarName = "GMC Vandura"
  645. TB2Insert.CarPrice = 68215
  646. TB2Insert.CarRefund = 1650
  647. TB2Insert.MaxAmount = 1
  648. TB2Insert.Description = ""
  649. table.insert(D3DCarConfig.Car,TB2Insert)
  650.  
  651.  
  652.  
  653.  
  654. local TB2Insert = {}
  655. TB2Insert.VehicleName = "civictypertdm"
  656. TB2Insert.CarName = "Honda Civic Type R"
  657. TB2Insert.CarPrice = 80325
  658. TB2Insert.CarRefund = 4159
  659. TB2Insert.MaxAmount = 1
  660. TB2Insert.Description = ""
  661. table.insert(D3DCarConfig.Car,TB2Insert)
  662.  
  663.  
  664.  
  665.  
  666. local TB2Insert = {}
  667. TB2Insert.VehicleName = "civic97tdm"
  668. TB2Insert.CarName = "Honda Civic Type R 97"
  669. TB2Insert.CarPrice = 80321
  670. TB2Insert.CarRefund = 8206
  671. TB2Insert.MaxAmount = 1
  672. TB2Insert.Description = ""
  673. table.insert(D3DCarConfig.Car,TB2Insert)
  674.  
  675.  
  676.  
  677.  
  678. local TB2Insert = {}
  679. TB2Insert.VehicleName = "s2000tdm"
  680. TB2Insert.CarName = "Honda S2000"
  681. TB2Insert.CarPrice = 90658
  682. TB2Insert.CarRefund = 4563
  683. TB2Insert.MaxAmount = 1
  684. TB2Insert.Description = ""
  685. table.insert(D3DCarConfig.Car,TB2Insert)
  686.  
  687.  
  688.  
  689.  
  690. local TB2Insert = {}
  691. TB2Insert.VehicleName = "h1tdm"
  692. TB2Insert.CarName = "Hummer H1"
  693. TB2Insert.CarPrice = 99500
  694. TB2Insert.CarRefund = 4587
  695. TB2Insert.MaxAmount = 1
  696. TB2Insert.Description = ""
  697. table.insert(D3DCarConfig.Car,TB2Insert)
  698.  
  699.  
  700.  
  701.  
  702. local TB2Insert = {}
  703. TB2Insert.VehicleName = "h1opentdm"
  704. TB2Insert.CarName = "Hummer H1 Open Top"
  705. TB2Insert.CarPrice = 100000
  706. TB2Insert.CarRefund = 4289
  707. TB2Insert.MaxAmount = 1
  708. TB2Insert.Description = ""
  709. table.insert(D3DCarConfig.Car,TB2Insert)
  710.  
  711.  
  712.  
  713.  
  714. local TB2Insert = {}
  715. TB2Insert.VehicleName = "grandchetdm"
  716. TB2Insert.CarName = "Jeep Grand Cherokee"
  717. TB2Insert.CarPrice = 76258
  718. TB2Insert.CarRefund = 1256
  719. TB2Insert.MaxAmount = 1
  720. TB2Insert.Description = ""
  721. table.insert(D3DCarConfig.Car,TB2Insert)
  722.  
  723.  
  724.  
  725.  
  726. local TB2Insert = {}
  727. TB2Insert.VehicleName = "jeewillystdm"
  728. TB2Insert.CarName = "Jeep Willys"
  729. TB2Insert.CarPrice = 76236
  730. TB2Insert.CarRefund = 4510
  731. TB2Insert.MaxAmount = 1
  732. TB2Insert.Description = ""
  733. table.insert(D3DCarConfig.Car,TB2Insert)
  734.  
  735.  
  736.  
  737.  
  738. local TB2Insert = {}
  739. TB2Insert.VehicleName = "wranglertdm"
  740. TB2Insert.CarName = "Jeep Wrangler"
  741. TB2Insert.CarPrice = 46809
  742. TB2Insert.CarRefund = 1893
  743. TB2Insert.MaxAmount = 1
  744. TB2Insert.Description = ""
  745. table.insert(D3DCarConfig.Car,TB2Insert)
  746.  
  747.  
  748.  
  749.  
  750. local TB2Insert = {}
  751. TB2Insert.VehicleName = "wrangler88tdm"
  752. TB2Insert.CarName = "Jeep Wrangler 1988"
  753. TB2Insert.CarPrice = 19986
  754. TB2Insert.CarRefund = 4789
  755. TB2Insert.MaxAmount = 1
  756. TB2Insert.Description = ""
  757. table.insert(D3DCarConfig.Car,TB2Insert)
  758.  
  759.  
  760.  
  761.  
  762. local TB2Insert = {}
  763. TB2Insert.VehicleName = "ceedtdm"
  764. TB2Insert.CarName = "Kia Ceed"
  765. TB2Insert.CarPrice = 78219
  766. TB2Insert.CarRefund = 9318
  767. TB2Insert.MaxAmount = 1
  768. TB2Insert.Description = ""
  769. table.insert(D3DCarConfig.Car,TB2Insert)
  770.  
  771.  
  772.  
  773.  
  774. local TB2Insert = {}
  775. TB2Insert.VehicleName = "fortekouptdm"
  776. TB2Insert.CarName = "Kia Forte Koup"
  777. TB2Insert.CarPrice = 78165
  778. TB2Insert.CarRefund = 2549
  779. TB2Insert.MaxAmount = 1
  780. TB2Insert.Description = ""
  781. table.insert(D3DCarConfig.Car,TB2Insert)
  782.  
  783.  
  784.  
  785.  
  786. local TB2Insert = {}
  787. TB2Insert.VehicleName = "diablotdm"
  788. TB2Insert.CarName = "Lamborghini Diablo"
  789. TB2Insert.CarPrice = 300000
  790. TB2Insert.CarRefund = 150000
  791. TB2Insert.MaxAmount = 1
  792. TB2Insert.Description = ""
  793. table.insert(D3DCarConfig.Car,TB2Insert)
  794.  
  795.  
  796.  
  797.  
  798. local TB2Insert = {}
  799. TB2Insert.VehicleName = "gallardotdm"
  800. TB2Insert.CarName = "Lamborghini Gallardo"
  801. TB2Insert.CarPrice = 397500
  802. TB2Insert.CarRefund = 140000
  803. TB2Insert.MaxAmount = 1
  804. TB2Insert.Description = ""
  805. table.insert(D3DCarConfig.Car,TB2Insert)
  806.  
  807.  
  808.  
  809.  
  810. local TB2Insert = {}
  811. TB2Insert.VehicleName = "gallardospydtdm"
  812. TB2Insert.CarName = "Lamborghini Gallardo L"
  813. TB2Insert.CarPrice = 242695
  814. TB2Insert.CarRefund = 12490
  815. TB2Insert.MaxAmount = 1
  816. TB2Insert.Description = ""
  817. table.insert(D3DCarConfig.Car,TB2Insert)
  818.  
  819.  
  820.  
  821.  
  822. local TB2Insert = {}
  823. TB2Insert.VehicleName = "miuracontdm"
  824. TB2Insert.CarName = "Lamborghini Miura"
  825. TB2Insert.CarPrice = 660000
  826. TB2Insert.CarRefund = 190000
  827. TB2Insert.MaxAmount = 1
  828. TB2Insert.Description = ""
  829. table.insert(D3DCarConfig.Car,TB2Insert)
  830.  
  831.  
  832.  
  833.  
  834. local TB2Insert = {}
  835. TB2Insert.VehicleName = "murcielagotdm"
  836. TB2Insert.CarName = "Lamborghini Murrcielago"
  837. TB2Insert.CarPrice = 300109
  838. TB2Insert.CarRefund = 190800
  839. TB2Insert.MaxAmount = 1
  840. TB2Insert.Description = ""
  841. table.insert(D3DCarConfig.Car,TB2Insert)
  842.  
  843.  
  844.  
  845.  
  846. local TB2Insert = {}
  847. TB2Insert.VehicleName = "murcielagosvtdm"
  848. TB2Insert.CarName = "Lamborghini Murrcielago 2"
  849. TB2Insert.CarPrice = 194000
  850. TB2Insert.CarRefund = 50500
  851. TB2Insert.MaxAmount = 1
  852. TB2Insert.Description = ""
  853. table.insert(D3DCarConfig.Car,TB2Insert)
  854.  
  855.  
  856.  
  857.  
  858. local TB2Insert = {}
  859. TB2Insert.VehicleName = "reventonrtdm"
  860. TB2Insert.CarName = "Lamborghini Reventon"
  861. TB2Insert.CarPrice = 840000
  862. TB2Insert.CarRefund = 9500
  863. TB2Insert.MaxAmount = 1
  864. TB2Insert.Description = ""
  865. table.insert(D3DCarConfig.Car,TB2Insert)
  866.  
  867.  
  868.  
  869.  
  870. local TB2Insert = {}
  871. TB2Insert.VehicleName = "lrdefendertdm"
  872. TB2Insert.CarName = "Land Rover Defender"
  873. TB2Insert.CarPrice = 103264
  874. TB2Insert.CarRefund = 1569
  875. TB2Insert.MaxAmount = 1
  876. TB2Insert.Description = ""
  877. table.insert(D3DCarConfig.Car,TB2Insert)
  878.  
  879.  
  880.  
  881.  
  882. local TB2Insert = {}
  883. TB2Insert.VehicleName = "landrovertdm"
  884. TB2Insert.CarName = "Land Rover"
  885. TB2Insert.CarPrice = 93145
  886. TB2Insert.CarRefund = 1234
  887. TB2Insert.MaxAmount = 1
  888. TB2Insert.Description = ""
  889. table.insert(D3DCarConfig.Car,TB2Insert)
  890.  
  891.  
  892.  
  893.  
  894. local TB2Insert = {}
  895. TB2Insert.VehicleName = "landrover12tdm"
  896. TB2Insert.CarName = "Land Rover 2"
  897. TB2Insert.CarPrice = 90600
  898. TB2Insert.CarRefund = 30500
  899. TB2Insert.MaxAmount = 1
  900. TB2Insert.Description = ""
  901. table.insert(D3DCarConfig.Car,TB2Insert)
  902.  
  903.  
  904.  
  905.  
  906. local TB2Insert = {}
  907. TB2Insert.VehicleName = "furaitdm"
  908. TB2Insert.CarName = "Mazda Furai"
  909. TB2Insert.CarPrice = 150000
  910. TB2Insert.CarRefund = 90500
  911. TB2Insert.MaxAmount = 1
  912. TB2Insert.Description = ""
  913. table.insert(D3DCarConfig.Car,TB2Insert)
  914.  
  915.  
  916.  
  917.  
  918. local TB2Insert = {}
  919. TB2Insert.VehicleName = "mx5tdm"
  920. TB2Insert.CarName = "Mazda MX-5 2007"
  921. TB2Insert.CarPrice = 86500
  922. TB2Insert.CarRefund = 5478
  923. TB2Insert.MaxAmount = 1
  924. TB2Insert.Description = ""
  925. table.insert(D3DCarConfig.Car,TB2Insert)
  926.  
  927.  
  928.  
  929.  
  930. local TB2Insert = {}
  931. TB2Insert.VehicleName = "rx7tdm"
  932. TB2Insert.CarName = "Mazda RX-7"
  933. TB2Insert.CarPrice = 60500
  934. TB2Insert.CarRefund = 2000
  935. TB2Insert.MaxAmount = 1
  936. TB2Insert.Description = ""
  937. table.insert(D3DCarConfig.Car,TB2Insert)
  938.  
  939.  
  940.  
  941.  
  942. local TB2Insert = {}
  943. TB2Insert.VehicleName = "rx8tdm"
  944. TB2Insert.CarName = "Mazda RX-8"
  945. TB2Insert.CarPrice = 90500
  946. TB2Insert.CarRefund = 2500
  947. TB2Insert.MaxAmount = 1
  948. TB2Insert.Description = ""
  949. table.insert(D3DCarConfig.Car,TB2Insert)
  950.  
  951.  
  952.  
  953.  
  954. local TB2Insert = {}
  955. TB2Insert.VehicleName = "speed3tdm"
  956. TB2Insert.CarName = "Mazda Speed 3 2009"
  957. TB2Insert.CarPrice = 150000
  958. TB2Insert.CarRefund = 1965
  959. TB2Insert.MaxAmount = 1
  960. TB2Insert.Description = ""
  961. table.insert(D3DCarConfig.Car,TB2Insert)
  962.  
  963.  
  964.  
  965.  
  966. local TB2Insert = {}
  967. TB2Insert.VehicleName = "mer300seltdm"
  968. TB2Insert.CarName = "Mercedes Benz 300 SEL"
  969. TB2Insert.CarPrice = 75000
  970. TB2Insert.CarRefund = 3698
  971. TB2Insert.MaxAmount = 1
  972. TB2Insert.Description = ""
  973. table.insert(D3DCarConfig.Car,TB2Insert)
  974.  
  975.  
  976.  
  977.  
  978. local TB2Insert = {}
  979. TB2Insert.VehicleName = "mer300slgulltdm"
  980. TB2Insert.CarName = "Mercedes Benz 300 SL"
  981. TB2Insert.CarPrice = 120000
  982. TB2Insert.CarRefund = 20500
  983. TB2Insert.MaxAmount = 1
  984. TB2Insert.Description = ""
  985. table.insert(D3DCarConfig.Car,TB2Insert)
  986.  
  987.  
  988.  
  989.  
  990. local TB2Insert = {}
  991. TB2Insert.VehicleName = "c32amgtdm"
  992. TB2Insert.CarName = "Mercedes Benz C32 AMG"
  993. TB2Insert.CarPrice = 135000
  994. TB2Insert.CarRefund = 40600
  995. TB2Insert.MaxAmount = 1
  996. TB2Insert.Description = ""
  997. table.insert(D3DCarConfig.Car,TB2Insert)
  998.  
  999.  
  1000.  
  1001.  
  1002. local TB2Insert = {}
  1003. TB2Insert.VehicleName = "mere63tdm"
  1004. TB2Insert.CarName = "Mercedes Benz E63 AMG"
  1005. TB2Insert.CarPrice = 160000
  1006. TB2Insert.CarRefund = 80000
  1007. TB2Insert.MaxAmount = 1
  1008. TB2Insert.Description = ""
  1009. table.insert(D3DCarConfig.Car,TB2Insert)
  1010.  
  1011.  
  1012.  
  1013.  
  1014. local TB2Insert = {}
  1015. TB2Insert.VehicleName = "merml63tdm"
  1016. TB2Insert.CarName = "Mercedes Benz ML63"
  1017. TB2Insert.CarPrice = 150500
  1018. TB2Insert.CarRefund = 90000
  1019. TB2Insert.MaxAmount = 1
  1020. TB2Insert.Description = ""
  1021. table.insert(D3DCarConfig.Car,TB2Insert)
  1022.  
  1023.  
  1024.  
  1025.  
  1026. local TB2Insert = {}
  1027. TB2Insert.VehicleName = "sl65amgtdm"
  1028. TB2Insert.CarName = "Mercedes Benz SL65"
  1029. TB2Insert.CarPrice = 130000
  1030. TB2Insert.CarRefund = 50000
  1031. TB2Insert.MaxAmount = 1
  1032. TB2Insert.Description = ""
  1033. table.insert(D3DCarConfig.Car,TB2Insert)
  1034.  
  1035.  
  1036.  
  1037.  
  1038. local TB2Insert = {}
  1039. TB2Insert.VehicleName = "slsamgtdm"
  1040. TB2Insert.CarName = "Mercedes Benz SLS AMG"
  1041. TB2Insert.CarPrice = 120000
  1042. TB2Insert.CarRefund = 2600
  1043. TB2Insert.MaxAmount = 1
  1044. TB2Insert.Description = ""
  1045. table.insert(D3DCarConfig.Car,TB2Insert)
  1046.  
  1047.  
  1048.  
  1049.  
  1050. local TB2Insert = {}
  1051. TB2Insert.VehicleName = "cooper65tdm"
  1052. TB2Insert.CarName = "Mini Cooper 1965"
  1053. TB2Insert.CarPrice = 60500
  1054. TB2Insert.CarRefund = 6000
  1055. TB2Insert.MaxAmount = 1
  1056. TB2Insert.Description = ""
  1057. table.insert(D3DCarConfig.Car,TB2Insert)
  1058.  
  1059.  
  1060.  
  1061.  
  1062. local TB2Insert = {}
  1063. TB2Insert.VehicleName = "clubmantdm"
  1064. TB2Insert.CarName = "Mini Cooper Clubman"
  1065. TB2Insert.CarPrice = 70000
  1066. TB2Insert.CarRefund = 5000
  1067. TB2Insert.MaxAmount = 1
  1068. TB2Insert.Description = ""
  1069. table.insert(D3DCarConfig.Car,TB2Insert)
  1070.  
  1071.  
  1072.  
  1073.  
  1074. local TB2Insert = {}
  1075. TB2Insert.VehicleName = "coopercoupetdm"
  1076. TB2Insert.CarName = "Mini Cooper Coupe"
  1077. TB2Insert.CarPrice = 90000
  1078. TB2Insert.CarRefund = 4500
  1079. TB2Insert.MaxAmount = 1
  1080. TB2Insert.Description = ""
  1081. table.insert(D3DCarConfig.Car,TB2Insert)
  1082.  
  1083.  
  1084.  
  1085.  
  1086. local TB2Insert = {}
  1087. TB2Insert.VehicleName = "coopers11tdm"
  1088. TB2Insert.CarName = "Mini Cooper S 2011"
  1089. TB2Insert.CarPrice = 95000
  1090. TB2Insert.CarRefund = 6500
  1091. TB2Insert.MaxAmount = 1
  1092. TB2Insert.Description = ""
  1093. table.insert(D3DCarConfig.Car,TB2Insert)
  1094.  
  1095.  
  1096.  
  1097.  
  1098. local TB2Insert = {}
  1099. TB2Insert.VehicleName = "cooper4x4tdm"
  1100. TB2Insert.CarName = "Mini Cooper 4x4"
  1101. TB2Insert.CarPrice = 14000
  1102. TB2Insert.CarRefund = 9642
  1103. TB2Insert.MaxAmount = 1
  1104. TB2Insert.Description = ""
  1105. table.insert(D3DCarConfig.Car,TB2Insert)
  1106.  
  1107.  
  1108.  
  1109.  
  1110. local TB2Insert = {}
  1111. TB2Insert.VehicleName = "colttdm"
  1112. TB2Insert.CarName = "Mitsubishi Colt Ralliart"
  1113. TB2Insert.CarPrice = 98765
  1114. TB2Insert.CarRefund = 1968
  1115. TB2Insert.MaxAmount = 1
  1116. TB2Insert.Description = ""
  1117. table.insert(D3DCarConfig.Car,TB2Insert)
  1118.  
  1119.  
  1120.  
  1121.  
  1122. local TB2Insert = {}
  1123. TB2Insert.VehicleName = "mit_eclipsegsxtdm"
  1124. TB2Insert.CarName = "Mitsubishi Eclipse GSX"
  1125. TB2Insert.CarPrice = 96000
  1126. TB2Insert.CarRefund = 32698
  1127. TB2Insert.MaxAmount = 1
  1128. TB2Insert.Description = ""
  1129. table.insert(D3DCarConfig.Car,TB2Insert)
  1130.  
  1131.  
  1132.  
  1133.  
  1134. local TB2Insert = {}
  1135. TB2Insert.VehicleName = "mitsu_eclipgttdm"
  1136. TB2Insert.CarName = "Mitsubishi Eclipse GT"
  1137. TB2Insert.CarPrice = 85415
  1138. TB2Insert.CarRefund = 29478
  1139. TB2Insert.MaxAmount = 1
  1140. TB2Insert.Description = ""
  1141. table.insert(D3DCarConfig.Car,TB2Insert)
  1142.  
  1143.  
  1144.  
  1145.  
  1146. local TB2Insert = {}
  1147. TB2Insert.VehicleName = "mitsu_evo8tdm"
  1148. TB2Insert.CarName = "Mitsubishi Lancer Evo"
  1149. TB2Insert.CarPrice = 85000
  1150. TB2Insert.CarRefund = 23698
  1151. TB2Insert.MaxAmount = 1
  1152. TB2Insert.Description = ""
  1153. table.insert(D3DCarConfig.Car,TB2Insert)
  1154.  
  1155.  
  1156.  
  1157.  
  1158. local TB2Insert = {}
  1159. TB2Insert.VehicleName = "mitsu_evoxtdm"
  1160. TB2Insert.CarName = "Mitsubishi Lancer Evo 2"
  1161. TB2Insert.CarPrice = 96000
  1162. TB2Insert.CarRefund = 48125
  1163. TB2Insert.MaxAmount = 1
  1164. TB2Insert.Description = ""
  1165. table.insert(D3DCarConfig.Car,TB2Insert)
  1166.  
  1167.  
  1168.  
  1169.  
  1170. local TB2Insert = {}
  1171. TB2Insert.VehicleName = "350ztdm"
  1172. TB2Insert.CarName = "Nissan 350Z"
  1173. TB2Insert.CarPrice = 84000
  1174. TB2Insert.CarRefund = 56087
  1175. TB2Insert.MaxAmount = 1
  1176. TB2Insert.Description = ""
  1177. table.insert(D3DCarConfig.Car,TB2Insert)
  1178.  
  1179.  
  1180.  
  1181.  
  1182. local TB2Insert = {}
  1183. TB2Insert.VehicleName = "370ztdm"
  1184. TB2Insert.CarName = "Nissan 370Z"
  1185. TB2Insert.CarPrice = 95000
  1186. TB2Insert.CarRefund = 60000
  1187. TB2Insert.MaxAmount = 1
  1188. TB2Insert.Description = ""
  1189. table.insert(D3DCarConfig.Car,TB2Insert)
  1190.  
  1191.  
  1192.  
  1193.  
  1194. local TB2Insert = {}
  1195. TB2Insert.VehicleName = "gtrtdm"
  1196. TB2Insert.CarName = "Nissan GT-R Black Edition"
  1197. TB2Insert.CarPrice = 85000
  1198. TB2Insert.CarRefund = 30000
  1199. TB2Insert.MaxAmount = 1
  1200. TB2Insert.Description = ""
  1201. table.insert(D3DCarConfig.Car,TB2Insert)
  1202.  
  1203.  
  1204.  
  1205.  
  1206. local TB2Insert = {}
  1207. TB2Insert.VehicleName = "nissilvs15tdm"
  1208. TB2Insert.CarName = "Nissan Silvia S15"
  1209. TB2Insert.CarPrice = 86000
  1210. TB2Insert.CarRefund = 51222
  1211. TB2Insert.MaxAmount = 1
  1212. TB2Insert.Description = ""
  1213. table.insert(D3DCarConfig.Car,TB2Insert)
  1214.  
  1215.  
  1216.  
  1217.  
  1218. local TB2Insert = {}
  1219. TB2Insert.VehicleName = "r34tdm"
  1220. TB2Insert.CarName = "Nissan Skyline R34"
  1221. TB2Insert.CarPrice = 90000
  1222. TB2Insert.CarRefund = 50500
  1223. TB2Insert.MaxAmount = 1
  1224. TB2Insert.Description = ""
  1225. table.insert(D3DCarConfig.Car,TB2Insert)
  1226.  
  1227.  
  1228.  
  1229.  
  1230. local TB2Insert = {}
  1231. TB2Insert.VehicleName = "porgt3rsrtdm"
  1232. TB2Insert.CarName = "Porsche 911 GT3-RSR"
  1233. TB2Insert.CarPrice = 130000
  1234. TB2Insert.CarRefund = 95000
  1235. TB2Insert.MaxAmount = 1
  1236. TB2Insert.Description = ""
  1237. table.insert(D3DCarConfig.Car,TB2Insert)
  1238.  
  1239.  
  1240.  
  1241.  
  1242. local TB2Insert = {}
  1243. TB2Insert.VehicleName = "918spydtdm"
  1244. TB2Insert.CarName = "Porsche 918 Spyder"
  1245. TB2Insert.CarPrice = 845000
  1246. TB2Insert.CarRefund = 300000
  1247. TB2Insert.MaxAmount = 1
  1248. TB2Insert.Description = ""
  1249. table.insert(D3DCarConfig.Car,TB2Insert)
  1250.  
  1251.  
  1252.  
  1253.  
  1254. local TB2Insert = {}
  1255. TB2Insert.VehicleName = "997gt3tdm"
  1256. TB2Insert.CarName = "Porsche 997 GT3"
  1257. TB2Insert.CarPrice = 125000
  1258. TB2Insert.CarRefund = 95000
  1259. TB2Insert.MaxAmount = 1
  1260. TB2Insert.Description = ""
  1261. table.insert(D3DCarConfig.Car,TB2Insert)
  1262.  
  1263.  
  1264.  
  1265.  
  1266. local TB2Insert = {}
  1267. TB2Insert.VehicleName = "carreragttdm"
  1268. TB2Insert.CarName = "Porsche Carrera GT"
  1269. TB2Insert.CarPrice = 440500
  1270. TB2Insert.CarRefund = 250000
  1271. TB2Insert.MaxAmount = 1
  1272. TB2Insert.Description = ""
  1273. table.insert(D3DCarConfig.Car,TB2Insert)
  1274.  
  1275.  
  1276.  
  1277.  
  1278. local TB2Insert = {}
  1279. TB2Insert.VehicleName = "cayenne12tdm"
  1280. TB2Insert.CarName = "Porsche Cayenne Turbo"
  1281. TB2Insert.CarPrice = 158000
  1282. TB2Insert.CarRefund = 86500
  1283. TB2Insert.MaxAmount = 1
  1284. TB2Insert.Description = ""
  1285. table.insert(D3DCarConfig.Car,TB2Insert)
  1286.  
  1287.  
  1288.  
  1289.  
  1290. local TB2Insert = {}
  1291. TB2Insert.VehicleName = "cayennetdm"
  1292. TB2Insert.CarName = "Porsche Cayenne Turbo 2"
  1293. TB2Insert.CarPrice = 158000
  1294. TB2Insert.CarRefund = 86500
  1295. TB2Insert.MaxAmount = 1
  1296. TB2Insert.Description = ""
  1297. table.insert(D3DCarConfig.Car,TB2Insert)
  1298.  
  1299.  
  1300.  
  1301.  
  1302. local TB2Insert = {}
  1303. TB2Insert.VehicleName = "scionfrstdm"
  1304. TB2Insert.CarName = "Scion FR-S"
  1305. TB2Insert.CarPrice = 120000
  1306. TB2Insert.CarRefund = 65000
  1307. TB2Insert.MaxAmount = 1
  1308. TB2Insert.Description = ""
  1309. table.insert(D3DCarConfig.Car,TB2Insert)
  1310.  
  1311.  
  1312.  
  1313.  
  1314. local TB2Insert = {}
  1315. TB2Insert.VehicleName = "sciontctdm"
  1316. TB2Insert.CarName = "Scion tC"
  1317. TB2Insert.CarPrice = 150000
  1318. TB2Insert.CarRefund = 30145
  1319. TB2Insert.MaxAmount = 1
  1320. TB2Insert.Description = ""
  1321. table.insert(D3DCarConfig.Car,TB2Insert)
  1322.  
  1323.  
  1324.  
  1325.  
  1326. local TB2Insert = {}
  1327. TB2Insert.VehicleName = "scionxdtdm"
  1328. TB2Insert.CarName = "Scion xD"
  1329. TB2Insert.CarPrice = 100000
  1330. TB2Insert.CarRefund = 50000
  1331. TB2Insert.MaxAmount = 1
  1332. TB2Insert.Description = ""
  1333. table.insert(D3DCarConfig.Car,TB2Insert)
  1334.  
  1335.  
  1336.  
  1337.  
  1338. local TB2Insert = {}
  1339. TB2Insert.VehicleName = "vipvipertdm"
  1340. TB2Insert.CarName = "Viper Viper GTS"
  1341. TB2Insert.CarPrice = 118000
  1342. TB2Insert.CarRefund = 69000
  1343. TB2Insert.MaxAmount = 1
  1344. TB2Insert.Description = ""
  1345. table.insert(D3DCarConfig.Car,TB2Insert)
  1346.  
  1347.  
  1348.  
  1349.  
  1350. local TB2Insert = {}
  1351. TB2Insert.VehicleName = "golfmk2tdm"
  1352. TB2Insert.CarName = "Volkswagen Golf MKII"
  1353. TB2Insert.CarPrice = 90852
  1354. TB2Insert.CarRefund = 7515
  1355. TB2Insert.MaxAmount = 1
  1356. TB2Insert.Description = ""
  1357. table.insert(D3DCarConfig.Car,TB2Insert)
  1358.  
  1359.  
  1360.  
  1361.  
  1362. local TB2Insert = {}
  1363. TB2Insert.VehicleName = "vw_golfr32tdm"
  1364. TB2Insert.CarName = "Volkswagen Golf R32"
  1365. TB2Insert.CarPrice = 100000
  1366. TB2Insert.CarRefund = 69500
  1367. TB2Insert.MaxAmount = 1
  1368. TB2Insert.Description = ""
  1369. table.insert(D3DCarConfig.Car,TB2Insert)
  1370.  
  1371.  
  1372.  
  1373.  
  1374. local TB2Insert = {}
  1375. TB2Insert.VehicleName = "golfvr6tdm"
  1376. TB2Insert.CarName = "Volkswagen Golf Vr6 GT"
  1377. TB2Insert.CarPrice = 85600
  1378. TB2Insert.CarRefund = 42000
  1379. TB2Insert.MaxAmount = 1
  1380. TB2Insert.Description = ""
  1381. table.insert(D3DCarConfig.Car,TB2Insert)
  1382.  
  1383.  
  1384.  
  1385.  
  1386. local TB2Insert = {}
  1387. TB2Insert.VehicleName = "vwbeetleconvtdm"
  1388. TB2Insert.CarName = "Volkswagen New Bettle"
  1389. TB2Insert.CarPrice = 90458
  1390. TB2Insert.CarRefund = 1268
  1391. TB2Insert.MaxAmount = 1
  1392. TB2Insert.Description = ""
  1393. table.insert(D3DCarConfig.Car,TB2Insert)
  1394.  
  1395.  
  1396.  
  1397.  
  1398. local TB2Insert = {}
  1399. TB2Insert.VehicleName = "vwsciroccortdm"
  1400. TB2Insert.CarName = "Volkswagen Scirocco R"
  1401. TB2Insert.CarPrice = 150000
  1402. TB2Insert.CarRefund = 90400
  1403. TB2Insert.MaxAmount = 1
  1404. TB2Insert.Description = ""
  1405. table.insert(D3DCarConfig.Car,TB2Insert)
  1406.  
  1407.  
  1408.  
  1409.  
  1410. local TB2Insert = {}
  1411. TB2Insert.VehicleName = "242turbotdm"
  1412. TB2Insert.CarName = "Volvo 242 Turbo"
  1413. TB2Insert.CarPrice = 80500
  1414. TB2Insert.CarRefund = 4528
  1415. TB2Insert.MaxAmount = 1
  1416. TB2Insert.Description = ""
  1417. table.insert(D3DCarConfig.Car,TB2Insert)
  1418.  
  1419.  
  1420.  
  1421.  
  1422. local TB2Insert = {}
  1423. TB2Insert.VehicleName = "vol850rtdm"
  1424. TB2Insert.CarName = "Volvo 850 R"
  1425. TB2Insert.CarPrice = 100000
  1426. TB2Insert.CarRefund = 45085
  1427. TB2Insert.MaxAmount = 1
  1428. TB2Insert.Description = ""
  1429. table.insert(D3DCarConfig.Car,TB2Insert)
  1430.  
  1431.  
  1432.  
  1433.  
  1434. local TB2Insert = {}
  1435. TB2Insert.VehicleName = "vols60tdm"
  1436. TB2Insert.CarName = "Volvo S60R"
  1437. TB2Insert.CarPrice = 95000
  1438. TB2Insert.CarRefund = 9000
  1439. TB2Insert.MaxAmount = 1
  1440. TB2Insert.Description = ""
  1441. table.insert(D3DCarConfig.Car,TB2Insert)
  1442.  
  1443.  
  1444.  
  1445.  
  1446. local TB2Insert = {}
  1447. TB2Insert.VehicleName = "volxc70tdm"
  1448. TB2Insert.CarName = "Volvo XC70 Turbo"
  1449. TB2Insert.CarPrice = 120000
  1450. TB2Insert.CarRefund = 70000
  1451. TB2Insert.MaxAmount = 1
  1452. TB2Insert.Description = ""
  1453. table.insert(D3DCarConfig.Car,TB2Insert)
  1454.  
  1455.  
  1456.  
  1457.  
  1458. local TB2Insert = {}
  1459. TB2Insert.VehicleName = "volxc90tdm"
  1460. TB2Insert.CarName = "Volvo XC90"
  1461. TB2Insert.CarPrice = 85000
  1462. TB2Insert.CarRefund = 45000
  1463. TB2Insert.MaxAmount = 1
  1464. TB2Insert.Description = ""
  1465. table.insert(D3DCarConfig.Car,TB2Insert)
  1466.  
  1467.  
  1468.  
  1469.  
  1470. local TB2Insert = {}
  1471. TB2Insert.VehicleName = "c5500tdm"
  1472. TB2Insert.CarName = "GMC C5500"
  1473. TB2Insert.CarPrice = 150000
  1474. TB2Insert.CarRefund = 90000
  1475. TB2Insert.MaxAmount = 1
  1476. TB2Insert.Description = ""
  1477. table.insert(D3DCarConfig.Car,TB2Insert)
  1478.  
  1479.  
  1480.  
  1481.  
  1482.  
  1483.  
  1484.  
  1485.  
  1486. if CLIENT then
  1487. surface.CreateFont( "CenterCarName",{
  1488. font = "Sansation",
  1489. size = 40,
  1490. weight = 700,
  1491. outline = true
  1492. })
  1493.  
  1494. surface.CreateFont( "CenterCarPrice",{
  1495. font = "Sansation",
  1496. size = 25,
  1497. weight = 700,
  1498. outline = true
  1499. })
  1500.  
  1501. surface.CreateFont( "SansationOut_S20",{
  1502. font = "Sansation",
  1503. size = 20,
  1504. weight = 700,
  1505. outline = true
  1506. })
  1507.  
  1508. surface.CreateFont( "SansationOut_S30",{
  1509. font = "Sansation",
  1510. size = 30,
  1511. weight = 700,
  1512. outline = true
  1513. })
  1514.  
  1515. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement