Advertisement
Guest User

Untitled

a guest
Jan 15th, 2017
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. --[[
  2. Name: sv_config.lua
  3. For: santosrp
  4. By: santosrp <- fuck you
  5. ]]--
  6.  
  7. --[[ SQL Settings ]]--
  8. if DEV_SERVER then
  9. GM.Config.SQLHostName = "localhost"
  10. GM.Config.SQLUserName = "santos_devserver"
  11. GM.Config.SQLPassword = "1234"
  12. GM.Config.SQLDBName = "santosrp"
  13. else
  14. GM.Config.SQLHostName = "66.150.121.213"
  15. GM.Config.SQLUserName = "root"
  16. GM.Config.SQLPassword = "Batease11"
  17. GM.Config.SQLDBName = "talos"
  18. end
  19.  
  20. GM.Config.SQLSnapshotRate = 5 *60 --Lower = less time between updates to sql. This value should be set with respect to the number of workers in use!
  21. GM.Config.SQLReconnectInterval = 1 *60 --Time to wait before retrying a lost sql connection
  22. GM.Config.SQLNumWriteWorkers = 8 --Number of connections to open to the sql server for writing player data with
  23.  
  24. --[[ IPB Settings ]]--
  25. GM.Config.ServerRegion = "US" --Options: US, EU
  26. GM.Config.IPBJobWhitelist = {
  27. ["JOB_POLICE"] = { 18 },
  28. ["JOB_FIREFIGHTER"] = { 20 },
  29. ["JOB_EMS"] = { 19 },
  30. ["JOB_MAYOR"] = { 23 },
  31. ["JOB_PROSECUTOR"] = { 24 },
  32. ["JOB_LAWYER"] = { 21 },
  33. ["JOB_JUDGE"] = { 25 },
  34. }
  35. GM.Config.IPBUlxGroups = {
  36. -- { group = "superadmin", ids = {4, (DEV_SERVER and 21 or nil)} },
  37. { group = "superadmin", ids = {4} },
  38. { group = "headadmin", ids = {7} },
  39. { group = "senior admin", ids = {8} },
  40. { group = "admin", ids = {9} },
  41. { group = "moderator", ids = {6} },
  42. { group = "vip", ids = {17} },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement