Advertisement
Guest User

Untitled

a guest
Apr 29th, 2016
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 KB | None | 0 0
  1. #
  2. # This is the configuration for AmpleChatBot
  3. # If you are receiving errors, please report it on Github. It really helps the development of this plugin.
  4. #
  5. # If you are interested in how this plugin works (code wise) you can view the source code from GitHub.
  6. # You can also open an issue here for any feature requests / bug reporting.
  7. # https://github.com/Drepic26/AmpleChatBot2
  8. #
  9.  
  10. # Language the plugin should use by default.
  11. # If you would like to help translate this plugin to your language, you can contribute here: http://translateacb.drevelopment.com/
  12. # available languages are: en_US
  13. # US English
  14. locale: en_US
  15.  
  16. # BotName is what users see in chat as the player name.
  17. BotName: 'Pail'
  18.  
  19. # Message Display:
  20. # %botname = BotName
  21. # %player = Player invoking the question
  22. # %message = Message the bot sends to players.
  23. # * Chat Colors and formating is supported!
  24. Display: '<%botname> %message'
  25.  
  26. # Response Delay
  27. # Allows you to set how long the bot will wait to respond in server ticks.
  28. # - The Default is 2 server ticks.
  29. # - There are 20 ticks per second.
  30. Delay: 2
  31.  
  32. # Acceptable response rate in percentage:
  33. # Acceptable range 0-100
  34. # Anything greater then the percentage will be the response,
  35. Allowable: 80
  36.  
  37. # Anti-Abuse Settings For Bot:
  38. # Protects bot from people looking to abuse it.
  39. #
  40. # AbuseRatio: Triggered Responses;seconds
  41. # Action: kick|mute|ignore
  42. # AbuseKick: reason for kicking them.
  43. AbuseRatio: 3;20
  44. AbuseAction: ignore
  45. AbuseKick: '[AmpleBot] Do not abuse me or I will keep kicking you!'
  46.  
  47. #
  48. # Database Settings
  49. #
  50. # sql-type should be either 'MySQL' or 'SQLite'
  51. sql-type: SQLite
  52. # Ignore these options if you are using SQLite
  53. MySQL-options:
  54. hostname: localhost
  55. port: '3306'
  56. database: AmpleChatBot
  57. username: minecraft
  58. password: password
  59.  
  60. # If set to false, the plugin will not automatically download new updates
  61. auto-update: true
  62.  
  63. # Metrics collects information about AmpleChatBot, such as version and amount of usage.
  64. # If this is disabled, no info will be sent to http://mcstats.org/plugin/AmpleChatBot
  65. use-metrics: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement