Advertisement
r1cky1

Bot Actions

Apr 8th, 2017
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.01 KB | None | 0 0
  1. # This file holds pinylib's configuration.
  2. # Tinychat account.
  3. ACCOUNT = ''
  4. # Password for account
  5. PASSWORD = ''
  6. # The swf version that tinychat is currently using.
  7. SWF_VERSION = '0677'
  8. # Log chat messages and events.
  9. CHAT_LOGGING = True
  10. # Show additional info/errors in console.
  11. DEBUG_MODE = False
  12. # Log debug info to file.
  13. DEBUG_TO_FILE = False
  14. # Logging level for the debug file.
  15. DEBUG_LEVEL = 30
  16. # Use colors for the console.
  17. CONSOLE_COLORS = True
  18. # Enable auto job (recommended)
  19. ENABLE_AUTO_JOB = True
  20. # Time format.
  21. USE_24HOUR = True
  22. # Reset the run time after a reconnect.
  23. RESET_INIT_TIME = False
  24. # Reconnect delay in seconds.
  25. RECONNECT_DELAY = 10
  26. # Auto job interval in seconds.
  27. AUTO_JOB_INTERVAL = 360
  28. # The name of pinylib's debug log file.
  29. DEBUG_FILE_NAME = 'pinylib_debug.log'
  30. # The path to the config folder.
  31. CONFIG_PATH = 'rooms/'
  32.  
  33. # This section holds the bot's configuration.
  34. # https://github.com/Tinychat/Tinychat-Bot/wiki
  35. # The prefix used for bot commands.
  36. B_PREFIX = '!'
  37. # Bot controller key.
  38. B_KEY = 'fy7djei'
  39. # Bot super key.
  40. B_SUPER_KEY = 'sa83jk4ls'
  41. # The maximum amount of match bans.
  42. B_MAX_MATCH_BANS = 1
  43. # Public commands enabled.
  44. B_PUBLIC_CMD = True
  45. # Greet user when joining.
  46. B_GREET = True
  47. # Allow newuser to join the room.
  48. B_ALLOW_NEWUSERS = True
  49. # Allow broadcasting.
  50. B_ALLOW_BROADCASTS = True
  51. # Allow guests to enter the room.
  52. B_ALLOW_GUESTS = True
  53. # Allow lurkers to enter the room.
  54. B_ALLOW_LURKERS = True
  55. # Allow guest nicks.
  56. B_ALLOW_GUESTS_NICKS = True
  57. # Forgive auto bans.
  58. B_FORGIVE_AUTO_BANS = True
  59. # The file name of nick bans.
  60. B_NICK_BANS_FILE_NAME = 'nick_bans.txt'
  61. # A list of all the nick bans.
  62. B_NICK_BANS = []
  63. # The file name of account bans.
  64. B_ACCOUNT_BANS_FILE_NAME = 'account_bans.txt'
  65. # A list of account bans.
  66. B_ACCOUNT_BANS = []
  67. # The file name of string(words) bans.
  68. B_STRING_BANS_FILE_NAME = 'string_bans.txt'
  69. # A list of string bans.
  70. B_STRING_BANS = []
  71. # The name of the bot's debug file.
  72. B_DEBUG_FILE_NAME = 'tinybot_debug.log'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement