Advertisement
Foxmice

CG roller

Aug 20th, 2019
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.67 KB | None | 0 0
  1. ["Politi-Job"] = {
  2.         _config = {
  3.         title = "Politi-Job",
  4.         gtype = "job",
  5.         onjoin = function(player) vRPclient._setCop(player,true) end,
  6.         onspawn = function(player) vRPclient._setCop(player,true) end,
  7.         onleave = function(player) vRPclient._setCop(player,false) end
  8.         },
  9.         "emergency.revive"
  10.     },
  11.  
  12.     ["EMS-Job"] = {
  13.         _config = {
  14.         title = "EMS-Job",
  15.         gtype = "job",
  16.         onjoin = function(player) vRPclient._setCop(player,true) end,
  17.         onspawn = function(player) vRPclient._setCop(player,true) end,
  18.         onleave = function(player) vRPclient._setCop(player,false) end
  19.         },
  20.         "emergency.service",
  21.     },
  22.  
  23.     ["Mekaniker-Job"] = {
  24.         _config = {
  25.         title = "Mekaniker-Job",
  26.         gtype = "job",
  27.         onjoin = function(player) vRPclient._setCop(player,true) end,
  28.         onspawn = function(player) vRPclient._setCop(player,true) end,
  29.         onleave = function(player) vRPclient._setCop(player,false) end
  30.         },
  31.         "repair.service",
  32.     },
  33.  
  34.     ["Taxi"] = {
  35.         _config = {
  36.             title = "Taxi",
  37.             gtype = "job",
  38.             onjoin = function(player)
  39.                 TriggerClientEvent("pNotify:SendNotification", player,{text = "Taxi tildelt.", type = "success", queue = "global", timeout = 5000, layout = "centerLeft",animation = {open = "gta_effects_fade_in", close = "gta_effects_fade_out"}})
  40.             end,
  41.             onleave = function(player)
  42.                 TriggerClientEvent("pNotify:SendNotification", player,{text = "Taxi frataget.", type = "success", queue = "global", timeout = 5000, layout = "centerLeft",animation = {open = "gta_effects_fade_in", close = "gta_effects_fade_out"}})
  43.             end,
  44.             onspawn = function(player) end
  45.         },
  46.        
  47.         -- Begrundelse for løn
  48.         "Taxi.paycheck",
  49.        
  50.         --rettigheder her
  51.         "taxi.service",
  52.         "taxa.vehicle"
  53.     },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement