Advertisement
Guest User

Untitled

a guest
Jun 9th, 2023
2,957
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.49 KB | None | 0 0
  1. Config = {}
  2.  
  3.  
  4. Config.alternativeIdentifier = {
  5. enabled = true,
  6. identifier = "license" -- OPTIONS: license, xbl, live, discord, fivem, license2
  7. }
  8.  
  9. Config.debugMode = {
  10. debug = false,
  11. }
  12.  
  13. Config.sqlDriver = "mysql"
  14.  
  15. --- SETTINGS FOR ESX
  16. Config.esxSettings = {
  17. enabled = false,
  18. oldEsx = false,
  19. account = 'money',
  20. }
  21.  
  22. --- SETTINGS FOR QBCORE
  23. Config.qbSettings = {
  24. enabled = true,
  25. UseNewQBExport = true, -- Make sure to uncomment the old export inside fxmanifest.lua if you're still using it
  26. account = 'cash',
  27. }
  28.  
  29. Config.target = {
  30. enabled = true,
  31. system = 'qb-target' -- 'qtarget' or 'qb-target' (Other systems might work as well)
  32. }
  33.  
  34. Config.job = {
  35. enabled = true,
  36. jobName = 'mower',
  37. }
  38.  
  39. Config.rocksAmount = {
  40. min = 5, -- Minimal amount of rocks to spawn
  41. max = 10, -- Maximal amount of rocks to spawn
  42. damagePerRock = 50.0, -- Damage to mower per one rock
  43. }
  44.  
  45. Config.grassAmount = {
  46. min = 30, -- Minimal amount of grass to spawn
  47. max = 50, -- Maximal amount of grass to spawn
  48. }
  49.  
  50. Config.percentage = {
  51. enabled = false, -- toggle turn on/off this feature
  52. minPercent = 0.15, -- what percent of grass cut is acceptable to get payed
  53. }
  54.  
  55. Config.mowerMovingAnim = {
  56. duration = 2000
  57. }
  58.  
  59. Config.grassModels = {
  60. --'prop_veg_grass_02_a',
  61. 'prop_veg_grass_01_a',
  62. 'prop_grass_dry_02',
  63. 'prop_veg_grass_01_c',
  64. }
  65.  
  66. Config.rockModels = {
  67. 'rock_4_cl_2_2',
  68. }
  69.  
  70. Config.vehiclesModels = {
  71. truck = 'sadler',
  72. trailer = 'trailersmall',
  73. mower = 'mower'
  74. }
  75.  
  76. Config.vehiclesSpawning = {
  77. truck = {
  78. x = -173.1445,
  79. y = -51.271,
  80. z = 53.492,
  81. heading = 157.06
  82. },
  83. trailer = {
  84. x = -171.5,
  85. y = -45.703,
  86. z = 52.54393,
  87. heading = 78.694
  88. }
  89. }
  90.  
  91. Config.jobMarkersAndBlips = {
  92. ['distanceJobMarker'] = 20.0 -- Marker radius
  93. ,
  94. ['jobMarkerColor'] = {
  95. r = 0, -- red
  96. g = 100, -- green
  97. b = 0, -- blue
  98. a = 100, -- alpha/transparency
  99. },
  100. --(coords, sprite, color, alpha, scale, message)
  101. ['jobBlipSettings'] = {
  102. --headquarters = {
  103. -- x = 1962.2,
  104. -- y = 5184.8,
  105. -- z = 47.9,
  106. -- heading = 247.88,
  107. --},
  108. headquarters = {
  109. x = -153.903,
  110. y = -41.235,
  111. z = 54.326,
  112. heading = 95.497
  113. },
  114.  
  115. configure = {
  116. sprite = 71,
  117. color = 25,
  118. alpha = 255,
  119. scale = 1.0,
  120. }
  121. },
  122. }
  123.  
  124.  
  125. Config.locations = {
  126. --1
  127. {
  128. coords = {
  129. x = -1315.29,
  130. y = 172.92,
  131. z = 58.02
  132. },
  133. pedCoords = {
  134. x = -1341.66,
  135. y = 161.57,
  136. z = 57.79,
  137. heading = 297.0
  138. },
  139. radius = {
  140. from = -10,
  141. to = 10,
  142. },
  143. blacklistedAreas = {
  144.  
  145. }
  146. },
  147. --2
  148. {
  149. coords = {
  150. x = -782.512,
  151. y = -940.36,
  152. z = 17.48
  153. },
  154. pedCoords = {
  155. x = -769.69,
  156. y = -932.81,
  157. z = 17.94,
  158. heading = 160.7
  159. },
  160. radius = {
  161. from = -10,
  162. to = 10,
  163. },
  164. blacklistedAreas = {
  165.  
  166. }
  167.  
  168. },
  169. --3
  170. {
  171. coords = {
  172. x = -1051.695,
  173. y = -683.10,
  174. z = 22.844
  175. },
  176. pedCoords = {
  177.  
  178. x = -1054.36,
  179. y = -703.99,
  180. z = 20.94,
  181. heading = 287.54
  182. },
  183. radius = {
  184. from = -10,
  185. to = 10,
  186. },
  187. blacklistedAreas = {
  188.  
  189. }
  190.  
  191.  
  192. },
  193.  
  194.  
  195. --4--
  196. {
  197. coords = {
  198. x = -1301.893,
  199. y = -1435.82,
  200. z = 4.21
  201. },
  202. pedCoords = {
  203. x = -1301.83,
  204. y = -1419.19,
  205. z = 4.54,
  206. heading = 352.6
  207. },
  208. radius = {
  209. from = -10,
  210. to = 10,
  211. },
  212. blacklistedAreas = {
  213.  
  214. }
  215. },
  216. --5
  217.  
  218.  
  219. {
  220. coords = {
  221. x = -1329.69,
  222. y = -1360.884,
  223. z = 4.425
  224. },
  225. pedCoords = {
  226. x = -1324.43,
  227. y = -1356.55,
  228. z = 4.79,
  229. heading = 279.28
  230. },
  231. radius = {
  232. from = -10,
  233. to = 10,
  234. },
  235. blacklistedAreas = {
  236.  
  237. }
  238. },
  239. --6
  240. {
  241. coords = {
  242. x = -810.15,
  243. y = 861.17,
  244. z = 202.59
  245. },
  246. pedCoords = {
  247. x = -799.35,
  248. y = 865.67,
  249. z = 203.16,
  250. heading = 132.41
  251. },
  252. radius = {
  253. from = -10,
  254. to = 10,
  255. },
  256. blacklistedAreas = {
  257.  
  258. }
  259. },
  260. --7
  261. {
  262. coords = {
  263. x = 1010.668,
  264. y = 226.648,
  265. z = 82.904
  266. },
  267. pedCoords = {
  268. x = 1007.966,
  269. y = 219.4,
  270. z = 82.29,
  271. heading = 239.159
  272. },
  273. radius = {
  274. from = -10,
  275. to = 10,
  276. },
  277. blacklistedAreas = {
  278. {
  279. x = 1002.91,
  280. y = 219.673,
  281. z = 82.77,
  282. radius = 2.8
  283. },
  284. {
  285. x = 1014.977,
  286. y = 231.231,
  287. z = 82.986,
  288. radius = 4.0
  289. }
  290. }
  291. },
  292.  
  293. --8
  294. {
  295. coords = {
  296. x = 915.355,
  297. y = 109.89,
  298. z = 79.02
  299. },
  300. pedCoords = {
  301. x = 915.355,
  302. y = 109.89,
  303. z = 79.02,
  304. heading = 155.35
  305. },
  306. radius = {
  307. from = -10,
  308. to = 10,
  309. },
  310. blacklistedAreas = {
  311.  
  312. }
  313. },
  314. --9
  315. {
  316. coords = {
  317. x = 1276.0,
  318. y = -643.50,
  319. z = 68.14,
  320. },
  321. pedCoords = {
  322. x = 1278.781,
  323. y = -651.6232,
  324. z = 67.72,
  325. heading = 338.68,
  326. },
  327. radius = {
  328. from = -7,
  329. to = 7,
  330. },
  331. blacklistedAreas = {
  332.  
  333. }
  334. },
  335. --10
  336. {
  337. coords = {
  338. x = -678.364,
  339. y = -1853.236,
  340. z = 29.523
  341. },
  342. pedCoords = {
  343. x = -689.702,
  344. y = -1843.449,
  345. z = 29.00031,
  346. heading = 202.093
  347. },
  348. radius = {
  349. from = -7,
  350. to = 7
  351. },
  352. blacklistedAreas = {
  353.  
  354. }
  355. },
  356. --11
  357. {
  358. coords = {
  359. x = -699.614,
  360. y = -1655.592,
  361. z = 25.166
  362. },
  363. pedCoords = {
  364. x = -687.185,
  365. y = -1661.338,
  366. z = 24.897,
  367. heading = 15.525
  368. },
  369. radius = {
  370. from = -7,
  371. to = 7
  372. },
  373. blacklistedAreas = {
  374.  
  375. }
  376. },
  377. --12
  378. {
  379. coords = {
  380. x = -606.011,
  381. y = -1312.524,
  382. z = 11.864
  383. },
  384. pedCoords = {
  385. x = -609.720,
  386. y = -1302.114,
  387. z = 11.446,
  388. heading = 159.302
  389. },
  390. radius = {
  391. from = -7,
  392. to = 7
  393. },
  394. blacklistedAreas = {
  395.  
  396. }
  397. },
  398. --13
  399. {
  400. coords = {
  401. x = -793.808,
  402. y = -25.058,
  403. z = 38.910
  404. },
  405. pedCoords = {
  406. x = -790.582,
  407. y = -36.146,
  408. z = 37.987,
  409. heading = 52.070
  410. },
  411. radius = {
  412. from = -7,
  413. to = 7
  414. },
  415. blacklistedAreas = {
  416.  
  417. }
  418. },
  419. --14
  420. {
  421. coords = {
  422. x = -677.253,
  423. y = -35.667,
  424. z = 38.372
  425. },
  426. pedCoords = {
  427. x = -678.201,
  428. y = -45.674,
  429. z = 38.131,
  430. heading = 105.680
  431. },
  432. radius = {
  433. from = -7,
  434. to = 7
  435. },
  436. blacklistedAreas = {
  437.  
  438. }
  439. },
  440.  
  441.  
  442. }
  443.  
  444. Config.mainJobPlace = {
  445. showJobPlaceBlip = true, -- choose to show blip or not
  446. detectDistance = 30.0 -- distance to detect vehicles from (to return deposit for vehicles)
  447. }
  448.  
  449. Config.levelNames = {
  450. [1] = { name = "Beginner" },
  451. [2] = { name = "Intermediate" },
  452. [3] = { name = "Advanced" },
  453. [4] = { name = "Master" },
  454. [5] = { name = "Grass Artist" }
  455. }
  456.  
  457.  
  458. Config.experience = {
  459. perRock = 1, -- Experience increasement for single rock picked up
  460. perGrass = 1, -- Experience increasement for single grass cut
  461. extra = 10, -- Extra experiece player gets for fully cutting the grass.
  462. }
  463.  
  464. Config.payments = {
  465. reward = 5, -- payment for one cut grass
  466. --reward = math.random(5, 15), -- payment for job is from interval [5 to 15]
  467. bonus = 70,
  468. depositForVehicles = 10,
  469. }
  470.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement