Advertisement
Johnanater

[OpenMod] IceLotto Config - 2.0.0

Nov 7th, 2021
1,232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.42 KB | None | 0 0
  1. # IceLotto Configuration
  2. # By Johnanater
  3.  
  4. # How long should the lottery go on for?
  5. DrawTimeHours: 48
  6. # How much should each ticket cost?
  7. TicketCost: 100
  8. # How many tickets should a player be allowed to buy?
  9. # 0 = infinite
  10. TicketCap: 0
  11.  
  12. # Should the UI be enabled?
  13. # If false, then commands will be used
  14. EnableUi: true
  15.  
  16. # Should players be told about the lottery on join?
  17. AnnounceOnLogin: true
  18.  
  19. # Config for a Discord webhook, will announce the winner when
  20. # the lottery is drawn
  21. DiscordWebhook:
  22.   Enabled: false
  23.   WebhookUrl: YOUR_DISCORD_WEBHOOK_HERE
  24.   HexColor: 00FF00
  25.   Tts: false
  26.   MentionHere: false
  27.  
  28.  
  29. #
  30. # Chat Config
  31. #
  32.  
  33. ChatConfig:
  34.  # Icon for the chat messages sent
  35.   ChatMessageIconUrl: "https://i.imgur.com/t0dhFW2.png"
  36.   ChatUseRichText: false
  37.  
  38.   # These chat colors are from Unity
  39.   # You can find out how to specify colors here:
  40.   # https://docs.unity3d.com/ScriptReference/ColorUtility.TryParseHtmlString.html
  41.   ChatMessageColor: "#00FF00"
  42.   ErrorChatMessageColor: "#FF0000"
  43.  
  44.  
  45. #
  46. # Database Configuration
  47. #
  48.  
  49. # Database types, you can choose between:
  50. # MySql, Json
  51. DatabaseType: Json
  52.  
  53. # Connection string for MySQL
  54. # You should only change the values here, but if you need to specify more, you can read here:
  55. # https://www.connectionstrings.com/mysql/
  56. database:
  57.   ConnectionStrings:
  58.     default: "Server=127.0.0.1; Database=IceLotto; Port=3306; User=username; Password=password "
  59.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement