Advertisement
yuu16092

Untitled

Mar 12th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.36 KB | None | 0 0
  1. =====================================================
  2. = StatioCraft =
  3. = JukeBox =
  4. =---------------------------------------------------=
  5. = Plugin Configuration =
  6. =====================================================
  7.  
  8. # The size of the musiclist GUI
  9. # NOTE: make sure the size is at least 9
  10. # also make sure the size can be divided by 9
  11. # (for instance: 9, 18, 27, 36, 45, 54, etc.)
  12. # The specified size does NOT include the top-row
  13. # containing navigation items
  14. # If the requirements above are not met, the plugin
  15. # will use it's default-value
  16. other_default_menu_size: 45
  17.  
  18. # The action which will be performed when a player
  19. # joins the server
  20. # 3 = turn on server-radio
  21. # 2 = play random song
  22. # 1 = enable shuffle-mode
  23. # 0 = do nothing
  24. other_action_on_join: 0
  25.  
  26. # The message shown in the music-list inventory title
  27. # Use #CURRENT to insert the current pagenumber
  28. # Use #TOTAL to insert the total amount of pages
  29. string_menu_title: &5Music List - Page &d#CURRENT&5/#TOTAL
  30.  
  31. # The message shown when someone disables a music track
  32. string_music_disable: &c曲を停止します
  33.  
  34. # The message shown when someone enables shuffle-mode
  35. string_music_shuffle: &6Shuffle-Mode Enabled
  36.  
  37. # The message shown when a new track is starting
  38. # Use #TRACK to insert the song name
  39. string_music_nowplaying: &a#TRACKを流します
  40.  
  41. # The message shown when someone enables radio-mode
  42. string_radio_enable: &aRadio Enabled
  43.  
  44. # The message shown when someone disables radio-mode
  45. string_radio_disable: &cRadio Disabled
  46.  
  47. # The message shown when someone already has radio-mode enabled
  48. string_radio_alreadyenabled: &6Your radio has already been turned on
  49.  
  50. # The message shown when a radio-song is being skipped
  51. string_radio_skip: &6Skipped to the next radio-song
  52.  
  53. # The message shown when someone enables shuffle-mode
  54. string_shuffle_enable: &aShuffle Enabled
  55.  
  56. # The message shown when someone disables shuffle-mode
  57. string_shuffle_disable: &cShuffle Disabled
  58.  
  59. # The message shown when a someone skips a track in shuffle-mode
  60. string_shuffle_skip: &6Skipped to the next song
  61.  
  62. # The message shown when an item is given
  63. # Use #ITEM to insert the item name
  64. # Use #PLAYER to insert the player name
  65. string_item_give: &aSuccesfully sent item &2#ITEM &ato player &2#PLAYER
  66.  
  67.  
  68.  
  69. # The item used inside the GUI to move one page backward
  70. item_menu_page_backward: 368:0 1 name:&5&lPrevious_Page
  71.  
  72. # The item used inside the GUI to move one page forward
  73. item_menu_page_forward: 381:0 1 name:&6&lNext_Page
  74.  
  75. # The item used inside the GUI to close the page
  76. item_menu_page_close: 378:0 1 name:&4&lClose
  77.  
  78. # The item used inside the GUI to disable music
  79. item_menu_music_disable: 341:0 1 name:&c&lDisable_Music
  80.  
  81. # The item used inside the GUI to enable the server radio
  82. item_menu_music_radio: 264:0 1 name:&3&lServer_Radio
  83.  
  84. # The item used inside the GUI to enable a random song
  85. item_menu_music_random: 84:0 1 name:&2&lRandom
  86.  
  87. # The item used inside the GUI to enable shuffle-mode
  88. item_menu_music_shuffle: 30:0 1 name:&9&lShuffle
  89.  
  90. # The item which can be held by a player and used to enable the server radio
  91. item_player_music_radio: 264:0 1 name:&3&lToggle_Radio
  92. # Whether the item above is enabled
  93. other_item_radio_enabled: true
  94. # Whether the item above can be dropped
  95. other_item_radio_candrop: false
  96.  
  97. # The item which can be held by a player and used to enable a random song
  98. item_player_music_random: 84:0 1 name:&6&lPlay_Random_Song
  99. # Whether the item above is enabled
  100. other_item_random_enabled: true
  101. # Whether the item above can be dropped
  102. other_item_random_candrop: false
  103.  
  104. # The item which can be held by a player and used to enable shuffle-mode
  105. item_player_music_shuffle: 2256:0 1 name:&a&lToggle_Music
  106. # Whether the item above is enabled
  107. other_item_shuffle_enabled: true
  108. # Whether the item above can be dropped
  109. other_item_shuffle_candrop: false
  110.  
  111. # The item which can be held by a player and used to open the music GUI
  112. item_player_music_list: 339:0 1 name:&5&lMusic
  113. # Whether the item above is enabled
  114. other_item_list_enabled: true
  115. # Whether the item above can be dropped
  116. other_item_list_candrop: false
  117.  
  118. # When set to true the plugin will use the name stored inside a song-file
  119. # When set to false the plugin will use the name of a song-file itself
  120. other_use_song_names_for_discs: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement