Advertisement
Guest User

Untitled

a guest
Feb 27th, 2020
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 61.88 KB | None | 0 0
  1.  
  2. local cfg = {}
  3.  
  4. -- define each group with a set of permissions
  5. -- _config property:
  6. --- gtype (optional): used to have only one group with the same gtype per player (example: a job gtype to only have one job)
  7. --- onspawn (optional): function(player) (called when the player spawn with the group)
  8. --- onjoin (optional): function(player) (called when the player join the group)
  9. --- onleave (optional): function(player) (called when the player leave the group)
  10. --- (you have direct access to vRP and vRPclient, the tunnel to client, in the config callbacks)
  11.  
  12.  
  13. cfg.groups = {
  14. ["superadmin"] = {
  15. _config = {onspawn = function(player) vRPclient.notify(player,{"Você é um SuperAdmin."}) end},
  16. "player.group.add",
  17. "player.group.remove",
  18. "player.giveitem",
  19. "sedex.job",
  20. "lance.eas",
  21. "teste.weapons",
  22. "player.menu",
  23. "grove.doors",
  24. "emergency.service"
  25. },
  26. ["admin"] = {
  27. "admin.tickets",
  28. "admin.announce",
  29. "player.list",
  30. "player.whitelist",
  31. "admin.revive",
  32. "player.unwhitelist",
  33. "player.kick",
  34. "player.ban",
  35. "player.unban",
  36. "player.noclip",
  37. "player.custom_emote",
  38. "armas.traficante",
  39. "player.custom_sound",
  40. "player.display_custom",
  41. "police.menu_interaction",
  42. "player.coords",
  43. "player.tptome",
  44. "admin.deleteveh",
  45. "player.blips",
  46. "admin.tptowaypoint",
  47. "player.cmd_mask",
  48. "admin.easy_unjail",
  49. "police.door",
  50. "admin.spikes",
  51. "player.tpto"
  52. },
  53. ["moderador"] = {
  54. _config = {onspawn = function(player) vRPclient.notify(player,{"Você é um ~r~moderador."}) end},
  55. "player.group.add",
  56. "player.group.remove",
  57. "player.whitelist",
  58. "player.unwhitelist",
  59. "player.noclip",
  60. "police.door",
  61. "player.tptome",
  62. "player.list",
  63. "police.license",
  64. "police.licensearm",
  65. "police.menu_interaction",
  66. "player.kick",
  67. "player.tpto"
  68. },
  69. -- the group user is auto added to all logged players
  70. ["user"] = {
  71. "player.permissao",
  72. "coma.caller",
  73. "coma.skipper",
  74. "police.menu",
  75. "venda.todos",
  76. "spawn.cloakroom",
  77. "civil.impostos",
  78. "vip.hospital",
  79. "player.phone",
  80. "caminhao.garagem",
  81. "player.loot",
  82. "player.store_armor",
  83. "player.menu",
  84. "player.fix_haircut",
  85. "player.emotes",
  86. "player.player_menu",
  87. "player.store_money",
  88. "player.store_weapons",
  89. "player.check",
  90. "police.check",
  91. "player.calladmin",
  92. "spawn.garagem",
  93. "emergency_heal",
  94. "player.skip_coma",
  95. "police.seizable" -- can be seized
  96. },
  97.  
  98. --------------------------------------------------------------------------------------------------------------------------------------------
  99. -- Sistema de doaçoes --
  100. --------------------------------------------------------------------------------------------------------------------------------------------
  101.  
  102. ["vip-supremo"] = {
  103. _config = {onspawn = function(player) vRPclient.notify(player,{"Você é um ~r~Doador."}) end},
  104. "donatesupremo.paycheck",
  105. "dinheiromarcado.lavar",
  106. "donater.vehicle"
  107. },
  108. ["vip-mestre"] = {
  109. _config = {onspawn = function(player) vRPclient.notify(player,{"Você é um ~r~Doador."}) end},
  110. "donatemestre.paycheck",
  111. "dinheiromarcado.lavar",
  112. "donater.vehicle"
  113. },
  114. ["vip-consagrado"] = {
  115. _config = {onspawn = function(player) vRPclient.notify(player,{"Você é um ~r~Doador."}) end},
  116. "donateconsagrado.paycheck",
  117. "dinheiromarcado.lavar",
  118. "donater.loadshop"
  119. },
  120. ["vip-inicial"] = {
  121. _config = {onspawn = function(player) vRPclient.notify(player,{"Você é um ~r~Doador."}) end},
  122. "donateinicial.paycheck",
  123. "donater.loadshop"
  124. },
  125.  
  126. --------------------------------------------------------------------------------------------------------------------------------------------
  127. ["Recruta [ROCAM]"] = {
  128. _config = {
  129. gtype = "job",
  130. onjoin = function(player) vRPclient.setCop(player,{true}) end,
  131. onspawn = function(player) vRPclient.setCop(player,{true}) end,
  132. onleave = function(player) vRPclient.setCop(player,{false}) end
  133. },
  134. "Equipar.Recruta",
  135. "radio.police",
  136. "police.ver.oab",
  137. "player.list",
  138. "police.base",
  139. "police.easy_unjail",
  140. "rocam.garagem",
  141. "cop",
  142. "police.easy_fine",
  143. "police.easy_cuff",
  144. "police.drag",
  145. "police.menu_interaction",
  146. "rocam.fardas",
  147. "police.door",
  148. "police.menu",
  149. "police.pc",
  150. "radar.pass",
  151. "holdup.police",
  152. "police.handcuff",
  153. "police.putinveh",
  154. "police.getoutveh",
  155. "police.check",
  156. "police.service",
  157. "police.wanted",
  158. "police.license",
  159. "police.licensearm",
  160. "bank.police",
  161. "recpmesp.paycheck",
  162. "police.seize.weapons",
  163. "police.seize.items",
  164. "police.jail",
  165. "police.fine",
  166. "police.announce",
  167. "police.askid",
  168. "recrutapmesp.paycheck",
  169. "police.weapon_search",
  170. "-police.store_weapons",
  171. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  172. },
  173.  
  174. ["Soldado [ROCAM]"] = {
  175. _config = {
  176. gtype = "job",
  177. onjoin = function(player) vRPclient.setCop(player,{true}) end,
  178. onspawn = function(player) vRPclient.setCop(player,{true}) end,
  179. onleave = function(player) vRPclient.setCop(player,{false}) end
  180. },
  181. "Equipar.Soldado",
  182. "police.ver.oab",
  183. "player.list",
  184. "police.base",
  185. "police.easy_unjail",
  186. "police.easy_fine",
  187. "radio.police",
  188. "nivelum.loadshop",
  189. "police.easy_cuff",
  190. "police.drag",
  191. "police.menu_interaction",
  192. "rocam.fardas",
  193. "niveldois.loadshop",
  194. "police.door",
  195. "police.menu",
  196. "police.pc",
  197. "rocam.garagem",
  198. "radar.pass",
  199. "holdup.police",
  200. "pm1.garagem",
  201. "police.handcuff",
  202. "soldpmesp.paycheck",
  203. "cop",
  204. "police.putinveh",
  205. "police.getoutveh",
  206. "police.check",
  207. "police.service",
  208. "police.wanted",
  209. "police.license",
  210. "police.licensearm",
  211. "bank.police",
  212. "police.seize.weapons",
  213. "police.seize.items",
  214. "police.jail",
  215. "police.fine",
  216. "police.announce",
  217. "police.askid",
  218. "police.weapon_search",
  219. "-police.store_weapons",
  220. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  221. },
  222. ["Cabo [ROCAM]"] = {
  223. _config = {
  224. gtype = "job",
  225. onjoin = function(player) vRPclient.setCop(player,{true}) end,
  226. onspawn = function(player) vRPclient.setCop(player,{true}) end,
  227. onleave = function(player) vRPclient.setCop(player,{false}) end
  228. },
  229. "Equipar.Cabo",
  230. "player.list",
  231. "police.base",
  232. "police.ver.oab",
  233. "police.easy_unjail",
  234. "niveldois.loadshop",
  235. "police.easy_fine",
  236. "rocam.garagem",
  237. "police.easy_cuff",
  238. "radio.police",
  239. "police.drag",
  240. "police.menu_interaction",
  241. "niveldois.loadshop",
  242. "cop",
  243. "police.door",
  244. "police.menu",
  245. "police.pc",
  246. "radar.pass",
  247. "holdup.police",
  248. "pm1.garagem",
  249. "police.handcuff",
  250. "rocam.fardas",
  251. "police.putinveh",
  252. "police.getoutveh",
  253. "police.check",
  254. "cabopmesp.paycheck",
  255. "police.service",
  256. "police.wanted",
  257. "police.license",
  258. "police.licensearm",
  259. "bank.police",
  260. "police.seize.weapons",
  261. "police.seize.items",
  262. "police.jail",
  263. "police.fine",
  264. "police.announce",
  265. "police.askid",
  266. "soldadopmesp.paycheck",
  267. "police.weapon_search",
  268. "-police.store_weapons",
  269. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  270. },
  271. ["3º Sargento [ROCAM]"] = {
  272. _config = {
  273. gtype = "job",
  274. onjoin = function(player) vRPclient.setCop(player,{true}) end,
  275. onspawn = function(player) vRPclient.setCop(player,{true}) end,
  276. onleave = function(player) vRPclient.setCop(player,{false}) end
  277. },
  278. "Equipar.Sargento",
  279. "player.list",
  280. "police.base",
  281. "cop",
  282. "police.easy_unjail",
  283. "police.easy_fine",
  284. "radio.police",
  285. "rocam.garagem",
  286. "police.easy_cuff",
  287. "police.drag",
  288. "police.menu_interaction",
  289. "police.ver.oab",
  290. "police.door",
  291. "niveldois.loadshop",
  292. "police.menu",
  293. "police.pc",
  294. "rocam.fardas",
  295. "radar.pass",
  296. "holdup.police",
  297. "pm1.garagem",
  298. "police.handcuff",
  299. "police.putinveh",
  300. "police.getoutveh",
  301. "police.check",
  302. "police.service",
  303. "police.wanted",
  304. "police.license",
  305. "police.licensearm",
  306. "bank.police",
  307. "police.seize.weapons",
  308. "police.seize.items",
  309. "police.jail",
  310. "police.fine",
  311. "police.announce",
  312. "police.askid",
  313. "3sargpmerj.paycheck",
  314. "police.weapon_search",
  315. "-police.store_weapons",
  316. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  317. },
  318. ["2º Sargento [ROCAM]"] = {
  319. _config = {
  320. gtype = "job",
  321. onjoin = function(player) vRPclient.setCop(player,{true}) end,
  322. onspawn = function(player) vRPclient.setCop(player,{true}) end,
  323. onleave = function(player) vRPclient.setCop(player,{false}) end
  324. },
  325. "Equipar.Sargento",
  326. "player.list",
  327. "cop",
  328. "police.base",
  329. "radio.police",
  330. "police.easy_unjail",
  331. "police.ver.oab",
  332. "police.easy_fine",
  333. "police.easy_cuff",
  334. "police.drag",
  335. "police.menu_interaction",
  336. "police.door",
  337. "rocam.garagem",
  338. "police.menu",
  339. "niveldois.loadshop",
  340. "police.pc",
  341. "rocam.fardas",
  342. "radar.pass",
  343. "holdup.police",
  344. "pm1.garagem",
  345. "police.handcuff",
  346. "police.putinveh",
  347. "police.getoutveh",
  348. "police.check",
  349. "police.service",
  350. "police.wanted",
  351. "police.license",
  352. "police.licensearm",
  353. "bank.police",
  354. "police.seize.weapons",
  355. "police.seize.items",
  356. "police.jail",
  357. "police.fine",
  358. "police.announce",
  359. "police.askid",
  360. "2sargpmesp.paycheck",
  361. "police.weapon_search",
  362. "-police.store_weapons",
  363. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  364. },
  365. ["1º Sargento [ROCAM]"] = {
  366. _config = {
  367. gtype = "job",
  368. onjoin = function(player) vRPclient.setCop(player,{true}) end,
  369. onspawn = function(player) vRPclient.setCop(player,{true}) end,
  370. onleave = function(player) vRPclient.setCop(player,{false}) end
  371. },
  372. "Equipar.Sargento",
  373. "player.list",
  374. "police.base",
  375. "police.easy_unjail",
  376. "police.easy_fine",
  377. "police.easy_cuff",
  378. "police.drag",
  379. "cop",
  380. "police.menu_interaction",
  381. "rocam.garagem",
  382. "police.ver.oab",
  383. "rocam.fardas",
  384. "radio.police",
  385. "police.door",
  386. "police.menu",
  387. "police.pc",
  388. "radar.pass",
  389. "holdup.police",
  390. "pm1.garagem",
  391. "niveldois.loadshop",
  392. "police.handcuff",
  393. "police.putinveh",
  394. "police.getoutveh",
  395. "police.check",
  396. "police.service",
  397. "police.wanted",
  398. "police.license",
  399. "police.licensearm",
  400. "bank.police",
  401. "police.seize.weapons",
  402. "police.seize.items",
  403. "police.jail",
  404. "police.fine",
  405. "police.announce",
  406. "police.askid",
  407. "1sargpmesp.paycheck",
  408. "police.weapon_search",
  409. "-police.store_weapons",
  410. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  411. },
  412. ["Capitao [ROCAM]"] = {
  413. _config = {
  414. gtype = "job",
  415. onjoin = function(player) vRPclient.setCop(player,{true}) end,
  416. onspawn = function(player) vRPclient.setCop(player,{true}) end,
  417. onleave = function(player) vRPclient.setCop(player,{false}) end
  418. },
  419. "Equipar.Capitao",
  420. "player.list",
  421. "police.base",
  422. "police.easy_unjail",
  423. "police.easy_fine",
  424. "police.ver.oab",
  425. "police.easy_cuff",
  426. "cop",
  427. "police.drag",
  428. "police.menu_interaction",
  429. "police.door",
  430. "radio.police",
  431. "police.menu",
  432. "aguia.garagem",
  433. "police.pc",
  434. "radar.pass",
  435. "niveldois.loadshop",
  436. "holdup.police",
  437. "rocam.garagem",
  438. "pm1.garagem",
  439. "police.handcuff",
  440. "rocam.fardas",
  441. "police.putinveh",
  442. "police.getoutveh",
  443. "police.check",
  444. "police.service",
  445. "police.wanted",
  446. "police.license",
  447. "police.licensearm",
  448. "bank.police",
  449. "police.seize.weapons",
  450. "police.seize.items",
  451. "police.jail",
  452. "police.fine",
  453. "police.announce",
  454. "police.askid",
  455. "cappmesp.paycheck",
  456. "police.weapon_search",
  457. "-police.store_weapons",
  458. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  459. },
  460. ["Major [ROCAM]"] = {
  461. _config = {
  462. gtype = "job",
  463. onjoin = function(player) vRPclient.setCop(player,{true}) end,
  464. onspawn = function(player) vRPclient.setCop(player,{true}) end,
  465. onleave = function(player) vRPclient.setCop(player,{false}) end
  466. },
  467. "Equipar.Major",
  468. "player.list",
  469. "police.base",
  470. "radio.police",
  471. "capitaopmerj.loadshop",
  472. "police.easy_unjail",
  473. "aguia.garagem",
  474. "rocam.fardas",
  475. "cop",
  476. "police.ver.oab",
  477. "police.easy_fine",
  478. "police.easy_cuff",
  479. "police.drag",
  480. "police.menu_interaction",
  481. "police.door",
  482. "police.menu",
  483. "police.pc",
  484. "radar.pass",
  485. "holdup.police",
  486. "niveldois.loadshop",
  487. "rocam.garagem",
  488. "pm1.garagem",
  489. "police.handcuff",
  490. "police.putinveh",
  491. "police.getoutveh",
  492. "police.check",
  493. "police.service",
  494. "police.wanted",
  495. "police.license",
  496. "police.licensearm",
  497. "bank.police",
  498. "police.seize.weapons",
  499. "police.seize.items",
  500. "police.jail",
  501. "police.fine",
  502. "police.announce",
  503. "police.askid",
  504. "police.weapon_search",
  505. "-police.store_weapons",
  506. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  507. },
  508. ["Coronel [ROCAM]"] = {
  509. _config = {
  510. gtype = "job",
  511. onjoin = function(player) vRPclient.setCop(player,{true}) end,
  512. onspawn = function(player) vRPclient.setCop(player,{true}) end,
  513. onleave = function(player) vRPclient.setCop(player,{false}) end
  514. },
  515. "Equipar.Coronel",
  516. "player.list",
  517. "police.base",
  518. "police.easy_unjail",
  519. "niveltres.loadshop",
  520. "police.easy_fine",
  521. "aguia.garagem",
  522. "police.easy_cuff",
  523. "radio.police",
  524. "police.drag",
  525. "police.menu_interaction",
  526. "police.ver.oab",
  527. "aguia.garagem",
  528. "captain.door",
  529. "rocam.fardas",
  530. "cop",
  531. "police.door",
  532. "police.menu",
  533. "police.pc",
  534. "radar.pass",
  535. "holdup.police",
  536. "pm1.garagem",
  537. "police.handcuff",
  538. "rocam.garagem",
  539. "police.putinveh",
  540. "police.getoutveh",
  541. "police.check",
  542. "police.service",
  543. "police.wanted",
  544. "police.license",
  545. "police.licensearm",
  546. "bank.police",
  547. "police.seize.weapons",
  548. "police.seize.items",
  549. "police.jail",
  550. "police.fine",
  551. "police.announce",
  552. "police.askid",
  553. "celpmesp.paycheck",
  554. "police.weapon_search",
  555. "-police.store_weapons",
  556. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  557. },
  558. ["Recruta [F.Tatica]"] = {
  559. _config = {
  560. gtype = "job",
  561. onjoin = function(player) vRPclient.setCop(player,{true}) end,
  562. onspawn = function(player) vRPclient.setCop(player,{true}) end,
  563. onleave = function(player) vRPclient.setCop(player,{false}) end
  564. },
  565. "Equipar.Recruta",
  566. "radio.police",
  567. "player.list",
  568. "police.base",
  569. "police.easy_unjail",
  570. "tatica.garagem",
  571. "cop",
  572. "police.easy_fine",
  573. "police.easy_cuff",
  574. "police.ver.oab",
  575. "police.drag",
  576. "police.menu_interaction",
  577. "taticaptr.fardas",
  578. "police.door",
  579. "police.menu",
  580. "police.pc",
  581. "radar.pass",
  582. "holdup.police",
  583. "pm1.garagem",
  584. "police.handcuff",
  585. "police.putinveh",
  586. "police.getoutveh",
  587. "police.check",
  588. "police.service",
  589. "police.wanted",
  590. "police.license",
  591. "police.licensearm",
  592. "bank.police",
  593. "recpmesp.paycheck",
  594. "police.seize.weapons",
  595. "police.seize.items",
  596. "police.jail",
  597. "police.fine",
  598. "police.announce",
  599. "police.askid",
  600. "recrutapmesp.paycheck",
  601. "police.weapon_search",
  602. "-police.store_weapons",
  603. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  604. },
  605.  
  606. ["Soldado [F.Tatica]"] = {
  607. _config = {
  608. gtype = "job",
  609. onjoin = function(player) vRPclient.setCop(player,{true}) end,
  610. onspawn = function(player) vRPclient.setCop(player,{true}) end,
  611. onleave = function(player) vRPclient.setCop(player,{false}) end
  612. },
  613. "Equipar.Soldado",
  614. "player.list",
  615. "police.base",
  616. "police.easy_unjail",
  617. "police.easy_fine",
  618. "radio.police",
  619. "nivelum.loadshop",
  620. "police.easy_cuff",
  621. "police.ver.oab",
  622. "police.drag",
  623. "police.menu_interaction",
  624. "taticaptr.fardas",
  625. "niveldois.loadshop",
  626. "police.door",
  627. "police.menu",
  628. "police.pc",
  629. "tatica.garagem",
  630. "radar.pass",
  631. "holdup.police",
  632. "pm1.garagem",
  633. "police.handcuff",
  634. "soldpmesp.paycheck",
  635. "cop",
  636. "police.putinveh",
  637. "police.getoutveh",
  638. "police.check",
  639. "police.service",
  640. "police.wanted",
  641. "police.license",
  642. "police.licensearm",
  643. "bank.police",
  644. "police.seize.weapons",
  645. "police.seize.items",
  646. "police.jail",
  647. "police.fine",
  648. "police.announce",
  649. "police.askid",
  650. "police.weapon_search",
  651. "-police.store_weapons",
  652. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  653. },
  654. ["Cabo [F.Tatica]"] = {
  655. _config = {
  656. gtype = "job",
  657. onjoin = function(player) vRPclient.setCop(player,{true}) end,
  658. onspawn = function(player) vRPclient.setCop(player,{true}) end,
  659. onleave = function(player) vRPclient.setCop(player,{false}) end
  660. },
  661. "Equipar.Cabo",
  662. "player.list",
  663. "police.base",
  664. "cabopmesp.loadshop",
  665. "police.easy_unjail",
  666. "niveldois.loadshop",
  667. "police.easy_fine",
  668. "tatica.garagem",
  669. "police.easy_cuff",
  670. "radio.police",
  671. "police.drag",
  672. "police.menu_interaction",
  673. "niveldois.loadshop",
  674. "cop",
  675. "police.door",
  676. "police.menu",
  677. "police.pc",
  678. "radar.pass",
  679. "holdup.police",
  680. "police.ver.oab",
  681. "pm1.garagem",
  682. "police.handcuff",
  683. "taticaptr.fardas",
  684. "police.putinveh",
  685. "police.getoutveh",
  686. "police.check",
  687. "cabopmesp.paycheck",
  688. "police.service",
  689. "police.wanted",
  690. "police.license",
  691. "police.licensearm",
  692. "bank.police",
  693. "police.seize.weapons",
  694. "police.seize.items",
  695. "police.jail",
  696. "police.fine",
  697. "police.announce",
  698. "police.askid",
  699. "soldadopmesp.paycheck",
  700. "police.weapon_search",
  701. "-police.store_weapons",
  702. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  703. },
  704. ["3º Sargento [F.Tatica]"] = {
  705. _config = {
  706. gtype = "job",
  707. onjoin = function(player) vRPclient.setCop(player,{true}) end,
  708. onspawn = function(player) vRPclient.setCop(player,{true}) end,
  709. onleave = function(player) vRPclient.setCop(player,{false}) end
  710. },
  711. "Equipar.Sargento",
  712. "player.list",
  713. "police.base",
  714. "cop",
  715. "police.easy_unjail",
  716. "police.easy_fine",
  717. "radio.police",
  718. "tatica.garagem",
  719. "police.easy_cuff",
  720. "police.drag",
  721. "police.menu_interaction",
  722. "police.door",
  723. "police.ver.oab",
  724. "niveldois.loadshop",
  725. "police.menu",
  726. "police.pc",
  727. "taticaptr.fardas",
  728. "radar.pass",
  729. "holdup.police",
  730. "pm1.garagem",
  731. "police.handcuff",
  732. "police.putinveh",
  733. "police.getoutveh",
  734. "police.check",
  735. "police.service",
  736. "police.wanted",
  737. "police.license",
  738. "police.licensearm",
  739. "bank.police",
  740. "police.seize.weapons",
  741. "police.seize.items",
  742. "police.jail",
  743. "police.fine",
  744. "police.announce",
  745. "police.askid",
  746. "3sargpmerj.paycheck",
  747. "police.weapon_search",
  748. "-police.store_weapons",
  749. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  750. },
  751. ["2º Sargento [F.Tatica]"] = {
  752. _config = {
  753. gtype = "job",
  754. onjoin = function(player) vRPclient.setCop(player,{true}) end,
  755. onspawn = function(player) vRPclient.setCop(player,{true}) end,
  756. onleave = function(player) vRPclient.setCop(player,{false}) end
  757. },
  758. "Equipar.Sargento",
  759. "player.list",
  760. "cop",
  761. "police.ver.oab",
  762. "police.base",
  763. "radio.police",
  764. "police.easy_unjail",
  765. "police.easy_fine",
  766. "police.easy_cuff",
  767. "police.drag",
  768. "police.menu_interaction",
  769. "police.door",
  770. "tatica.garagem",
  771. "police.menu",
  772. "niveldois.loadshop",
  773. "police.pc",
  774. "taticaptr.fardas",
  775. "radar.pass",
  776. "holdup.police",
  777. "pm1.garagem",
  778. "police.handcuff",
  779. "police.putinveh",
  780. "police.getoutveh",
  781. "police.check",
  782. "police.service",
  783. "police.wanted",
  784. "police.license",
  785. "police.licensearm",
  786. "bank.police",
  787. "police.seize.weapons",
  788. "police.seize.items",
  789. "police.jail",
  790. "police.fine",
  791. "police.announce",
  792. "police.askid",
  793. "2sargpmesp.paycheck",
  794. "police.weapon_search",
  795. "-police.store_weapons",
  796. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  797. },
  798. ["1º Sargento [F.Tatica]"] = {
  799. _config = {
  800. gtype = "job",
  801. onjoin = function(player) vRPclient.setCop(player,{true}) end,
  802. onspawn = function(player) vRPclient.setCop(player,{true}) end,
  803. onleave = function(player) vRPclient.setCop(player,{false}) end
  804. },
  805. "Equipar.Sargento",
  806. "player.list",
  807. "police.base",
  808. "police.easy_unjail",
  809. "police.easy_fine",
  810. "police.easy_cuff",
  811. "police.drag",
  812. "cop",
  813. "police.menu_interaction",
  814. "tatica.garagem",
  815. "taticaptr.fardas",
  816. "radio.police",
  817. "police.door",
  818. "police.ver.oab",
  819. "police.menu",
  820. "police.pc",
  821. "radar.pass",
  822. "holdup.police",
  823. "pm1.garagem",
  824. "niveldois.loadshop",
  825. "police.handcuff",
  826. "police.putinveh",
  827. "police.getoutveh",
  828. "police.check",
  829. "police.service",
  830. "police.wanted",
  831. "police.license",
  832. "police.licensearm",
  833. "bank.police",
  834. "police.seize.weapons",
  835. "police.seize.items",
  836. "police.jail",
  837. "police.fine",
  838. "police.announce",
  839. "police.askid",
  840. "1sargpmesp.paycheck",
  841. "police.weapon_search",
  842. "-police.store_weapons",
  843. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  844. },
  845. ["Capitao [F.Tatica]"] = {
  846. _config = {
  847. gtype = "job",
  848. onjoin = function(player) vRPclient.setCop(player,{true}) end,
  849. onspawn = function(player) vRPclient.setCop(player,{true}) end,
  850. onleave = function(player) vRPclient.setCop(player,{false}) end
  851. },
  852. "Equipar.Capitao",
  853. "player.list",
  854. "police.base",
  855. "police.easy_unjail",
  856. "police.easy_fine",
  857. "police.easy_cuff",
  858. "cop",
  859. "police.drag",
  860. "police.menu_interaction",
  861. "police.door",
  862. "police.ver.oab",
  863. "radio.police",
  864. "police.menu",
  865. "aguia.garagem",
  866. "police.pc",
  867. "radar.pass",
  868. "niveldois.loadshop",
  869. "holdup.police",
  870. "tatica.garagem",
  871. "pm1.garagem",
  872. "police.handcuff",
  873. "taticaptr.fardas",
  874. "police.putinveh",
  875. "police.getoutveh",
  876. "police.check",
  877. "police.service",
  878. "police.wanted",
  879. "police.license",
  880. "police.licensearm",
  881. "bank.police",
  882. "police.seize.weapons",
  883. "police.seize.items",
  884. "police.jail",
  885. "police.fine",
  886. "police.announce",
  887. "police.askid",
  888. "cappmesp.paycheck",
  889. "police.weapon_search",
  890. "-police.store_weapons",
  891. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  892. },
  893. ["Major [F.Tatica]"] = {
  894. _config = {
  895. gtype = "job",
  896. onjoin = function(player) vRPclient.setCop(player,{true}) end,
  897. onspawn = function(player) vRPclient.setCop(player,{true}) end,
  898. onleave = function(player) vRPclient.setCop(player,{false}) end
  899. },
  900. "Equipar.Major",
  901. "player.list",
  902. "police.base",
  903. "radio.police",
  904. "capitaopmerj.loadshop",
  905. "police.easy_unjail",
  906. "aguia.garagem",
  907. "taticaptr.fardas",
  908. "cop",
  909. "police.easy_fine",
  910. "police.easy_cuff",
  911. "police.drag",
  912. "police.ver.oab",
  913. "police.menu_interaction",
  914. "police.door",
  915. "police.menu",
  916. "police.pc",
  917. "radar.pass",
  918. "holdup.police",
  919. "niveldois.loadshop",
  920. "tatica.garagem",
  921. "pm1.garagem",
  922. "police.handcuff",
  923. "police.putinveh",
  924. "police.getoutveh",
  925. "police.check",
  926. "police.service",
  927. "police.wanted",
  928. "police.license",
  929. "police.licensearm",
  930. "bank.police",
  931. "police.seize.weapons",
  932. "police.seize.items",
  933. "police.jail",
  934. "police.fine",
  935. "police.announce",
  936. "police.askid",
  937. "police.weapon_search",
  938. "-police.store_weapons",
  939. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  940. },
  941. ["Coronel [F.Tatica]"] = {
  942. _config = {
  943. gtype = "job",
  944. onjoin = function(player) vRPclient.setCop(player,{true}) end,
  945. onspawn = function(player) vRPclient.setCop(player,{true}) end,
  946. onleave = function(player) vRPclient.setCop(player,{false}) end
  947. },
  948. "Equipar.Coronel",
  949. "player.list",
  950. "police.base",
  951. "police.easy_unjail",
  952. "niveltres.loadshop",
  953. "police.easy_fine",
  954. "aguia.garagem",
  955. "police.easy_cuff",
  956. "radio.police",
  957. "police.drag",
  958. "police.menu_interaction",
  959. "aguia.garagem",
  960. "captain.door",
  961. "police.ver.oab",
  962. "taticaptr.fardas",
  963. "cop",
  964. "police.door",
  965. "police.menu",
  966. "police.pc",
  967. "radar.pass",
  968. "holdup.police",
  969. "pm1.garagem",
  970. "police.handcuff",
  971. "tatica.garagem",
  972. "police.putinveh",
  973. "police.getoutveh",
  974. "police.check",
  975. "police.service",
  976. "police.wanted",
  977. "police.license",
  978. "police.licensearm",
  979. "bank.police",
  980. "police.seize.weapons",
  981. "police.seize.items",
  982. "police.jail",
  983. "police.fine",
  984. "police.announce",
  985. "police.askid",
  986. "celpmesp.paycheck",
  987. "police.weapon_search",
  988. "-police.store_weapons",
  989. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  990. },
  991. --------------------------------------
  992. ["Recruta [R.Patrulha]"] = {
  993. _config = {
  994. gtype = "job",
  995. onjoin = function(player) vRPclient.setCop(player,{true}) end,
  996. onspawn = function(player) vRPclient.setCop(player,{true}) end,
  997. onleave = function(player) vRPclient.setCop(player,{false}) end
  998. },
  999. "Equipar.Recruta",
  1000. "radio.police",
  1001. "player.list",
  1002. "police.base",
  1003. "police.easy_unjail",
  1004. "rpatrulha.garagem",
  1005. "cop",
  1006. "police.easy_fine",
  1007. "police.easy_cuff",
  1008. "police.drag",
  1009. "police.menu_interaction",
  1010. "radioptr.fardas",
  1011. "police.door",
  1012. "police.menu",
  1013. "police.pc",
  1014. "police.ver.oab",
  1015. "radar.pass",
  1016. "holdup.police",
  1017. "pm1.garagem",
  1018. "police.handcuff",
  1019. "police.putinveh",
  1020. "police.getoutveh",
  1021. "police.check",
  1022. "police.service",
  1023. "police.wanted",
  1024. "police.license",
  1025. "police.licensearm",
  1026. "bank.police",
  1027. "recpmesp.paycheck",
  1028. "police.seize.weapons",
  1029. "police.seize.items",
  1030. "police.jail",
  1031. "police.fine",
  1032. "police.announce",
  1033. "police.askid",
  1034. "recrutapmesp.paycheck",
  1035. "police.weapon_search",
  1036. "-police.store_weapons",
  1037. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  1038. },
  1039.  
  1040. ["Soldado [R.Patrulha]"] = {
  1041. _config = {
  1042. gtype = "job",
  1043. onjoin = function(player) vRPclient.setCop(player,{true}) end,
  1044. onspawn = function(player) vRPclient.setCop(player,{true}) end,
  1045. onleave = function(player) vRPclient.setCop(player,{false}) end
  1046. },
  1047. "Equipar.Soldado",
  1048. "player.list",
  1049. "police.base",
  1050. "police.easy_unjail",
  1051. "police.easy_fine",
  1052. "radio.police",
  1053. "police.ver.oab",
  1054. "nivelum.loadshop",
  1055. "police.easy_cuff",
  1056. "police.drag",
  1057. "police.menu_interaction",
  1058. "radioptr.fardas",
  1059. "niveldois.loadshop",
  1060. "police.door",
  1061. "police.menu",
  1062. "police.pc",
  1063. "rpatrulha.garagem",
  1064. "radar.pass",
  1065. "holdup.police",
  1066. "pm1.garagem",
  1067. "police.handcuff",
  1068. "soldpmesp.paycheck",
  1069. "cop",
  1070. "police.putinveh",
  1071. "police.getoutveh",
  1072. "police.check",
  1073. "police.service",
  1074. "police.wanted",
  1075. "police.license",
  1076. "police.licensearm",
  1077. "bank.police",
  1078. "police.seize.weapons",
  1079. "police.seize.items",
  1080. "police.jail",
  1081. "police.fine",
  1082. "police.announce",
  1083. "police.askid",
  1084. "police.weapon_search",
  1085. "-police.store_weapons",
  1086. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  1087. },
  1088. ["Cabo [R.Patrulha]"] = {
  1089. _config = {
  1090. gtype = "job",
  1091. onjoin = function(player) vRPclient.setCop(player,{true}) end,
  1092. onspawn = function(player) vRPclient.setCop(player,{true}) end,
  1093. onleave = function(player) vRPclient.setCop(player,{false}) end
  1094. },
  1095. "Equipar.Cabo",
  1096. "player.list",
  1097. "police.base",
  1098. "cabopmesp.loadshop",
  1099. "police.easy_unjail",
  1100. "niveldois.loadshop",
  1101. "police.easy_fine",
  1102. "rpatrulha.garagem",
  1103. "police.easy_cuff",
  1104. "radio.police",
  1105. "police.drag",
  1106. "police.ver.oab",
  1107. "police.menu_interaction",
  1108. "niveldois.loadshop",
  1109. "cop",
  1110. "police.door",
  1111. "police.menu",
  1112. "police.pc",
  1113. "radar.pass",
  1114. "holdup.police",
  1115. "pm1.garagem",
  1116. "police.handcuff",
  1117. "radioptr.fardas",
  1118. "police.putinveh",
  1119. "police.getoutveh",
  1120. "police.check",
  1121. "cabopmesp.paycheck",
  1122. "police.service",
  1123. "police.wanted",
  1124. "police.license",
  1125. "police.licensearm",
  1126. "bank.police",
  1127. "police.seize.weapons",
  1128. "police.seize.items",
  1129. "police.jail",
  1130. "police.fine",
  1131. "police.announce",
  1132. "police.askid",
  1133. "soldadopmesp.paycheck",
  1134. "police.weapon_search",
  1135. "-police.store_weapons",
  1136. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  1137. },
  1138. ["3º Sargento [R.Patrulha]"] = {
  1139. _config = {
  1140. gtype = "job",
  1141. onjoin = function(player) vRPclient.setCop(player,{true}) end,
  1142. onspawn = function(player) vRPclient.setCop(player,{true}) end,
  1143. onleave = function(player) vRPclient.setCop(player,{false}) end
  1144. },
  1145. "Equipar.Sargento",
  1146. "police.ver.oab",
  1147. "player.list",
  1148. "police.base",
  1149. "cop",
  1150. "police.easy_unjail",
  1151. "police.easy_fine",
  1152. "radio.police",
  1153. "rpatrulha.garagem",
  1154. "police.easy_cuff",
  1155. "police.drag",
  1156. "police.menu_interaction",
  1157. "police.door",
  1158. "niveldois.loadshop",
  1159. "police.menu",
  1160. "police.pc",
  1161. "radioptr.fardas",
  1162. "radar.pass",
  1163. "holdup.police",
  1164. "pm1.garagem",
  1165. "police.handcuff",
  1166. "police.putinveh",
  1167. "police.getoutveh",
  1168. "police.check",
  1169. "police.service",
  1170. "police.wanted",
  1171. "police.license",
  1172. "police.licensearm",
  1173. "bank.police",
  1174. "police.seize.weapons",
  1175. "police.seize.items",
  1176. "police.jail",
  1177. "police.fine",
  1178. "police.announce",
  1179. "police.askid",
  1180. "3sargpmerj.paycheck",
  1181. "police.weapon_search",
  1182. "-police.store_weapons",
  1183. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  1184. },
  1185. ["2º Sargento [R.Patrulha]"] = {
  1186. _config = {
  1187. gtype = "job",
  1188. onjoin = function(player) vRPclient.setCop(player,{true}) end,
  1189. onspawn = function(player) vRPclient.setCop(player,{true}) end,
  1190. onleave = function(player) vRPclient.setCop(player,{false}) end
  1191. },
  1192. "Equipar.Sargento",
  1193. "player.list",
  1194. "cop",
  1195. "police.base",
  1196. "radio.police",
  1197. "police.ver.oab",
  1198. "police.easy_unjail",
  1199. "police.easy_fine",
  1200. "police.easy_cuff",
  1201. "police.drag",
  1202. "police.menu_interaction",
  1203. "police.door",
  1204. "rpatrulha.garagem",
  1205. "police.menu",
  1206. "niveldois.loadshop",
  1207. "police.pc",
  1208. "radioptr.fardas",
  1209. "radar.pass",
  1210. "holdup.police",
  1211. "pm1.garagem",
  1212. "police.handcuff",
  1213. "police.putinveh",
  1214. "police.getoutveh",
  1215. "police.check",
  1216. "police.service",
  1217. "police.wanted",
  1218. "police.license",
  1219. "police.licensearm",
  1220. "bank.police",
  1221. "police.seize.weapons",
  1222. "police.seize.items",
  1223. "police.jail",
  1224. "police.fine",
  1225. "police.announce",
  1226. "police.askid",
  1227. "2sargpmesp.paycheck",
  1228. "police.weapon_search",
  1229. "-police.store_weapons",
  1230. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  1231. },
  1232. ["1º Sargento [R.Patrulha]"] = {
  1233. _config = {
  1234. gtype = "job",
  1235. onjoin = function(player) vRPclient.setCop(player,{true}) end,
  1236. onspawn = function(player) vRPclient.setCop(player,{true}) end,
  1237. onleave = function(player) vRPclient.setCop(player,{false}) end
  1238. },
  1239. "Equipar.Sargento",
  1240. "player.list",
  1241. "police.base",
  1242. "police.ver.oab",
  1243. "police.easy_unjail",
  1244. "police.easy_fine",
  1245. "police.easy_cuff",
  1246. "police.drag",
  1247. "cop",
  1248. "police.menu_interaction",
  1249. "rpatrulha.garagem",
  1250. "radioptr.fardas",
  1251. "radio.police",
  1252. "police.door",
  1253. "police.menu",
  1254. "police.pc",
  1255. "radar.pass",
  1256. "holdup.police",
  1257. "pm1.garagem",
  1258. "niveldois.loadshop",
  1259. "police.handcuff",
  1260. "police.putinveh",
  1261. "police.getoutveh",
  1262. "police.check",
  1263. "police.service",
  1264. "police.wanted",
  1265. "police.license",
  1266. "police.licensearm",
  1267. "bank.police",
  1268. "police.seize.weapons",
  1269. "police.seize.items",
  1270. "police.jail",
  1271. "police.fine",
  1272. "police.announce",
  1273. "police.askid",
  1274. "1sargpmesp.paycheck",
  1275. "police.weapon_search",
  1276. "-police.store_weapons",
  1277. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  1278. },
  1279. ["Capitao [R.Patrulha]"] = {
  1280. _config = {
  1281. gtype = "job",
  1282. onjoin = function(player) vRPclient.setCop(player,{true}) end,
  1283. onspawn = function(player) vRPclient.setCop(player,{true}) end,
  1284. onleave = function(player) vRPclient.setCop(player,{false}) end
  1285. },
  1286. "Equipar.Capitao",
  1287. "player.list",
  1288. "police.base",
  1289. "police.easy_unjail",
  1290. "police.easy_fine",
  1291. "police.easy_cuff",
  1292. "cop",
  1293. "police.drag",
  1294. "police.menu_interaction",
  1295. "police.door",
  1296. "radio.police",
  1297. "police.ver.oab",
  1298. "police.menu",
  1299. "aguia.garagem",
  1300. "police.pc",
  1301. "radar.pass",
  1302. "niveldois.loadshop",
  1303. "holdup.police",
  1304. "rpatrulha.garagem",
  1305. "pm1.garagem",
  1306. "police.handcuff",
  1307. "radioptr.fardas",
  1308. "police.putinveh",
  1309. "police.getoutveh",
  1310. "police.check",
  1311. "police.service",
  1312. "police.wanted",
  1313. "police.license",
  1314. "police.licensearm",
  1315. "bank.police",
  1316. "police.seize.weapons",
  1317. "police.seize.items",
  1318. "police.jail",
  1319. "police.fine",
  1320. "police.announce",
  1321. "police.askid",
  1322. "cappmesp.paycheck",
  1323. "police.weapon_search",
  1324. "-police.store_weapons",
  1325. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  1326. },
  1327. ["Major [R.Patrulha]"] = {
  1328. _config = {
  1329. gtype = "job",
  1330. onjoin = function(player) vRPclient.setCop(player,{true}) end,
  1331. onspawn = function(player) vRPclient.setCop(player,{true}) end,
  1332. onleave = function(player) vRPclient.setCop(player,{false}) end
  1333. },
  1334. "Equipar.Major",
  1335. "player.list",
  1336. "police.base",
  1337. "radio.police",
  1338. "capitaopmerj.loadshop",
  1339. "police.easy_unjail",
  1340. "aguia.garagem",
  1341. "radioptr.fardas",
  1342. "cop",
  1343. "police.ver.oab",
  1344. "police.easy_fine",
  1345. "police.easy_cuff",
  1346. "police.drag",
  1347. "police.menu_interaction",
  1348. "police.door",
  1349. "police.menu",
  1350. "police.pc",
  1351. "radar.pass",
  1352. "holdup.police",
  1353. "niveldois.loadshop",
  1354. "rpatrulha.garagem",
  1355. "pm1.garagem",
  1356. "police.handcuff",
  1357. "police.putinveh",
  1358. "police.getoutveh",
  1359. "police.check",
  1360. "police.service",
  1361. "police.wanted",
  1362. "police.license",
  1363. "police.licensearm",
  1364. "bank.police",
  1365. "police.seize.weapons",
  1366. "police.seize.items",
  1367. "police.jail",
  1368. "police.fine",
  1369. "police.announce",
  1370. "police.askid",
  1371. "police.weapon_search",
  1372. "-police.store_weapons",
  1373. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  1374. },
  1375. ["Coronel [R.Patrulha]"] = {
  1376. _config = {
  1377. gtype = "job",
  1378. onjoin = function(player) vRPclient.setCop(player,{true}) end,
  1379. onspawn = function(player) vRPclient.setCop(player,{true}) end,
  1380. onleave = function(player) vRPclient.setCop(player,{false}) end
  1381. },
  1382. "Equipar.Coronel",
  1383. "player.list",
  1384. "police.base",
  1385. "police.easy_unjail",
  1386. "niveltres.loadshop",
  1387. "police.easy_fine",
  1388. "aguia.garagem",
  1389. "police.easy_cuff",
  1390. "radio.police",
  1391. "police.drag",
  1392. "police.menu_interaction",
  1393. "aguia.garagem",
  1394. "captain.door",
  1395. "radioptr.fardas",
  1396. "cop",
  1397. "police.door",
  1398. "police.menu",
  1399. "police.pc",
  1400. "radar.pass",
  1401. "police.ver.oab",
  1402. "holdup.police",
  1403. "pm1.garagem",
  1404. "police.handcuff",
  1405. "rpatrulha.garagem",
  1406. "police.putinveh",
  1407. "police.getoutveh",
  1408. "police.check",
  1409. "police.service",
  1410. "police.wanted",
  1411. "police.license",
  1412. "police.licensearm",
  1413. "bank.police",
  1414. "police.seize.weapons",
  1415. "police.seize.items",
  1416. "police.jail",
  1417. "police.fine",
  1418. "police.announce",
  1419. "police.askid",
  1420. "celpmesp.paycheck",
  1421. "police.weapon_search",
  1422. "-police.store_weapons",
  1423. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  1424. },
  1425.  
  1426. ["Agente [CIVIL]"] = {
  1427. _config = {
  1428. gtype = "job"
  1429. },
  1430. "police.asklc",
  1431. "police.takelc",
  1432. "comprar.portedearma",
  1433. "emergency.revive",
  1434. "police.base",
  1435. "Equipar.Civil",
  1436. "police.ver.oab",
  1437. "police.easy_fine",
  1438. "police.easy_cuff",
  1439. "police.drag",
  1440. "niveldois.loadshop",
  1441. "police.menu",
  1442. "civil.garagem",
  1443. "pc.cloakroom",
  1444. "civil.fardas",
  1445. "radio.police",
  1446. "police.pc",
  1447. "holdup.police",
  1448. "admin.deleteveh",
  1449. "license.aqui",
  1450. "cop",
  1451. "license.tirar",
  1452. "police.spikes",
  1453. "civil1.garagem",
  1454. "mission.police.patrol",
  1455. "police.putinveh",
  1456. "police.getoutveh",
  1457. "police.check",
  1458. "police.service",
  1459. "police.wanted",
  1460. "police.seize.weapons",
  1461. "police.seize.items",
  1462. "police.jail",
  1463. "police.announce",
  1464. "police.askid",
  1465. "agtcivil.paycheck",
  1466. "pc.weapons",
  1467. "-police.store_weapons",
  1468. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  1469. },
  1470. ["Investigador [CIVIL]"] = {
  1471. _config = {
  1472. gtype = "job"
  1473. },
  1474. "police.asklc",
  1475. "police.takelc",
  1476. "comprar.portedearma",
  1477. "radio.police",
  1478. "Equipar.Civil",
  1479. "emergency.revive",
  1480. "civil.garagem",
  1481. "police.base",
  1482. "police.easy_fine",
  1483. "police.ver.oab",
  1484. "police.easy_cuff",
  1485. "police.drag",
  1486. "police.menu",
  1487. "niveldois.loadshop",
  1488. "pc.cloakroom",
  1489. "police.pc",
  1490. "holdup.police",
  1491. "cop",
  1492. "admin.deleteveh",
  1493. "license.aqui",
  1494. "license.tirar",
  1495. "police.spikes",
  1496. "civil1.garagem",
  1497. "mission.police.patrol",
  1498. "police.putinveh",
  1499. "police.getoutveh",
  1500. "police.check",
  1501. "police.service",
  1502. "police.wanted",
  1503. "civil.fardas",
  1504. "police.seize.weapons",
  1505. "police.seize.items",
  1506. "police.jail",
  1507. "police.announce",
  1508. "police.askid",
  1509. "invcivil.paycheck",
  1510. "pc.weapons",
  1511. "-police.store_weapons",
  1512. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  1513. },
  1514. ["Escrivão [CIVIL]"] = {
  1515. _config = {
  1516. gtype = "job"
  1517. },
  1518. "police.asklc",
  1519. "police.takelc",
  1520. "niveldois.loadshop",
  1521. "comprar.portedearma",
  1522. "civil.garagem",
  1523. "emergency.revive",
  1524. "police.base",
  1525. "police.easy_fine",
  1526. "police.easy_cuff",
  1527. "police.ver.oab",
  1528. "police.drag",
  1529. "Equipar.Civil",
  1530. "radio.police",
  1531. "police.menu",
  1532. "cop",
  1533. "pc.cloakroom",
  1534. "police.pc",
  1535. "holdup.police",
  1536. "admin.deleteveh",
  1537. "license.aqui",
  1538. "license.tirar",
  1539. "police.spikes",
  1540. "civil1.garagem",
  1541. "mission.police.patrol",
  1542. "police.putinveh",
  1543. "police.getoutveh",
  1544. "police.check",
  1545. "civil.fardas",
  1546. "police.service",
  1547. "police.wanted",
  1548. "police.seize.weapons",
  1549. "police.seize.items",
  1550. "police.jail",
  1551. "police.announce",
  1552. "police.askid",
  1553. "escricivil.paycheck",
  1554. "pc.weapons",
  1555. "-police.store_weapons",
  1556. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  1557. },
  1558. ["Perito Criminal [CIVIL]"] = {
  1559. _config = {
  1560. gtype = "job"
  1561. },
  1562. "police.asklc",
  1563. "police.takelc",
  1564. "comprar.portedearma",
  1565. "emergency.revive",
  1566. "civil.garagem",
  1567. "police.base",
  1568. "niveldois.loadshop",
  1569. "police.ver.oab",
  1570. "police.easy_fine",
  1571. "radio.police",
  1572. "Equipar.Civil",
  1573. "cop",
  1574. "police.easy_cuff",
  1575. "police.drag",
  1576. "police.menu",
  1577. "pc.cloakroom",
  1578. "police.pc",
  1579. "holdup.police",
  1580. "admin.deleteveh",
  1581. "license.aqui",
  1582. "license.tirar",
  1583. "police.spikes",
  1584. "mission.police.patrol",
  1585. "police.putinveh",
  1586. "police.getoutveh",
  1587. "police.check",
  1588. "police.service",
  1589. "police.wanted",
  1590. "police.seize.weapons",
  1591. "police.seize.items",
  1592. "civil.fardas",
  1593. "police.jail",
  1594. "police.announce",
  1595. "police.askid",
  1596. "peritocrim.paycheck",
  1597. "pc.weapons",
  1598. "-police.store_weapons",
  1599. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  1600. },
  1601. ["Delegado [CIVIL]"] = {
  1602. _config = {
  1603. gtype = "job"
  1604. },
  1605. "police.asklc",
  1606. "civil.fardas",
  1607. "police.takelc",
  1608. "comprar.portedearma",
  1609. "radio.police",
  1610. "emergency.revive",
  1611. "police.base",
  1612. "police.easy_fine",
  1613. "niveldois.loadshop",
  1614. "police.easy_cuff",
  1615. "civil.garagem",
  1616. "police.drag",
  1617. "police.menu",
  1618. "pc.cloakroom",
  1619. "police.ver.oab",
  1620. "Equipar.Civil",
  1621. "cop",
  1622.  
  1623. "police.pc",
  1624. "holdup.police",
  1625. "admin.deleteveh",
  1626. "license.aqui",
  1627. "license.tirar",
  1628. "police.spikes",
  1629. "mission.police.patrol",
  1630. "police.putinveh",
  1631. "police.getoutveh",
  1632. "police.check",
  1633. "police.service",
  1634. "police.wanted",
  1635. "police.seize.weapons",
  1636. "police.seize.items",
  1637. "police.jail",
  1638. "police.announce",
  1639. "police.askid",
  1640. "pc.weapons",
  1641. "-police.store_weapons",
  1642. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  1643. },
  1644.  
  1645.  
  1646.  
  1647. ["Recruta [ROTA]"] = {
  1648. _config = {
  1649. gtype = "job",
  1650. onjoin = function(player) vRPclient.setCop(player,{true}) end,
  1651. onspawn = function(player) vRPclient.setCop(player,{true}) end,
  1652. onleave = function(player) vRPclient.setCop(player,{false}) end
  1653. },
  1654. "Equipar.Recruta",
  1655. "player.list",
  1656. "police.ver.oab",
  1657. "police.base",
  1658. "police.easy_unjail",
  1659. "police.easy_fine",
  1660. "police.easy_cuff",
  1661. "nivelum.loadshop",
  1662. "rota.garagem",
  1663. "cop",
  1664. "radio.police",
  1665. "police.drag",
  1666. "police.menu_interaction",
  1667. "rota.fardas",
  1668. "police.door",
  1669. "police.menu",
  1670. "police.pc",
  1671. "radar.pass",
  1672. "holdup.police",
  1673. "police.handcuff",
  1674. "police.putinveh",
  1675. "police.getoutveh",
  1676. "police.check",
  1677. "police.service",
  1678. "police.wanted",
  1679. "police.license",
  1680. "police.licensearm",
  1681. "bank.police",
  1682. "police.seize.weapons",
  1683. "police.seize.items",
  1684. "police.jail",
  1685. "police.fine",
  1686. "police.announce",
  1687. "police.askid",
  1688. "recrutabope.paycheck",
  1689. "police.weapon_search",
  1690. "-police.store_weapons",
  1691. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  1692. },
  1693. ["Soldado [ROTA]"] = {
  1694. _config = {
  1695. gtype = "job",
  1696. onjoin = function(player) vRPclient.setCop(player,{true}) end,
  1697. onspawn = function(player) vRPclient.setCop(player,{true}) end,
  1698. onleave = function(player) vRPclient.setCop(player,{false}) end
  1699. },
  1700. "Equipar.Soldado",
  1701. "player.list",
  1702. "radio.police",
  1703. "police.base",
  1704. "police.easy_unjail",
  1705. "police.easy_fine",
  1706. "police.easy_cuff",
  1707. "police.drag",
  1708. "police.menu_interaction",
  1709. "rota.garagem",
  1710. "cop",
  1711. "rota.fardas",
  1712. "police.ver.oab",
  1713. "police.door",
  1714. "niveldois.loadshop",
  1715. "police.menu",
  1716. "police.pc",
  1717. "radar.pass",
  1718. "holdup.police",
  1719. "police.handcuff",
  1720. "police.putinveh",
  1721. "police.getoutveh",
  1722. "police.check",
  1723. "police.service",
  1724. "police.wanted",
  1725. "police.license",
  1726. "pm2.garagem",
  1727. "police.licensearm",
  1728. "bank.police",
  1729. "police.seize.weapons",
  1730. "police.seize.items",
  1731. "police.jail",
  1732. "police.fine",
  1733. "police.announce",
  1734.  
  1735. "police.askid",
  1736. "police.weapon_search",
  1737. "-police.store_weapons",
  1738. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  1739. },
  1740. ["Cabo [ROTA]"] = {
  1741. _config = {
  1742. gtype = "job",
  1743. onjoin = function(player) vRPclient.setCop(player,{true}) end,
  1744. onspawn = function(player) vRPclient.setCop(player,{true}) end,
  1745. onleave = function(player) vRPclient.setCop(player,{false}) end
  1746. },
  1747. "player.list",
  1748. "Equipar.Cabo",
  1749. "police.base",
  1750. "cop",
  1751. "police.easy_unjail",
  1752. "police.easy_fine",
  1753. "niveldois.loadshop",
  1754. "police.easy_cuff",
  1755. "radio.police",
  1756. "police.drag",
  1757. "police.menu_interaction",
  1758. "rota.fardas",
  1759. "rota.garagem",
  1760. "police.door",
  1761. "police.menu",
  1762. "police.ver.oab",
  1763. "police.pc",
  1764. "colete.weapons",
  1765. "radar.pass",
  1766. "holdup.police",
  1767. "police.handcuff",
  1768. "police.putinveh",
  1769. "police.getoutveh",
  1770. "police.check",
  1771. "police.service",
  1772. "police.wanted",
  1773. "police.license",
  1774. "police.licensearm",
  1775. "bank.police",
  1776. "police.seize.weapons",
  1777. "police.seize.items",
  1778. "police.jail",
  1779. "police.fine",
  1780. "police.announce",
  1781. "police.askid",
  1782. "cabobope.paycheck",
  1783. "police.weapon_search",
  1784. "-police.store_weapons",
  1785. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  1786. },
  1787. ["Sargento [ROTA]"] = {
  1788. _config = {
  1789. gtype = "job",
  1790. onjoin = function(player) vRPclient.setCop(player,{true}) end,
  1791. onspawn = function(player) vRPclient.setCop(player,{true}) end,
  1792. onleave = function(player) vRPclient.setCop(player,{false}) end
  1793. },
  1794. "Equipar.Sargento",
  1795. "player.list",
  1796. "police.base",
  1797. "police.easy_unjail",
  1798. "police.easy_fine",
  1799. "cop",
  1800. "fardabope.cloakroom",
  1801. "niveldois.loadshop",
  1802. "police.easy_cuff",
  1803. "rota.garagem",
  1804. "police.drag",
  1805. "radio.police",
  1806. "police.menu_interaction",
  1807. "rota.fardas",
  1808. "police.door",
  1809. "police.ver.oab",
  1810. "police.menu",
  1811. "police.pc",
  1812. "radar.pass",
  1813. "holdup.police",
  1814. "police.handcuff",
  1815. "police.putinveh",
  1816. "police.getoutveh",
  1817. "police.check",
  1818. "police.service",
  1819. "police.wanted",
  1820. "police.license",
  1821. "police.licensearm",
  1822. "bank.police",
  1823. "police.seize.weapons",
  1824. "police.seize.items",
  1825. "police.jail",
  1826. "police.fine",
  1827. "police.announce",
  1828. "police.askid",
  1829. "police.weapon_search",
  1830. "-police.store_weapons",
  1831. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  1832. },
  1833. ["Major [ROTA]"] = {
  1834. _config = {
  1835. gtype = "job",
  1836. onjoin = function(player) vRPclient.setCop(player,{true}) end,
  1837. onspawn = function(player) vRPclient.setCop(player,{true}) end,
  1838. onleave = function(player) vRPclient.setCop(player,{false}) end
  1839. },
  1840. "player.list",
  1841. "Equipar.Major",
  1842. "police.base",
  1843. "police.easy_unjail",
  1844. "niveldois.loadshop",
  1845. "cop",
  1846. "police.easy_fine",
  1847. "police.easy_cuff",
  1848. "police.drag",
  1849. "rota.garagem",
  1850. "niveldois.loadshop",
  1851. "radio.police",
  1852. "police.menu_interaction",
  1853. "police.door",
  1854. "police.menu",
  1855. "police.ver.oab",
  1856. "police.pc",
  1857. "radar.pass",
  1858. "holdup.police",
  1859. "police.handcuff",
  1860. "police.putinveh",
  1861. "police.getoutveh",
  1862. "police.check",
  1863. "police.service",
  1864. "police.wanted",
  1865. "police.license",
  1866. "police.licensearm",
  1867. "bank.police",
  1868. "rota.fardas",
  1869. "police.seize.weapons",
  1870. "police.seize.items",
  1871. "police.jail",
  1872. "police.fine",
  1873. "police.announce",
  1874. "police.askid",
  1875. "majorbope.paycheck",
  1876. "police.weapon_search",
  1877. "-police.store_weapons",
  1878. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  1879. },
  1880. ["Tenente [ROTA]"] = {
  1881. _config = {
  1882. gtype = "job",
  1883. onjoin = function(player) vRPclient.setCop(player,{true}) end,
  1884. onspawn = function(player) vRPclient.setCop(player,{true}) end,
  1885. onleave = function(player) vRPclient.setCop(player,{false}) end
  1886. },
  1887. "Equipar.Tenente",
  1888. "player.list",
  1889. "police.base",
  1890. "police.easy_unjail",
  1891. "police.easy_fine",
  1892. "police.easy_cuff",
  1893. "police.drag",
  1894. "cop",
  1895. "police.menu_interaction",
  1896. "police.door",
  1897. "police.menu",
  1898. "police.pc",
  1899. "rota.garagem",
  1900. "rota.fardas",
  1901. "radio.police",
  1902. "colete.weapons",
  1903. "police.ver.oab",
  1904. "radar.pass",
  1905. "niveldois.loadshop",
  1906. "holdup.police",
  1907. "police.handcuff",
  1908. "police.putinveh",
  1909. "police.getoutveh",
  1910. "police.check",
  1911. "police.service",
  1912. "police.wanted",
  1913. "police.license",
  1914. "police.licensearm",
  1915. "bank.police",
  1916. "police.seize.weapons",
  1917. "police.seize.items",
  1918. "police.jail",
  1919. "police.fine",
  1920. "police.announce",
  1921. "police.askid",
  1922. "police.weapon_search",
  1923. "-police.store_weapons",
  1924. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  1925. },
  1926. ["Tenente Coronel [ROTA]"] = {
  1927. _config = {
  1928. gtype = "job",
  1929. onjoin = function(player) vRPclient.setCop(player,{true}) end,
  1930. onspawn = function(player) vRPclient.setCop(player,{true}) end,
  1931. onleave = function(player) vRPclient.setCop(player,{false}) end
  1932. },
  1933. "Equipar.Tencoronel",
  1934. "player.list",
  1935. "police.base",
  1936. "police.easy_unjail",
  1937. "police.easy_fine",
  1938. "police.easy_cuff",
  1939. "police.drag",
  1940. "police.menu_interaction",
  1941. "police.door",
  1942. "police.ver.oab",
  1943. "police.menu",
  1944. "cop",
  1945. "police.pc",
  1946. "radar.pass",
  1947. "niveldois.loadshop",
  1948. "holdup.police",
  1949. "police.handcuff",
  1950. "police.putinveh",
  1951. "radio.police",
  1952. "rota.garagem",
  1953. "rota.fardas",
  1954. "police.getoutveh",
  1955. "police.check",
  1956. "police.service",
  1957. "bope.loadshop",
  1958. "police.wanted",
  1959. "police.license",
  1960. "police.licensearm",
  1961. "bank.police",
  1962. "police.seize.weapons",
  1963. "police.seize.items",
  1964. "police.jail",
  1965. "police.fine",
  1966. "police.announce",
  1967. "police.askid",
  1968. "police.weapon_search",
  1969. "-police.store_weapons",
  1970. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  1971. },
  1972. ["Coronel [ROTA]"] = {
  1973. _config = {
  1974. gtype = "job",
  1975. onjoin = function(player) vRPclient.setCop(player,{true}) end,
  1976. onspawn = function(player) vRPclient.setCop(player,{true}) end,
  1977. onleave = function(player) vRPclient.setCop(player,{false}) end
  1978. },
  1979. "Equipar.Coronel",
  1980. "player.list",
  1981. "police.base",
  1982. "rota.fardas",
  1983. "niveldois.loadshop",
  1984. "police.easy_unjail",
  1985. "captain.door",
  1986. "police.easy_fine",
  1987. "rota.garagem",
  1988. "police.ver.oab",
  1989. "police.easy_cuff",
  1990. "bope.loadshop",
  1991. "police.drag",
  1992. "police.menu_interaction",
  1993. "police.door",
  1994. "pm2.garagem",
  1995. "cop",
  1996. "police.menu",
  1997. "coronel.weapons",
  1998. "police.pc",
  1999. "radar.pass",
  2000. "holdup.police",
  2001. "radio.police",
  2002. "police.handcuff",
  2003. "police.putinveh",
  2004. "police.getoutveh",
  2005. "police.check",
  2006. "police.service",
  2007. "police.wanted",
  2008. "police.license",
  2009. "police.licensearm",
  2010. "bank.police",
  2011. "police.seize.weapons",
  2012. "police.seize.items",
  2013. "police.jail",
  2014. "police.fine",
  2015. "police.announce",
  2016. "police.askid",
  2017. "coronelbope.paycheck",
  2018. "police.weapon_search",
  2019. "-police.store_weapons",
  2020. "-police.seizable" -- negative permission, police can't seize itself, even if another group add the permission
  2021. },
  2022.  
  2023. ["Chefe [SAMU]"] = {
  2024. _config = { gtype = "job" },
  2025. "emergency.revive",
  2026. "emergency.shop",
  2027. "emergency_heal",
  2028. "emergency.service",
  2029. "Equipar.Paramedico",
  2030. "aguiasamu.garagem",
  2031. "samu.fardas",
  2032. "samu.garagem",
  2033. "hospital.garagem",
  2034. "polpar.permissao",
  2035. "emergency.medkit",
  2036. "samu.uniforme",
  2037. "chefesamu.paycheck",
  2038. "emscheck.revive",
  2039. "radar.pass",
  2040. "samu.cloakroom"
  2041. },
  2042. ["Diretor [SAMU]"] = {
  2043. _config = { gtype = "job" },
  2044. "emergency.revive",
  2045. "emergency.shop",
  2046. "emergency_heal",
  2047. "emergency.service",
  2048. "Equipar.Paramedico",
  2049. "samu.uniforme",
  2050. "samu.fardas",
  2051. "aguiasamu.garagem",
  2052. "hospital.garagem",
  2053. "samu.garagem",
  2054. "polpar.permissao",
  2055. "emergency.medkit",
  2056. "diretorsamu.paycheck",
  2057. "emscheck.revive",
  2058. "radar.pass",
  2059. "samu.cloakroom"
  2060. },
  2061.  
  2062. ["Paramedico [SAMU]"] = {
  2063. _config = { gtype = "job" },
  2064. "emergency.revive",
  2065. "polpar.permissao",
  2066. "emergency.shop",
  2067. "emergency_heal",
  2068. "Equipar.Paramedico",
  2069. "emergency.service",
  2070. "samu.fardas",
  2071. "samu.uniforme",
  2072. "hospital.garagem",
  2073. "samu.garagem",
  2074. "emergency.medkit",
  2075. "paramedicosamu.paycheck",
  2076. "emscheck.revive",
  2077. "radar.pass",
  2078. "samu.cloakroom"
  2079. },
  2080. ["Estagiario [SAMU]"] = {
  2081. _config = { gtype = "job" },
  2082. "emergency.revive",
  2083. "emergency.shop",
  2084. "samu.uniforme",
  2085. "emergency_heal",
  2086. "emergency.service",
  2087. "hospital.garagem",
  2088. "emergency.medkit",
  2089. "samu.garagem",
  2090. "Equipar.Paramedico",
  2091. "estagiariosamu.paycheck",
  2092. "emscheck.revive",
  2093. "samu.fardas",
  2094. "radar.pass",
  2095. "samu.cloakroom"
  2096. },
  2097. ["Medico [SAMU]"] = {
  2098. _config = { gtype = "job" },
  2099. "emergency.revive",
  2100. "emergency.shop",
  2101. "samu.uniforme",
  2102. "emergency_heal",
  2103. "emergency.service",
  2104. "Equipar.Paramedico",
  2105. "aguiasamu.garagem",
  2106. "samu.garagem",
  2107. "samu.fardas",
  2108. "polpar.permissao",
  2109. "hospital.garagem",
  2110. "emergency.medkit",
  2111. "medicosamu.paycheck",
  2112. "emscheck.revive",
  2113. "radar.pass",
  2114. "samu.cloakroom"
  2115. },
  2116.  
  2117. ["Mecânico"] = {
  2118. _config = { gtype = "job"},
  2119. "vehicle.repair",
  2120. "vehicle.replace",
  2121. "repair.paycheck",
  2122. "mission.repair.satellite_dishes",
  2123. "mission.repair.wind_turbines",
  2124. "repair.service",
  2125. "repair.garagem"
  2126. },
  2127.  
  2128. ["Cozinheiro"] = {
  2129. _config = { gtype = "job"},
  2130. "cozinheiro.cozinha",
  2131. "ifood.service",
  2132. "lanchonete.paycheck"
  2133. },
  2134.  
  2135. ["Pescador"] = {
  2136. _config = { gtype = "job" },
  2137. "vender.peixes",
  2138. "pescar.peixes",
  2139. "peixe.venda",
  2140. "fisher.service",
  2141. "fisher.vehicle",
  2142. "pescador.paycheck",
  2143. "traje.pescador"
  2144. },
  2145.  
  2146. ["Taxi"] = {
  2147. _config = { gtype = "job" },
  2148. "taxi.service",
  2149. "taxi.paycheck",
  2150. "mission.taxi.passenger",
  2151. "taxi.garagem"
  2152. },
  2153. ["Jornalista"] = {
  2154. _config = { gtype = "job" },
  2155. "jornalista.paycheck",
  2156. "traje.jornalista"
  2157. },
  2158. ["Entregador"] = {
  2159. _config = { gtype = "job" },
  2160. "delivery.paycheck",
  2161. "delivery.service",
  2162. "mission.delivery.food",
  2163. "delivery.garagem"
  2164. },
  2165. ["Advogado"] = {
  2166. _config = { gtype = "job" },
  2167. "advogado.oab",
  2168. "advogado.service",
  2169. "advogado.paycheck"
  2170. },
  2171. ["Transportador de Valores"] = {
  2172. _config = { gtype = "job",
  2173. onspawn = function(player) vRPclient.notify(player,{"Você é um piloto de carro forte."}) end
  2174. },
  2175. "mission.bankdriver.moneybank",
  2176. "mission.bankdriver.moneybank2",
  2177. "bankdriver.vehicle",
  2178. "bankdriver.paycheck",
  2179. "bankdriver.money"
  2180. },
  2181. ["Desempregado"] = {
  2182. _config = { gtype = "job" },
  2183. "player.paycheck",
  2184. "bolsafamilia.paycheck"
  2185. },
  2186.  
  2187. -- garimpos
  2188. ["Minerador Diamante"] = {
  2189. _config = { gtype = "job" },
  2190. "harvest.diamante",
  2191. "process.diamante",
  2192. "venda.diamante",
  2193. "traje.minerador",
  2194. "bolsafamilia.paycheck"
  2195. },
  2196.  
  2197. ["Minerador Ouro"] = {
  2198. _config = { gtype = "job" },
  2199. "harvest.Ouro",
  2200. "process.Ouro",
  2201. "venda.Ouro",
  2202. "traje.minerador",
  2203. "bolsafamilia.paycheck"
  2204. },
  2205. ["Minerador Cobre"] = {
  2206. _config = { gtype = "job" },
  2207. "harvest.Cobre",
  2208. "process.Cobre",
  2209. "venda.Cobre",
  2210. "traje.minerador",
  2211. "bolsafamilia.paycheck"
  2212. },
  2213.  
  2214. ["Sedex"] = {
  2215. _config = { gtype = "job" },
  2216. "sedex.permissao",
  2217. "sedex.garagem",
  2218. "sedex.cloackroom", -- colocar
  2219. "sedex.chamado",
  2220. "sedex.paycheck"
  2221. },
  2222.  
  2223. ["Lixeiro"] = {
  2224. _config = { gtype = "job" },
  2225. "lixeiro.permissao",
  2226. "sedex.garagem",
  2227. "sedex.paycheck"
  2228. },
  2229. -- pescador
  2230.  
  2231. ["Pescador"] = {
  2232. _config = { gtype = "job" },
  2233. "vender.peixes",
  2234. "pescar.peixes",
  2235. "peixe.venda",
  2236. "fisher.service",
  2237. "fisher.vehicle",
  2238. "pescador.paycheck",
  2239. "traje.pescador"
  2240. },
  2241.  
  2242. ["Piloto de carga"] = {
  2243. _config = { gtype = "job",
  2244. onspawn = function(player) vRPclient.notify(player,{"Você é um piloto de carga. Salario: $2000."}) end
  2245. },
  2246. "mission.pilot.cargo", -- Vi
  2247. "pilot.vehicle", -- Ok
  2248. "piloto.permissao",
  2249. "pilot.paycheck"
  2250. },
  2251. ------------------------------------------------------------------------------------------------------------------------------------------------
  2252. -- Empregos Ilegais Trigueiro --
  2253. -- Falta vendas em missoes --
  2254. ------------------------------------------------------------------------------------------------------------------------------------------------
  2255.  
  2256. ["Traficante de Maconha"] = {
  2257. _config = { gtype = "job" },
  2258. "coletarmaconha.droga",
  2259. "fabricarmaconha.droga",
  2260. "vendermaconha.ilegal"
  2261. },
  2262.  
  2263. ["Traficante de Cocaina"] = {
  2264. _config = { gtype = "job" },
  2265. "coletarcocaina.droga",
  2266. "fabricarcocaina.droga",
  2267. "vendercoca.ilegal",
  2268. },
  2269.  
  2270. ["Traficante de Metanfetamina"] = {
  2271. _config = { gtype = "job" },
  2272. "coletarmetanfemina.droga",
  2273. "fabricarmetanfetamina.droga",
  2274. "vendermeta.ilegal"
  2275. },
  2276.  
  2277. ["Traficante de LSD"] = {
  2278. _config = { gtype = "job" },
  2279. "coletarlsd.droga",
  2280. "fabricarlsd.droga",
  2281. "venderlsd.ilegal"
  2282. },
  2283.  
  2284. ["Traficante de Tartaruga"] = { -- venda fixa colocar
  2285. _config = { gtype = "job" },
  2286. "coletartartarugas.ilegal",
  2287. "tratartartarugas.ilegal",
  2288. "vendertartarugas.ilegal"
  2289. },
  2290.  
  2291. ["Ladrão de Carros"] = { -- Verificaaaaaaaaaaaaaaaaaaaaaaar
  2292. _config = { gtype = "job" },
  2293. "mission.carjack.vehicle",
  2294. "carjacker.lockpick"
  2295. },
  2296. ["Traficante de Armas"] = {
  2297. _config = { gtype = "job" },
  2298. "mission.delivery.pistol",
  2299. "mission.delivery.shotgun",
  2300. "build.gun",
  2301. "mission.delivery.smg"
  2302. },
  2303. ["Hacker"] = {
  2304. _config = { gtype = "job" },
  2305. "pick.toclonecards",
  2306. "clone.cards",
  2307. "sell.clonedcards"
  2308. },
  2309.  
  2310. ["Gatonet"] = { -- Colocar uno de firnma
  2311. _config = { gtype = "job" },
  2312.  
  2313. },
  2314.  
  2315.  
  2316. ------------------------------------------------------------------------------------------------------------------------------------------------
  2317. -- Facçoes --
  2318. ------------------------------------------------------------------------------------------------------------------------------------------------
  2319.  
  2320. -- Comando vermelho [Favela do laguinho]
  2321.  
  2322. ["Comando Vermelho Lider"] = {
  2323. _config = { gtype = "job" },
  2324. "police.drag",
  2325. "police.handcuff",
  2326. "bau.cv",
  2327. "police.putinveh",
  2328. "police.getoutveh",
  2329. "coletarmaconha.droga",
  2330. "invadir.favela",
  2331. "fabricarmaconha.droga",
  2332. "vendermaconha.ilegal",
  2333. "menu.cv"
  2334. },
  2335.  
  2336. ["Comando Vermelho Braco direito"] = { -- Colocar missoes permissao das drogas - Maconha
  2337. _config = { gtype = "job" },
  2338. "police.drag",
  2339. "police.handcuff",
  2340. "police.putinveh",
  2341. "police.getoutveh",
  2342. "bau.cv",
  2343. "coletarmaconha.droga",
  2344. "fabricarmaconha.droga",
  2345. "invadir.favela",
  2346. "vendermaconha.ilegal"
  2347. },
  2348.  
  2349. ["Comando Vermelho Membro"] = { -- Colocar missoes permissao das drogas - Maconha
  2350. _config = { gtype = "job" },
  2351. "coletarmaconha.droga",
  2352. "fabricarmaconha.droga",
  2353. "bau.cv",
  2354. "invadir.favela",
  2355. "vendermaconha.ilegal"
  2356.  
  2357. },
  2358.  
  2359. -- Primeiro comando capital [Favela do campinho]
  2360.  
  2361. ["P.C.C Lider"] = { -- Colocar missoes permissao das drogas - Cocaina
  2362. _config = { gtype = "job" },
  2363. "police.drag",
  2364. "police.handcuff",
  2365. "police.putinveh",
  2366. "bau.pcc",
  2367. "police.getoutveh",
  2368. "coletarcocaina.droga",
  2369. "invadir.favela",
  2370. "fabricarcocaina.droga",
  2371. "vendercoca.ilegal",
  2372. "menu.pcc"
  2373. },
  2374.  
  2375. ["P.C.C Braco direito"] = { -- Colocar missoes permissao das drogas - Cocaina
  2376. _config = { gtype = "job" },
  2377. "police.drag",
  2378. "police.handcuff",
  2379. "police.putinveh",
  2380. "bau.pcc",
  2381. "police.getoutveh",
  2382. "coletarcocaina.droga",
  2383. "fabricarcocaina.droga",
  2384. "invadir.favela",
  2385. "vendercoca.ilegal"
  2386. },
  2387.  
  2388. ["P.C.C Membro"] = { -- Colocar missoes permissao das drogas - Cocaina
  2389. _config = { gtype = "job" },
  2390. "coletarcocaina.droga",
  2391. "fabricarcocaina.droga",
  2392. "bau.pcc",
  2393. "invadir.favela",
  2394. "vendercoca.ilegal"
  2395. },
  2396.  
  2397. -- Amigos dos Amigos [Favela da Barragem]
  2398.  
  2399. ["A.D.A Lider"] = { -- Colocar missoes permissao das drogas - LSD
  2400. _config = { gtype = "job" },
  2401. "police.drag",
  2402. "police.handcuff",
  2403. "police.putinveh",
  2404. "police.getoutveh",
  2405. "invadir.favela",
  2406. "bau.ada",
  2407. "coletarlsd.droga",
  2408. "fabricarlsd.droga",
  2409. "venderlsd.ilegal",
  2410. "menu.ada"
  2411. },
  2412.  
  2413. ["A.D.A Braco direito"] = { -- Colocar missoes permissao das drogas - LSD
  2414. _config = { gtype = "job" },
  2415. "police.drag",
  2416. "police.handcuff",
  2417. "police.putinveh",
  2418. "bau.ada",
  2419. "police.getoutveh",
  2420. "coletarlsd.droga",
  2421. "fabricarlsd.droga",
  2422. "invadir.favela",
  2423. "venderlsd.ilegal",
  2424. },
  2425.  
  2426. ["A.D.A Membro"] = { -- Colocar missoes permissao das drogas - LSD
  2427. _config = { gtype = "job" },
  2428. "coletarlsd.droga",
  2429. "fabricarlsd.droga",
  2430. "bau.ada",
  2431. "invadir.favela",
  2432. "venderlsd.ilegal"
  2433. },
  2434.  
  2435. -- MotoClube [Sede do motoclube]
  2436.  
  2437. ["Moto Clube Lider"] = { -- Colocar missoes permissao das drogas - Armas
  2438. _config = { gtype = "job" },
  2439. "police.drag",
  2440. "police.handcuff",
  2441. "police.putinveh",
  2442. "invadir.favela",
  2443. "mc.loadshop",
  2444. "police.getoutveh",
  2445. "bau.mc",
  2446. "traje.pescador",
  2447. "mission.delivery.pistol",
  2448. "build.gun",
  2449. "mission.delivery.shotgun",
  2450. "mission.delivery.smg",
  2451. "mission.gunrunner.shipment"
  2452. },
  2453.  
  2454. ["Moto Clube Braco direito"] = { -- Colocar missoes permissao das drogas - Armas
  2455. _config = { gtype = "job" },
  2456. "police.drag",
  2457. "police.handcuff",
  2458. "bau.mc",
  2459. "police.putinveh",
  2460. "police.getoutveh",
  2461. "mc.loadshop",
  2462. "traje.pescador",
  2463. "invadir.favela",
  2464. "build.gun",
  2465. "mission.delivery.pistol",
  2466. "mission.delivery.shotgun",
  2467. "mission.delivery.smg",
  2468. "mission.gunrunner.shipment"
  2469. },
  2470.  
  2471. ["Moto Clube Membro"] = { -- Colocar missoes permissao das drogas - Armas
  2472. _config = { gtype = "job" },
  2473. "traje.pescador" ,
  2474. "mission.delivery.pistol",
  2475. "invadir.favela",
  2476. "build.gun",
  2477. "mission.delivery.shotgun",
  2478. "bau.mc",
  2479. "mission.delivery.smg",
  2480. "mission.gunrunner.shipment"
  2481. }
  2482. }
  2483.  
  2484. -- groups are added dynamically using the API or the menu, but you can add group when an user join here
  2485. cfg.users = {
  2486. [1] = { -- give superadmin and admin group to the first created user on the database
  2487. "superadmin",
  2488. "admin"
  2489. }
  2490. }
  2491.  
  2492. -- group selectors
  2493. -- _config
  2494. --- x,y,z, blipid, blipcolor, permissions (optional)
  2495.  
  2496. cfg.selectors = {
  2497. ["Agencia de Empregos"] = {
  2498. _config = {x = -268.363739013672, y = -957.255126953125, z = 31.22313880920410, blipid = 351, blipcolor = 47},
  2499. "Taxi",
  2500. "Transportador de Valores",
  2501. "Mecânico",
  2502. "Minerador Diamante",
  2503. "Sedex",
  2504. "Pescador",
  2505. "Lixeiro",
  2506. "Advogado",
  2507. "Jornalista",
  2508. "Piloto de carga",
  2509. "Desempregado"
  2510. },
  2511. ["Empregos Ilegais"] = { -- Trigueiro
  2512. _config = {x = 707.324462890625, y = -966.986511230469, z = 30.4128551483154, blipid = 351, blipcolor = 49},
  2513. "Ladrão de Carros",
  2514. "Traficante de Maconha",
  2515. "Traficante de Cocaina",
  2516. "Traficante de Metanfetamina",
  2517. "Traficante de LSD",
  2518. "Traficante de Tartaruga",
  2519. "Traficante de Armas",
  2520. "Hacker"
  2521. }
  2522. }
  2523.  
  2524. return cfg
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement