The KISS Twitch bot
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

37 lines
902 B

  1. {
  2. "nickname": "yourbot",
  3. "channel": "yourchannel",
  4. "command_prefix": "!",
  5. "help": true,
  6. "commands": [
  7. {
  8. "name": "ping",
  9. "aliases": ["pong"],
  10. "message": "Pong @{author} Kappa"
  11. }
  12. ],
  13. "timer": {
  14. "between": {
  15. "time": 10,
  16. "messages": 10
  17. },
  18. "strategy": "round-robin",
  19. "pool": [
  20. {
  21. "name": "hello",
  22. "aliases": ["hi"],
  23. "message": "Hello World! HeyGuys"
  24. }
  25. ]
  26. },
  27. "moderator": {
  28. "caps-lock": {
  29. "activate": true,
  30. "min-size": 5,
  31. "threshold": 50,
  32. "decision": "delete",
  33. "message": "DON'T SHOUT LIKE THAT, {author}!!!"
  34. }
  35. }
  36. }