Advertisement
Guest User

Untitled

a guest
Sep 12th, 2022
506
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.91 KB | None | 0 0
  1. Config = {}
  2.  
  3. Config.toggleSmokeCommand = "toggleSmoke" -- Toggles the enahnced smoke locally (for lower end pcs)
  4.  
  5. Config.minSize = 0.1 -- the minimum smoke size
  6. Config.minRPM = 0.8 -- 0.0 to 1.0 (0.7 - 0.85 are good values)
  7. Config.scaleSmokeSizeWithVehicleWeight = true
  8.  
  9. Config.defaultIntervalType = 2 -- 0 = Constant, 1 = Interval, 2 = Interval short
  10. Config.defaultParticleType = 0 -- 0 = Thick Light Gray, 1 = Coal Gray, 2 = Medium Gray, 3 = Thin Light Gray
  11. Config.defaultSizeScale = 4 -- How quickly the smoke size scales (minimum 1.01)
  12. Config.defaultEngineUpgradeRequired = "off" -- only allow smoke on specific engines "off" = disabled, -1 = stock, 0 = upgrade 1, 1 = upgrade 2, 2 = upgrade 3, 3 = upgrade 4
  13. Config.defaultSizeReduction = 5 -- Size is devided by this number
  14. Config.defaultParticleDuration = -1 -- after how long the particles dissapear. if set to -1, the particles will stay until naturally disolving. RECOMMENDED keeping at -1 (in seconds)
  15.  
  16. --[[
  17. ----PRESET LONG SMOKE----
  18. Config.defaultSizeScale = 2.2,
  19. Config.defaultEngineUpgradeRequired = "off"
  20. Config.defaultIntervalType = 0
  21. Config.defaultParticleType = 2
  22. Config.defaultSizeReduction = 30
  23. Config.defaultParticleDuration = -1
  24. ]]--
  25.  
  26. Config.useWhitelistedOnly = false
  27. Config.whitelist = { -- If Config.useWhitelistedOnly is set to false, this table can still be used to amplify the smoke on specific vehicles
  28. -- COAL ROLLER VEHICLES --
  29. ["guardian"] = {
  30. sizeScale = 1.3, -- Overwrites Config.defaultSizeScale for this vehicle
  31. engineUpgradeRequired = "DEFAULT", -- Overwrites Config.defaultEngineUpgradeRequired for this vehicle
  32. intervalType = 0, -- Overwrites Config.defaultIntervalType for this vehicle
  33. particleType = 1, -- OVerwrites Config.defaultParticleType for this vehicle
  34. sizeReduction = "DEFAULT", -- Overwrites Config.defaultSizeReduction for this vehicle
  35. particleDuration = "DEFAULT"
  36. },
  37. ["bodhi2"] = {
  38. sizeScale = 1.5,
  39. engineUpgradeRequired = "DEFAULT",
  40. intervalType = 0,
  41. particleType = 1,
  42. sizeReduction = "DEFAULT",
  43. particleDuration = "DEFAULT"
  44. },
  45.  
  46. ["dloader"] = {
  47. sizeScale = 1.5,
  48. engineUpgradeRequired = "DEFAULT",
  49. intervalType = 0,
  50. particleType = 1,
  51. sizeReduction = "DEFAULT",
  52. particleDuration = "DEFAULT"
  53. },
  54. ["rebel"] = {
  55. sizeScale = 1.5,
  56. engineUpgradeRequired = "DEFAULT",
  57. intervalType = 0,
  58. particleType = 1,
  59. sizeReduction = "DEFAULT",
  60. particleDuration = "DEFAULT"
  61. },
  62. ["rebel2"] = {
  63. sizeScale = 2,
  64. engineUpgradeRequired = "DEFAULT",
  65. intervalType = 0,
  66. particleType = 1,
  67. sizeReduction = "DEFAULT",
  68. particleDuration = "DEFAULT"
  69. },
  70. ["riata"] = {
  71. sizeScale = 1.5,
  72. engineUpgradeRequired = "DEFAULT",
  73. intervalType = 0,
  74. particleType = 1,
  75. sizeReduction = "DEFAULT",
  76. particleDuration = "DEFAULT"
  77. },
  78. ----------------------
  79. ------- TRUCKS -------
  80. ["benson"] = {
  81. sizeScale = "DEFAULT",
  82. engineUpgradeRequired = "DEFAULT",
  83. intervalType = 1,
  84. particleType = 1,
  85. sizeReduction = 100,
  86. particleDuration = "DEFAULT"
  87. },
  88. ["biff"] = {
  89. sizeScale = "DEFAULT",
  90. engineUpgradeRequired = "DEFAULT",
  91. intervalType = 1,
  92. particleType = 1,
  93. sizeReduction = 100,
  94. particleDuration = "DEFAULT"
  95. },
  96. ["cerberus"] = {
  97. sizeScale = "DEFAULT",
  98. engineUpgradeRequired = "DEFAULT",
  99. intervalType = 1,
  100. particleType = 1,
  101. sizeReduction = 100,
  102. particleDuration = "DEFAULT"
  103. },
  104. ["cerberus2"] = {
  105. sizeScale = "DEFAULT",
  106. engineUpgradeRequired = "DEFAULT",
  107. intervalType = 1,
  108. particleType = 1,
  109. sizeReduction = 100,
  110. particleDuration = "DEFAULT"
  111. },
  112. ["cerberus3"] = {
  113. sizeScale = "DEFAULT",
  114. engineUpgradeRequired = "DEFAULT",
  115. intervalType = 1,
  116. particleType = 1,
  117. sizeReduction = 100,
  118. particleDuration = "DEFAULT"
  119. },
  120. ["hauler"] = {
  121. sizeScale = "DEFAULT",
  122. engineUpgradeRequired = "DEFAULT",
  123. intervalType = 1,
  124. particleType = 1,
  125. sizeReduction = 100,
  126. particleDuration = "DEFAULT"
  127. },
  128. ["hauler2"] = {
  129. sizeScale = "DEFAULT",
  130. engineUpgradeRequired = "DEFAULT",
  131. intervalType = 1,
  132. particleType = 1,
  133. sizeReduction = 100,
  134. particleDuration = "DEFAULT"
  135. },
  136. ["mule"] = {
  137. sizeScale = "DEFAULT",
  138. engineUpgradeRequired = "DEFAULT",
  139. intervalType = 1,
  140. particleType = 1,
  141. sizeReduction = 100,
  142. particleDuration = "DEFAULT"
  143. },
  144. ["mule2"] = {
  145. sizeScale = "DEFAULT",
  146. engineUpgradeRequired = "DEFAULT",
  147. intervalType = 1,
  148. particleType = 1,
  149. sizeReduction = 100,
  150. particleDuration = "DEFAULT"
  151. },
  152. ["mule3"] = {
  153. sizeScale = "DEFAULT",
  154. engineUpgradeRequired = "DEFAULT",
  155. intervalType = 1,
  156. particleType = 1,
  157. sizeReduction = 100,
  158. particleDuration = "DEFAULT"
  159. },
  160. ["mule4"] = {
  161. sizeScale = "DEFAULT",
  162. engineUpgradeRequired = "DEFAULT",
  163. intervalType = 1,
  164. particleType = 1,
  165. sizeReduction = 100,
  166. particleDuration = "DEFAULT"
  167. },
  168. ["packer"] = {
  169. sizeScale = "DEFAULT",
  170. engineUpgradeRequired = "DEFAULT",
  171. intervalType = 1,
  172. particleType = 1,
  173. sizeReduction = 100,
  174. particleDuration = "DEFAULT"
  175. },
  176. ["phantom"] = {
  177. sizeScale = "DEFAULT",
  178. engineUpgradeRequired = "DEFAULT",
  179. intervalType = 1,
  180. particleType = 1,
  181. sizeReduction = 100,
  182. particleDuration = "DEFAULT"
  183. },
  184. ["phantom2"] = {
  185. sizeScale = "DEFAULT",
  186. engineUpgradeRequired = "DEFAULT",
  187. intervalType = 1,
  188. particleType = 1,
  189. sizeReduction = 100,
  190. particleDuration = "DEFAULT"
  191. },
  192. ["phantom3"] = {
  193. sizeScale = "DEFAULT",
  194. engineUpgradeRequired = "DEFAULT",
  195. intervalType = 1,
  196. particleType = 1,
  197. sizeReduction = 100,
  198. particleDuration = "DEFAULT"
  199. },
  200. ["pounder"] = {
  201. sizeScale = "DEFAULT",
  202. engineUpgradeRequired = "DEFAULT",
  203. intervalType = 1,
  204. particleType = 1,
  205. sizeReduction = 100,
  206. particleDuration = "DEFAULT"
  207. },
  208. ["pounder2"] = {
  209. sizeScale = "DEFAULT",
  210. engineUpgradeRequired = "DEFAULT",
  211. intervalType = 1,
  212. particleType = 1,
  213. sizeReduction = 100,
  214. particleDuration = "DEFAULT"
  215. },
  216. ["stockade"] = {
  217. sizeScale = "DEFAULT",
  218. engineUpgradeRequired = "DEFAULT",
  219. intervalType = 1,
  220. particleType = 1,
  221. sizeReduction = 100,
  222. particleDuration = "DEFAULT"
  223. },
  224. ["stockade3"] = {
  225. sizeScale = "DEFAULT",
  226. engineUpgradeRequired = "DEFAULT",
  227. intervalType = 1,
  228. particleType = 1,
  229. sizeReduction = 100,
  230. particleDuration = "DEFAULT"
  231. },
  232. ["terbyte"] = {
  233. sizeScale = "DEFAULT",
  234. engineUpgradeRequired = "DEFAULT",
  235. intervalType = 1,
  236. particleType = 1,
  237. sizeReduction = 100,
  238. particleDuration = "DEFAULT"
  239. },
  240. ["bulldozer"] = {
  241. sizeScale = "DEFAULT",
  242. engineUpgradeRequired = "DEFAULT",
  243. intervalType = 1,
  244. particleType = 1,
  245. sizeReduction = 100,
  246. particleDuration = "DEFAULT"
  247. },
  248. ["cutter"] = {
  249. sizeScale = "DEFAULT",
  250. engineUpgradeRequired = "DEFAULT",
  251. intervalType = 1,
  252. particleType = 1,
  253. sizeReduction = 100,
  254. particleDuration = "DEFAULT"
  255. },
  256. ["dump"] = {
  257. sizeScale = "DEFAULT",
  258. engineUpgradeRequired = "DEFAULT",
  259. intervalType = 1,
  260. particleType = 1,
  261. sizeReduction = 100,
  262. particleDuration = "DEFAULT"
  263. },
  264. ["flatbed"] = {
  265. sizeScale = "DEFAULT",
  266. engineUpgradeRequired = "DEFAULT",
  267. intervalType = 1,
  268. particleType = 1,
  269. sizeReduction = 100,
  270. particleDuration = "DEFAULT"
  271. },
  272. ["handler"] = {
  273. sizeScale = "DEFAULT",
  274. engineUpgradeRequired = "DEFAULT",
  275. intervalType = 1,
  276. particleType = 1,
  277. sizeReduction = 100,
  278. particleDuration = "DEFAULT"
  279. },
  280. ["mixer"] = {
  281. sizeScale = "DEFAULT",
  282. engineUpgradeRequired = "DEFAULT",
  283. intervalType = 1,
  284. particleType = 1,
  285. sizeReduction = 100,
  286. particleDuration = "DEFAULT"
  287. },
  288. ["mixer2"] = {
  289. sizeScale = "DEFAULT",
  290. engineUpgradeRequired = "DEFAULT",
  291. intervalType = 1,
  292. particleType = 1,
  293. sizeReduction = 100,
  294. particleDuration = "DEFAULT"
  295. },
  296. ["rubble"] = {
  297. sizeScale = "DEFAULT",
  298. engineUpgradeRequired = "DEFAULT",
  299. intervalType = 1,
  300. particleType = 1,
  301. sizeReduction = 100,
  302. particleDuration = "DEFAULT"
  303. },
  304. ["tiptruck"] = {
  305. sizeScale = "DEFAULT",
  306. engineUpgradeRequired = "DEFAULT",
  307. intervalType = 1,
  308. particleType = 1,
  309. sizeReduction = 100,
  310. particleDuration = "DEFAULT"
  311. },
  312. ["tiptruck2"] = {
  313. sizeScale = "DEFAULT",
  314. engineUpgradeRequired = "DEFAULT",
  315. intervalType = 1,
  316. particleType = 1,
  317. sizeReduction = 100,
  318. particleDuration = "DEFAULT"
  319. },
  320. ["barracks"] = {
  321. sizeScale = "DEFAULT",
  322. engineUpgradeRequired = "DEFAULT",
  323. intervalType = 1,
  324. particleType = 1,
  325. sizeReduction = 100,
  326. particleDuration = "DEFAULT"
  327. },
  328. ["barracks2"] = {
  329. sizeScale = "DEFAULT",
  330. engineUpgradeRequired = "DEFAULT",
  331. intervalType = 1,
  332. particleType = 1,
  333. sizeReduction = 100,
  334. particleDuration = "DEFAULT"
  335. },
  336. ["barracks3"] = {
  337. sizeScale = "DEFAULT",
  338. engineUpgradeRequired = "DEFAULT",
  339. intervalType = 1,
  340. particleType = 1,
  341. sizeReduction = 100,
  342. particleDuration = "DEFAULT"
  343. },
  344.  
  345. ["towtruck2"] = {
  346. sizeScale = "DEFAULT",
  347. engineUpgradeRequired = "DEFAULT",
  348. intervalType = 1,
  349. particleType = 1,
  350. sizeReduction = 100,
  351. particleDuration = "DEFAULT"
  352. },
  353. ["towtruck"] = {
  354. sizeScale = "DEFAULT",
  355. engineUpgradeRequired = "DEFAULT",
  356. intervalType = 1,
  357. particleType = 1,
  358. sizeReduction = 100,
  359. particleDuration = "DEFAULT"
  360. },
  361. ["scrap"] = {
  362. sizeScale = "DEFAULT",
  363. engineUpgradeRequired = "DEFAULT",
  364. intervalType = 1,
  365. particleType = 1,
  366. sizeReduction = 100,
  367. particleDuration = "DEFAULT"
  368. },
  369. ["sadler"] = {
  370. sizeScale = "DEFAULT",
  371. engineUpgradeRequired = "DEFAULT",
  372. intervalType = 1,
  373. particleType = 1,
  374. sizeReduction = 100,
  375. particleDuration = "DEFAULT"
  376. },
  377. ["utillitruck3"] = {
  378. sizeScale = "DEFAULT",
  379. engineUpgradeRequired = "DEFAULT",
  380. intervalType = 1,
  381. particleType = 1,
  382. sizeReduction = 100,
  383. particleDuration = "DEFAULT"
  384. },
  385. ["slamtruck"] = {
  386. sizeScale = "DEFAULT",
  387. engineUpgradeRequired = "DEFAULT",
  388. intervalType = 1,
  389. particleType = 1,
  390. sizeReduction = 100,
  391. particleDuration = "DEFAULT"
  392. },
  393. ["utillitruck"] = {
  394. sizeScale = "DEFAULT",
  395. engineUpgradeRequired = "DEFAULT",
  396. intervalType = 1,
  397. particleType = 1,
  398. sizeReduction = 100,
  399. particleDuration = "DEFAULT"
  400. },
  401. ["utillitruck2"] = {
  402. sizeScale = "DEFAULT",
  403. engineUpgradeRequired = "DEFAULT",
  404. intervalType = 1,
  405. particleType = 1,
  406. sizeReduction = 100,
  407. particleDuration = "DEFAULT"
  408. },
  409. ["bison"] = {
  410. sizeScale = "DEFAULT",
  411. engineUpgradeRequired = "DEFAULT",
  412. intervalType = 1,
  413. particleType = 1,
  414. sizeReduction = 100,
  415. particleDuration = "DEFAULT"
  416. },
  417. ["bison2"] = {
  418. sizeScale = "DEFAULT",
  419. engineUpgradeRequired = "DEFAULT",
  420. intervalType = 1,
  421. particleType = 1,
  422. sizeReduction = 100,
  423. particleDuration = "DEFAULT"
  424. },
  425. ["bison3"] = {
  426. sizeScale = "DEFAULT",
  427. engineUpgradeRequired = "DEFAULT",
  428. intervalType = 1,
  429. particleType = 1,
  430. sizeReduction = 100,
  431. particleDuration = "DEFAULT"
  432. },
  433. ["boxville"] = {
  434. sizeScale = "DEFAULT",
  435. engineUpgradeRequired = "DEFAULT",
  436. intervalType = 1,
  437. particleType = 1,
  438. sizeReduction = 100,
  439. particleDuration = "DEFAULT"
  440. },
  441. ["bobcatxl"] = {
  442. sizeScale = "DEFAULT",
  443. engineUpgradeRequired = "DEFAULT",
  444. intervalType = 1,
  445. particleType = 1,
  446. sizeReduction = 100,
  447. particleDuration = "DEFAULT"
  448. },
  449. ["boxville2"] = {
  450. sizeScale = "DEFAULT",
  451. engineUpgradeRequired = "DEFAULT",
  452. intervalType = 1,
  453. particleType = 1,
  454. sizeReduction = 100,
  455. particleDuration = "DEFAULT"
  456. },
  457. ["boxville3"] = {
  458. sizeScale = "DEFAULT",
  459. engineUpgradeRequired = "DEFAULT",
  460. intervalType = 1,
  461. particleType = 1,
  462. sizeReduction = 100,
  463. particleDuration = "DEFAULT"
  464. },
  465. ["boxville4"] = {
  466. sizeScale = "DEFAULT",
  467. engineUpgradeRequired = "DEFAULT",
  468. intervalType = 1,
  469. particleType = 1,
  470. sizeReduction = 100,
  471. particleDuration = "DEFAULT"
  472. },
  473. ["boxville5"] = {
  474. sizeScale = "DEFAULT",
  475. engineUpgradeRequired = "DEFAULT",
  476. intervalType = 1,
  477. particleType = 1,
  478. sizeReduction = 100,
  479. particleDuration = "DEFAULT"
  480. },
  481. ["camper"] = {
  482. sizeScale = "DEFAULT",
  483. engineUpgradeRequired = "DEFAULT",
  484. intervalType = 1,
  485. particleType = 1,
  486. sizeReduction = 100,
  487. particleDuration = "DEFAULT"
  488. },
  489.  
  490. }
  491.  
  492.  
  493.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement