Advertisement
Johnanater

[OpenMod] IceMute Config - 2.0.0

Oct 11th, 2021
1,230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.79 KB | None | 0 0
  1. # IceMute Configuration
  2. # By Johnanater
  3.  
  4. ExemptFromMutePermission: true
  5. IgnoreGroupChat: false
  6. IgnoreCommands: false
  7. ForceUseReason: false
  8. MuteVoice: true
  9.  
  10. # Bad words
  11. EnableBadWordFilter: false
  12. BypassBadWordsPermission: true
  13. MuteOnBadWord: false
  14. # Censoring bad words will replace them with
  15. # the character of your choice in the translations
  16. # Enabling this might affect other chat-formatting plugins.
  17. CensorBadWords: false
  18. DeleteBadWordMessages: false
  19. BadWordList:
  20.   - Word: "badword"
  21.     Duration: 10
  22.     Reason: "That is a bad word!"
  23.   - Word: "literally the worst thing that you could possibly say"
  24.     Duration: 9999999
  25.     Reason: "Bad bad bad"
  26.    
  27.  
  28. # Discord webhook configuration
  29. # IceMute will upload mute information to the
  30. # defined webhook when a player gets muted.
  31. # You can learn how to set it up here:
  32. # https://support.discord.com/hc/en-us/articles/228383668-Intro-to-Webhooks
  33. WebhookConfig:
  34.   EnableWebhook: true
  35.   WebhookUrl: "YOUR_WEBHOOK_HERE"
  36.   WebhookColor: "FF0000"
  37.  
  38.  
  39. ChatConfig:
  40.  # Icon for the chat messages sent
  41.   ChatMessageIconUrl: "https://i.imgur.com/keofv6B.png"
  42.   ChatUseRichText: false
  43.  
  44.   # These chat colors are from Unity
  45.   # You can find out how to specify colors here:
  46.   # https://docs.unity3d.com/ScriptReference/ColorUtility.TryParseHtmlString.html
  47.   ChatMessageColor: "#00FF00"
  48.   ErrorChatMessageColor: "#FF0000"
  49.  
  50. #
  51. # Database Configuration
  52. #
  53.  
  54.  
  55. # Database types, you can choose between:
  56. # MySql, Yaml
  57. DatabaseType: Yaml
  58.  
  59. # Connection string for MySQL
  60. # You should only change the values here, but if you need to specify more, you can read here:
  61. # https://www.connectionstrings.com/mysql/
  62. database:
  63.   ConnectionStrings:
  64.     default: "Server=127.0.0.1; Database=IceMute; Port=3306; User=username; Password=password "
  65.    
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement