Advertisement
Guest User

Untitled

a guest
Mar 7th, 2015
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 KB | None | 0 0
  1. # WeatherSync configuration file
  2.  
  3. # How frequently to update the weather, in minutes.
  4. updatetime: 5
  5.  
  6. # Whether to show the weather/forecast to users on join.
  7. # (Formatting of this may be possible in the future; request it if
  8. # you're interested!)
  9. forecast-on-join: false
  10.  
  11. # Whether to allow users to use the forecast command.
  12. forecast-command-enabled: true
  13.  
  14. # Whether to show the changes in weather to players when it happens
  15. # Yes, this variable is named poorly.
  16. show-forecast: false
  17.  
  18. # Whether to have debug mode on.
  19. # You'll want this off for most servers, but turn it on if you have problems and
  20. # it will give you extra information about what is going wrong.
  21. # Please turn this on if you have issues, and report any unusual output.
  22. debug: false
  23.  
  24. # The worlds to manage the weather on.
  25. # name: The name of the world.
  26. # rssfile: The RSS File to get the weather from.
  27. # To get this, get your weather on http://wunderground.com, and
  28. # find the rss link for your location. It should be towards the top on
  29. # the right.
  30. worlds:
  31. - name: world
  32. rssfile: http://rss.wunderground.com/auto/rss_full/global/stations/71639.xml?units=metric
  33. # - name: someplace
  34. # rssfile: http://rss.wunderground.com/auto/rss_full/MA/Boston.xml?units=english
  35.  
  36.  
  37. # Message configuration!
  38. # You can change the messages output by this plugin here.
  39. # Feel free to ignore this section if you are not interested.
  40. # Color numbers must be prefixed by [color] (Sorry, yaml doesn't like certain characters)
  41. # For clear/rain/thunder/snow, [default] contains the more descriptive weather text from the website.
  42. # You could change these to add color to certain types of weather, or to rename a type of weather
  43. # to something else.
  44. # For example, if you did:
  45. # - rain: raining frogs
  46. # The user would then see "Currently: raining frogs!" when it rains.
  47. messages:
  48. weather: "[color]7Currently: [weather]"
  49. weather-updated: "[color]7The weather is now [weather]"
  50. forecast: "[color]7[forecast]"
  51. clear: "[default]"
  52. rain: "[default]"
  53. snow: "[default]"
  54. thunder: "[default]"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement