Guest User

Untitled

a guest
May 21st, 2018
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. # Config nodes:
  2. #
  3. # auto-reloadconfig(int): <Time in minutes to check/reload config for message updates(0 for off)>
  4. # NOTE: When config is reloaded, will reset delays for messages and cause one-time messages to resend
  5. # debug-mode(boolean): <Should we pring debug to server.log(true/false)?>
  6. # NOTE: Look for fine and finer level log messages in server.log
  7. # messages: Add messages below this, see below
  8. #
  9. # Messages config overview:
  10. # -------------------------
  11. #
  12. # <message label>(String, must be unique):
  13. # message(String, required): <Message to send>
  14. # delay(int, optional - default 0): <Delay to send message on in seconds>
  15. # repeat(int, optional): <time between repeat sendings of the message in seconds>
  16. # includesperms(String list, optional):
  17. # - <only send to those with this perm>
  18. # - <and this one>
  19. # excludesperms(String list, optional):
  20. # - <don't send to those with this perm>
  21. # - <and this one>
  22. #
  23. # -------------------------
  24. #
  25. # add messages you would like under 'messages:' section
  26.  
  27. auto-reloadconfig: 1
  28. debug-mode: false
  29. messages:
  30. Message1:
  31. message:&c Go to 11thdream.com for updates and more! Make sure to bookmark the page!
  32. delay:60
  33. repeat:60
  34. Message2:
  35. &cAll Vote today and earn ingame rewards!
  36. delay:240
  37. repeat:60
Add Comment
Please, Sign In to add comment