Advertisement
yuu16092

Untitled

Mar 13th, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.39 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: 54
  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. # The message shown when someone enables shuffle-mode
  34. string_music_shuffle: '&6Shuffle-Mode Enabled'
  35.  
  36. # The message shown when a new track is starting
  37. # Use #TRACK to insert the song name
  38. string_music_nowplaying: '&a#TRACKを流します'
  39.  
  40. # The message shown when someone enables radio-mode
  41. string_radio_enable: '&aRadio Enabled'
  42.  
  43. # The message shown when someone disables radio-mode
  44. string_radio_disable: '&cRadio Disabled'
  45.  
  46. # The message shown when someone already has radio-mode enabled
  47. string_radio_alreadyenabled: '&6Your radio has already been turned on'
  48.  
  49. # The message shown when a radio-song is being skipped
  50. string_radio_skip: '&6Skipped to the next radio-song'
  51.  
  52. # The message shown when someone enables shuffle-mode
  53. string_shuffle_enable: '&aShuffle Enabled'
  54.  
  55. # The message shown when someone disables shuffle-mode
  56. string_shuffle_disable: '&cShuffle Disabled'
  57.  
  58. # The message shown when a someone skips a track in shuffle-mode
  59. string_shuffle_skip: '&6Skipped to the next song'
  60.  
  61. # The message shown when an item is given
  62. # Use #ITEM to insert the item name
  63. # Use #PLAYER to insert the player name
  64. string_item_give: '&aSuccesfully sent item &2#ITEM &ato player &2#PLAYER'
  65.  
  66.  
  67.  
  68. # The item used inside the GUI to move one page backward
  69. item_menu_page_backward: 368:0 1 name:&5&lPrevious_Page
  70.  
  71. # The item used inside the GUI to move one page forward
  72. item_menu_page_forward: 381:0 1 name:&6&lNext_Page
  73.  
  74. # The item used inside the GUI to close the page
  75. item_menu_page_close: 378:0 1 name:&4&lClose
  76.  
  77. # The item used inside the GUI to disable music
  78. item_menu_music_disable: 341:0 1 name:&c&lDisable_Music
  79.  
  80. # The item used inside the GUI to enable the server radio
  81. item_menu_music_radio: 264:0 1 name:&3&lServer_Radio
  82.  
  83. # The item used inside the GUI to enable a random song
  84. item_menu_music_random: 84:0 1 name:&2&lRandom
  85.  
  86. # The item used inside the GUI to enable shuffle-mode
  87. item_menu_music_shuffle: 30:0 1 name:&9&lShuffle
  88.  
  89. # The item which can be held by a player and used to enable the server radio
  90. item_player_music_radio: 264:0 1 name:&3&lToggle_Radio
  91. # Whether the item above is enabled
  92. other_item_radio_enabled: true
  93. # Whether the item above can be dropped
  94. other_item_radio_candrop: false
  95.  
  96. # The item which can be held by a player and used to enable a random song
  97. item_player_music_random: 84:0 1 name:&6&lPlay_Random_Song
  98. # Whether the item above is enabled
  99. other_item_random_enabled: true
  100. # Whether the item above can be dropped
  101. other_item_random_candrop: false
  102.  
  103. # The item which can be held by a player and used to enable shuffle-mode
  104. item_player_music_shuffle: 2256:0 1 name:&a&lToggle_Music
  105. # Whether the item above is enabled
  106. other_item_shuffle_enabled: true
  107. # Whether the item above can be dropped
  108. other_item_shuffle_candrop: false
  109.  
  110. # The item which can be held by a player and used to open the music GUI
  111. item_player_music_list: 339:0 1 name:&5&lMusic
  112. # Whether the item above is enabled
  113. other_item_list_enabled: true
  114. # Whether the item above can be dropped
  115. other_item_list_candrop: false
  116.  
  117. # When set to true the plugin will use the name stored inside a song-file
  118. # When set to false the plugin will use the name of a song-file itself
  119. other_use_song_names_for_discs: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement