Advertisement
Guest User

Untitled

a guest
May 9th, 2016
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.01 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.SeperateForSite = false -- Set to true if you want to use seperate chat commands for opening donation page and opening menu
  8. Prometheus.OpenDonationCmd = "!donatesite" -- Used only if Prometheus.SeperateForSite is set to true, keep in mind to not have both be same command
  9.  
  10.  
  11. Prometheus.Access.AdminMenu = {"superadmin"} -- Groups that can access the admin menu. Examples: {"admin"} {"admin", "superadmin", "owner"} For AssMod use the number of the rank like: {1, 2}
  12.  
  13. Prometheus.NotifyEveryone = true -- If true, it will send a notification to everyone that a person on server has gotten a package
  14.  
  15. Prometheus.RefreshTime = 15 -- How often should it check for new actions (In seconds)
  16.  
  17. Prometheus.PlayerPackageCooldown = 10 -- How many seconds a person needs to wait before they can refresh their active packages(In menu)
  18.  
  19. Prometheus.ServerID = 1 -- ID of this server, will be given to you when you create it on your web side of prometheus
  20.  
  21. Prometheus.DebugInfo = false -- If enabled, will show debug info of actions, actions and other things in server console
  22.  
  23. 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)
  24.  
  25. Prometheus.Mysql.Host = "vitalityservers.org"
  26. Prometheus.Mysql.Port = 3306
  27. Prometheus.Mysql.Username = "ascensionrp2"
  28. Prometheus.Mysql.Password = "26sSiy4TdU"
  29. Prometheus.Mysql.DBName = "ascensionrp2_database2"
  30.  
  31. --[[ End of Config ]]--
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39. --[[ 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.
  40.  
  41. 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.
  42. 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).
  43. 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.
  44. 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.
  45. 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.
  46. 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.
  47. 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).
  48.  
  49. --[[ End of Fallback Config ]]--
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement