Advertisement
namekuzi

Untitled

Dec 18th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.61 KB | None | 0 0
  1. # Copyright DarkBlade12 - All rights reserved.
  2. # DarkBlade12 is the developer and respective owner of this plugin.
  3.  
  4. # This section contains general plugin settings
  5. General_Settings:
  6.  
  7. # Determines whether the debug mode is enabled (prints error stacktraces in the console)
  8. # You should only set this to 'true' if you have some problems you can't solve
  9. Debug_Mode_Enabled: true
  10.  
  11. # This is the ending of the language file name that will be loaded
  12. # ItemSlotMachine will attempt to load 'lang_<name>.txt'
  13. # Built-in names are 'EN' for English and 'DE' for German
  14. Language_Name: jp
  15.  
  16. # This section contains general slot machine settings
  17. Slot_Machine_Settings:
  18.  
  19. # This is the default name for slot machines that will be used for generating ids
  20. # This string has to contain <num> otherwise it'll automatically add this to the end of this name
  21. # Please note: <num> can't be in the middle of the name
  22. Default_Name: slot<num>
  23.  
  24. # This section contains settings for the space check upon attempting to build a slot machine
  25. # The space check will deny building of the slot machine if it finds any block in the area of the slot machine that is not air and not on the ignored blocks list
  26. Space_Check:
  27.  
  28. # Determines whether the space check is enabled
  29. # If this is set to false building a slot machine will replace EVERY block
  30. Enabled: true
  31.  
  32. # This is a list of blocks which are ignored in the space check
  33. # Block format: <block_id/block_name>
  34. # Format: <block>(, <block>...)
  35. Ignored_Blocks: 78, 31
  36.  
  37. # This section contains settings for the coin which is used to activate a slot machine
  38. Coin_Settings:
  39.  
  40. # This is the item that will be used as coin
  41. # Item format: <item_id/item_name> OR <item_id/item_name>-<data>
  42. Item: 371
  43.  
  44. # Determines whether only the renamed coin item can be used to activate a slot machine
  45. Common_Item_Enabled: true
  46.  
  47. # This is the price for a single coin which is important for purchasing coins
  48. # This value can be either a point number or a normal number
  49. Price: 100
  50.  
  51. # This section contains settings for the limited usage of slot machines
  52. Limited_Usage:
  53.  
  54. # Determines whether limited use is enabled
  55. Enabled: true
  56.  
  57. # This is the maximum amount of slot machines that can be used by ONE player at once
  58. Amount: 1
  59.  
  60. # This section contains general design settings
  61. Design_Settings:
  62.  
  63. # This is the default name for designs that will be used for generating ids
  64. # This string has to contain <num> otherwise it'll automatically add this to the end of this name
  65. # Please note: <num> can't be in the middle of the name
  66. Default_Name: design<num>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement