Guest User

Untitled

a guest
Dec 24th, 2024
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. Config = {}
  2.  
  3. Config.Debug = true -- Shows prints
  4. Config.Framework = 'ESX' -- Options available are ESX and QBCore
  5. Config.RequiredPolice = 0 -- Required police that need to be online for selling drugs
  6. Config.Dispatch = 'linden_outlawalert' -- Change this to your desired dispatch system ('linden_outlawalert', 'cd_dispatch', 'ps-dispatch', 'qs-dispatch', 'codem-dispatch', 'custom')
  7.  
  8. Config.NPCFightsWhenRejected = false -- makes the pedestrian fight you if he rejects the sale
  9. Config.RejectionChance = 20 -- in % the chance that the ped rejects your sale and calls the police
  10.  
  11. Config.NotifyPolice = true -- Notify the police when a ped calls the police
  12. Config.NotifyPoliceOnRejectionChance = 20 -- in % the chance that the ped calls the police when rejecting the sale
  13.  
  14. Config.PedList = {
  15. "u_m_y_militarybum",
  16. "u_m_m_blane",
  17. "u_m_y_party_01",
  18. "ig_ramp_gang",
  19. "ig_maude",
  20. "s_m_m_lifeinvad_01",
  21. "g_m_y_ballaeast_01",
  22. "g_f_y_families_01",
  23. "cs_old_man2",
  24. "cs_denise"
  25. } -- list of peds that spawn
  26.  
  27. Config.AdminGroups = {
  28. "group.admin",
  29. "group.god",
  30. "group.superadmin"
  31. }
  32.  
  33.  
  34. -- Config.XP = { (TO BE IMPLEMENTED)
  35. -- [1] = 500
  36. -- }
  37.  
  38. Config.MenuCommand = "editdrugs" -- Command to open the menu (Admins only)
  39. Config.StartSelling = 'dealer' -- Command to start selling drugs
  40. Config.StopSelling = 'stopdealer' -- Command to stop selling drugs
  41.  
  42. Config.WaitTimeSearching = math.random(5000, 10000) -- The time it takes to search for a client, currently 5-10 seconds measured in milliseconds.
Advertisement
Add Comment
Please, Sign In to add comment