Advertisement
Crap-Head

Smuggling Config

May 7th, 2024
607
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.58 KB | None | 0 0
  1. --[[
  2.     Language Config
  3. --]]
  4. CH_Smuggling.Config.Language = "en" -- Set the language of the script.
  5.  
  6. --[[
  7.     General
  8. --]]
  9. CH_Smuggling.Config.NotificationTime = 10 -- How long will notifications last?
  10. CH_Smuggling.Config.DistanceTo3D2D = 50000 -- Distance before drawing 3d2d
  11.  
  12. CH_Smuggling.Config.PoliceTeams = { -- Teams allowed to confiscate smuggling entities
  13.     ["Police Officer"] = true,
  14.     ["Police Officer"] = true,
  15.     ["Police Officer"] = true,
  16. }
  17.  
  18. CH_Smuggling.Config.AllowedTeams = { -- Teams allowed to smuggle
  19.     ["Citizen"] = true,
  20.     ["Citizen"] = true,
  21.     ["Citizen"] = true,
  22. }
  23.  
  24. --[[
  25.     Police Confiscating
  26. --]]
  27. CH_Smuggling.Config.ConfiscateTime = 30 -- How long to confiscate?
  28. CH_Smuggling.Config.ConfiscateReward = 500 -- How much dollar for confiscation?
  29.  
  30. --[[
  31.     Missions
  32. --]]
  33. CH_Smuggling.Config.PlayersRequired = 0 -- How many players are required before missions are available?
  34. CH_Smuggling.Config.PoliceRequired = 0 -- How many cops are required before missions are available?
  35.  
  36. CH_Smuggling.Config.MaxMissions = 20 -- How many max missions at once?
  37. CH_Smuggling.Config.GenerateMissionInterval = { 10, 20 } -- Interval between creating a new active mission
  38.  
  39. CH_Smuggling.Config.SmuggleCooldown = 10 -- How much cooldown before being able to start a new mission? In seconds
  40.  
  41. CH_Smuggling.Config.KillReward = 100 -- Money reward for killing a smuggler
  42. CH_Smuggling.Config.XPStopSmuggler = 50 -- XP Reward for killing a smuggler
  43.  
  44. CH_Smuggling.Config.PoliceNotifyDelay = 30 -- How long after a mission start should cops be made aware of an active mission?
  45.  
  46. CH_Smuggling.Config.PackageDistanceToDropoff = 20000 -- Distance between drop-off and the package to be detected
  47.  
  48. --[[
  49.     NPCs
  50. --]]
  51. CH_Smuggling.Config.NPCShuffleInterval = { 10, 20 } -- Interval between changing NPC positions.
  52.  
  53. CH_Smuggling.Config.DrawDetailed3D2D = true -- Use detailed 3d2d above NPC head with pictures
  54. CH_Smuggling.Config.DrawSimplistc3D2D = true -- Use simplistic outlined text 3d2d
  55.  
  56. CH_Smuggling.Config.Employers = { -- When NPCs shuffle positions, they also shuffle name model and pose.
  57.     [1] = {
  58.         Name = "Marxus",
  59.         Model = "models/breen.mdl",
  60.         Pose = "idle01",
  61.     },
  62.     [2] = {
  63.         Name = "Valentine",
  64.         Model = "models/mossman.mdl",
  65.         Pose = "idle01",
  66.     },
  67.     [3] = {
  68.         Name = "Rogue",
  69.         Model = "models/Barney.mdl",
  70.         Pose = "idle01",
  71.     },
  72.     [4] = {
  73.         Name = "Alex",
  74.         Model = "models/Eli.mdl",
  75.         Pose = "idle01",
  76.     },
  77.     [5] = {
  78.         Name = "Iris",
  79.         Model = "models/gman_high.mdl",
  80.         Pose = "idle01",
  81.     },
  82. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement