Advertisement
Guest User

Untitled

a guest
May 1st, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. jobs = {
  2. ["police"] = {
  3. ["displayName"] = "Police officer",
  4. ["skin"] = "s_m_y_cop_01",
  5. ["onJoin"] = function(source, user)
  6. TriggerClientEvent('chatMessage', source, "JOB", {255, 0, 0}, "Tu peux acheter une voiture de police au ^4garage^0 pour ^2£2 000")
  7. end,
  8. ["onLeave"] = function(source, user)
  9. -- Do code here for when someone leaves this job
  10. end,
  11. ["onSpawn"] = function(source, user)
  12. -- Do code here for when someone spawns with this job.
  13. end,
  14. ["weapons"] = {
  15. "WEAPON_STUNGUN",
  16. "WEAPON_PISTOL",
  17. "WEAPON_CARBINERIFLE"
  18. },
  19. ["salary"] = 1050
  20. },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement