Advertisement
Guest User

Untitled

a guest
Nov 18th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.18 KB | None | 0 0
  1. # ------------------------------------------------------------------------------- #
  2. # MAIN CONFIGURATION FILE, VERSION 0.4.1 (no changes since 0.4)
  3. #
  4. # SUPPORTED OPTIONS:
  5. # - "log" = Log this event to the console and the server logs.
  6. # - "chat" = Print to chat for people who have the right permissions.
  7. # - "notice" = Print to Pixelmon's noticeboard (top of screen) if permitted.
  8. # - "hover" = Adds a hoverable overview if possible. Only works with "chat".
  9. # - "reveal" = Also reveals IVs in hovers. Needs "hover" and "chat".
  10. # - To disable all options, remove all listed toggles and then set "none".
  11. #
  12. # IMPORTANT:
  13. # - Hovers are currently unsupported on trades and trainer/PvP battle messages.
  14. # - Hovers also do not show on noticeboard messages.
  15. # - Reveals are disabled on all spawns/challenges due to Pixelmon limitations.
  16. # - Be very careful with enabling reveals on blackouts/forfeits, very abusable!
  17. # - If a Pokémon is both an UB/legendary and a shiny, either toggle will work.
  18. #
  19. # NOTES:
  20. # - This sidemod is currently in beta -- functionality WILL change!
  21. # - To translate or otherwise change event broadcasts, open "broadcasts.conf".
  22. # - To translate or otherwise change other mod messages, open "messages.conf".
  23. # - Commands will generally not trigger our events, technical reasons. :(
  24. # ------------------------------------------------------------------------------- #
  25.  
  26. # # # CONFIG VERSION - DO NOT TOUCH UNLESS TOLD TO! # # #
  27. # This is used internally to check for outdated (and possibly dangerous) configs.
  28. # If needed, we show a warning on boot. The sidemod may be disabled until fixed.
  29. configVersion = 41
  30.  
  31. # # # COMMAND ALIAS # # #
  32. # A forward slash will automatically be added where necessary, don't add one.
  33. # If you do not want to create an alias, set this to: "pixelmonbroadcasts"
  34. commandAlias = "pbroadcasts"
  35.  
  36. # # # ABILITY SHOWING # # #
  37. # Should we show abilities in hovers? These can be somewhat spoiler-y.
  38. showAbilities = true
  39.  
  40. # # # OPTION TOGGLES # # #
  41. # Add or remove words to toggle options. See the list above.
  42. # # Blackouts (players losing battles)
  43. normalBlackoutOptions = none
  44. shinyBlackoutOptions = none
  45. legendaryBlackoutOptions = none
  46. ultraBeastBlackoutOptions = none
  47. bossBlackoutOptions = none
  48. trainerBlackoutOptions = none
  49. bossTrainerBlackoutOptions = none
  50.  
  51. # # Catches
  52. normalCatchOptions = none
  53. shinyCatchOptions = log chat hover reveal
  54. legendaryCatchOptions = log chat hover reveal
  55. ultraBeastCatchOptions = log chat hover reveal
  56.  
  57. # # Challenges (players starting battles)
  58. shinyChallengeOptions = none
  59. legendaryChallengeOptions = none
  60. ultraBeastChallengeOptions = none
  61. bossChallengeOptions = none
  62. trainerChallengeOptions = none
  63. bossTrainerChallengeOptions = none
  64. pvpChallengeOptions = none
  65.  
  66. # # Forfeits (players fleeing from battles)
  67. shinyForfeitOptions = none
  68. legendaryForfeitOptions = none
  69. ultraBeastForfeitOptions = none
  70. bossForfeitOptions = none
  71. trainerForfeitOptions = none
  72. bossTrainerForfeitOptions = none
  73.  
  74. # # Spawns (wild, events may not work -- likely coming in a future update)
  75. shinySpawnOptions = log chat hover
  76. legendarySpawnOptions = log chat hover
  77. ultraBeastSpawnOptions = log chat hover
  78. wormholeSpawnOptions = log chat hover
  79. bossSpawnOptions = log chat hover
  80.  
  81. # # Victories (players winning battles)
  82. shinyVictoryOptions = none
  83. legendaryVictoryOptions = none
  84. ultraBeastVictoryOptions = none
  85. bossVictoryOptions = none
  86. trainerVictoryOptions = none
  87. bossTrainerVictoryOptions = none
  88. pvpVictoryOptions = none
  89.  
  90. # # Eggs hatching
  91. normalHatchOptions = none
  92. shinyHatchOptions = none
  93. legendaryHatchOptions = none
  94. ultraBeastHatchOptions = none
  95.  
  96. # # Draws (ties, no winner/loser)
  97. pvpDrawOptions = none
  98.  
  99. # # Evolutions (completed only)
  100. evolveOptions = none
  101.  
  102. # # Fainting (individual Pokémon, mostly for Nuzlocke setups)
  103. faintOptions = none
  104.  
  105. # # Trades
  106. tradeOptions = none
  107.  
  108. # ------------------------------------------------------------------------------- #
  109. # To reload the configs on the fly, use "/pixelmonbroadcasts reload".
  110. #
  111. # Please tag/PM me with any issues. Enjoy the mod! -- XpanD
  112. # ------------------------------------------------------------------------------- #
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement