Advertisement
Guest User

Untitled

a guest
Jul 5th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.57 KB | None | 0 0
  1. --[[ Config ]]--
  2.  
  3. Prometheus.WebsiteEnabled = true -- If true, the chat command will be enabled (Opens menu)
  4.  
  5. Prometheus.WebsiteCmd = "!donate" -- Command they need to type in chat to open your website
  6.  
  7. Prometheus.CanCheckRankCmd = true -- Can people re-check their ranks?
  8. Prometheus.CheckRankCmd = "!checkrank" -- Command they can type in chat to force a re-check on their rank which will assign them the latest rank that they have bought(Can happen in all kinds of cases, admin mod messes up, rank files are lost etc)
  9.  
  10. Prometheus.SeperateForSite = false -- Set to true if you want to use seperate chat commands for opening donation page and opening menu
  11. Prometheus.OpenDonationCmd = "!donatesite" -- Used only if Prometheus.SeperateForSite is set to true, keep in mind to not have both be same command
  12.  
  13. Prometheus.DropPermaWeaponOnDeath = false -- Should a permanent weapon given by Prometheus drop when a person dies
  14. Prometheus.CanDropPermaWeapon = false -- Can a perma weapon be dropped? If set to false weapon will be destroyed when dropped(Except on DarkRP where it simply cannot be dropped).
  15.  
  16. Prometheus.Access.AdminMenu = {"admin", "superadmin"} -- Groups that can access the admin menu. Examples: {"admin"} {"admin", "superadmin", "owner"} For AssMod use the number of the rank like: {1, 2}
  17.  
  18. Prometheus.NotifyEveryone = true -- If true, it will send a notification to everyone that a person on server has gotten a package
  19.  
  20. Prometheus.RefreshTime = 40 -- How often should it check for new actions (In seconds)
  21.  
  22. Prometheus.PlayerPackageCooldown = 10 -- How many seconds a person needs to wait before they can refresh their active packages(In menu)
  23.  
  24. Prometheus.ServerID = 1 -- ID of this server, will be given to you when you create it on your web side of prometheus
  25.  
  26. Prometheus.DebugInfo = false -- If enabled, will show debug info of actions, actions and other things in server console
  27.  
  28. Prometheus.LoadSettingsFromDB = true -- If false, will always use the FallBackSettings, useful if you want different servers to have different text in the notifications(Different language servers)
  29.  
  30. Prometheus.Mysql.Host = ""
  31. Prometheus.Mysql.Port = 3306
  32. Prometheus.Mysql.Username = ""
  33. Prometheus.Mysql.Password = ""
  34. Prometheus.Mysql.DBName = ""
  35.  
  36. --[[ End of Config ]]--
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44. --[[ Fallback Config ]]-- No need to edit! In here are settings that are set up using the web interface, but in case of a failed connection, these will be used.
  45.  
  46. Prometheus.FallbackSettings.message_receiverPerma = "You have received a donator package. {package}. This package is permanent and does not expire." -- Message that will show up to the package reciever. {name} gets replaced by persons name, {package} gets replaced by packages name.
  47. Prometheus.FallbackSettings.message_receiverNonPerma = "You have received a donator package. {package}. This package is not permanent and expires {expire}." -- Message that will show up to everyone else(If enabled). {name} gets replaced by persons name, {package} gets replaced by packages name, {expire} gets replaced by date on which package expires (YYYY-MM-DD).
  48. Prometheus.FallbackSettings.message_receiverRevoke = "Your package, {package} has been revoked. If you believe this is unjustified, please contact an administrator." -- Message that will show up to the package reciever if their package gets revoked. {name} gets replaced by persons name, {package} gets replaced by packages name.
  49. Prometheus.FallbackSettings.message_receiverExpire = "Your package, {package} has expired." -- Message that will show up to the package reciever when their package expires. {name} gets replaced by persons name, {package} gets replaced by packages name.
  50. Prometheus.FallbackSettings.message_othersCredits = "{name} has donated and received {amount} credit(s)" -- Message that will show up to everyone when someone buys a credit package. {name} gets replaced by persons name, {amount} gets replaced by the amount of credits they receive.
  51. Prometheus.FallbackSettings.message_receiverCredits = "You have received {amount} credit(s)" -- Message that will show up to the person when they buy a credit package. {amount} gets replaced by the amount of credits they receive.
  52. Prometheus.FallbackSettings.message_others = "{name} has received their package, {package} for donating!" -- Message that will show up to everyone else when receiver gets their package. Works if Prometheus.NotifyEveryone is true. {name} gets replaced by persons name, {package} gets replaced by packages name, {expire} gets replaced by date on which package expires (YYYY-MM-DD).
  53.  
  54. --[[ End of Fallback Config ]]--
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement