Advertisement
Guest User

Untitled

a guest
Jul 17th, 2014
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.28 KB | None | 0 0
  1. #################################
  2. # SimpleAnnouncer Configuration #
  3. #################################
  4.  
  5. Locale: en_UK # The locale for the plugin. Requires a translated locale file. Defaults to en_UK
  6. # To use a custom locale make sure you have the appropriate file in the LangFiles folder
  7. # The format is [LOCALE].properties
  8.  
  9. DebugMode: false # Spams a load of stuff to the console. Useful for error reporting
  10.  
  11. DelayFromStart: 0 # The delay between announcements starting and the first announcement (in seconds)
  12.  
  13. Interval: 300 # The interval between announcements (in seconds)
  14.  
  15. DateFormat: 'hh:mm aa dd/MM/yy' # The date format for all the date related tags
  16. # See http://v.gd/SimpleDateFormat for more date formatting
  17.  
  18. Vault:
  19. Bother: true # Whether the plugin should even bother doing anything Vault related
  20.  
  21. Tag: '&f&l[&c&lALERT&f&l]&r ' # The prefix for all announcements. You can use tags here too!
  22.  
  23. AnnouncementMode: NORMAL # NORMAL = Announces in order written and then restarts (defaults NORMAL unless otherwise stated)
  24. # RANDOM = Announces in a completely random order
  25. # SHUFFLE = Announces in a random order but will not repeat announcements until all others have been announced
  26.  
  27. Announcements:
  28. 1: 'Wist je dat je op je SkyBlock &o/shop&r kan doen?'
  29. 2: 'Uiteraard is onze server nog in BETA, heb je bugs gevonden? Meld het bij de staffs!'
  30. 3: 'Omdat je natuurlijk Moderator of hoger heb mag je gerust bij mensen in vanish langs vliegen om te controleren wat ze doen!'
  31. 3: 'Je hebt als Moderator of hoger ook commands, snap je dat niet goed? Vraag het aan Gino!'
  32.  
  33. # Announcements run in this order:
  34. # Worlds checked -> Groups checked (if Vault is usable) -> Permissions checked -> [RB] Commands executed -> Announcement broadcasted -> Commands executed
  35.  
  36. Worlds:
  37. 1: 'skyworld' # Again, fairly self explanatory
  38. 2: 'survival' # Again, fairly self explanatory
  39. 2: 'survival_nether' # Again, fairly self explanatory
  40. 2: 'survival_the_end' # Again, fairly self explanatory
  41. 3: 'skyworld' # Again, fairly self explanatory
  42. 3: 'survival' # Again, fairly self explanatory
  43. 3: 'survival_nether' # Again, fairly self explanatory
  44. 3: 'survival_the_end' # Again, fairly self explanatory
  45. Groups: # VAULT IS NEEDED TO DO GROUP CHECKS
  46. 3: ['Eigenaar', 'MOD', 'ADMIN'] # Broadcast to two groups using the easy list method
  47.  
  48. Permissions:
  49. 99: 'some.permission' # Fairly self explanatory.
  50. 99: 'another.random.permission'
  51. 99:
  52. - 'some.permission' # You can split several permissions by spreading them over several lines
  53. - 'another.permission' # This announcement would only go to people with both permissions
  54.  
  55. Commands:
  56. 99: '/heal %pname%' # You can use tags in commands too!
  57. 99: 'smite %pname%' # You don't have to start with a slash...
  58. # You can even miss out announcements if you want
  59.  
  60. 99: # Here's where stuff gets complicated ;)
  61. - 'P:/balance' # Prefix with P: and the command will be run as every player who receives the announcement
  62. - 'C:/heal all' # Same as prefixing with P:, but this command will be run from the console (as op)
  63. - 'say spammy spammy spam spam' # By default the commands will act as if prefixed with
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement