settingtypes.txt 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. [Basic]
  2. # Whether to automatically connect to the server on mod load.
  3. # If false, you must use /irc_connect to connect.
  4. irc.auto_connect (Auto-connect on load) bool true
  5. # Nickname for the bot. May only contain characters A-Z, 0-9
  6. # '{', '}', '[', ']', '|', '^', '-', or '_'.
  7. irc.nick (Bot nickname) string Botter
  8. # Server to connect to.
  9. irc.server (IRC server) string cddo.cc
  10. # Server port.
  11. # The standard IRC protocol port is 6667 for regular servers,
  12. # or 6697 for SSL-enabled servers.
  13. # If unsure, leave at 6667.
  14. irc.port (IRC server port) int 1337 1 65535
  15. # Channel the bot joins after connecting.
  16. irc.channel (Channel to join) string #theroot
  17. [Authentication]
  18. # Password for authenticating to NickServ.
  19. # Leave empty to not authenticate with NickServ.
  20. irc.NSPass (NickServ password) string
  21. # IRC server password.
  22. # Leave empty for no password.
  23. irc.password (Server password) string
  24. # Password for joining the channel.
  25. # Leave empty if your channel is not protected.
  26. irc.key (Channel key) string
  27. # Enable TLS connection.
  28. # Requires LuaSEC <https://github.com/brunoos/luasec>.
  29. irc.secure (Use TLS) bool false
  30. # Username for SASL authentication.
  31. # Leave empty to use the nickname.
  32. irc.sasl.user (SASL username) string
  33. # Password for SASL authentication.
  34. # Leave empty to not authenticate via SASL.
  35. irc.sasl.pass (SASL password) string
  36. [Advanced]
  37. # Enable this to make the bot send messages when players join
  38. # or leave the game server.
  39. irc.send_join_part (Send join and part messages) bool true
  40. # Enable this to make the bot send messages when players are kicked.
  41. irc.send_kicks (Send kick messages) bool false
  42. # Underlying socket timeout in seconds.
  43. irc.timeout (Timeout) int 60 1
  44. # Time between reconnection attempts, in seconds.
  45. irc.reconnect (Reconnect delay) int 600 1
  46. # Prefix to use for bot commands.
  47. irc.command_prefix (Command prefix) string
  48. # Enable debug output.
  49. irc.debug (Debug mode) bool false
  50. # Whether to enable players joining and parting the channel.
  51. irc.enable_player_part (Allow player join/part) bool true
  52. # Whether to automatically show players in the channel when they join.
  53. irc.auto_join (Auto join players) bool true