Advertisement
Guest User

Boutique ekhakanza

a guest
Mar 10th, 2013
1,379
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.90 KB | None | 0 0
  1. #####################
  2. # MYSQL INFORMATION #
  3. #####################
  4.  
  5. mysql_address: localhost
  6. mysql_database: Boutique
  7. mysql_user:
  8. mysql_password:
  9.  
  10. # You probably won't need to change this
  11. mysql_port: 3306
  12.  
  13. ##############
  14. # SHOP LIST #
  15. ##############
  16.  
  17. # This controls what may appear in the shop list
  18.  
  19. appear_in_shop_list_if:
  20. owner_online:
  21. shop_is_open: yes
  22. shop_is_closed: no
  23. owner_offline:
  24. shop_is_open: no
  25. shop_is_closed: no
  26.  
  27. max_shops_before_abbreviation: 20
  28.  
  29. # The abbreviated list format omits the descriptions and tells users only the usernames of shop owners.
  30. # The default, 20, means that if 21 users have shops that may appear in the shop list (taking into account how you set the other options), ...
  31. # ... then the abbreviated list of shops will appear
  32.  
  33. ##########################################################
  34. # SET THE COLOUR OF MESSAGES SENT TO PLAYERS AND CONSOLE #
  35. ##########################################################
  36.  
  37. # You may use the following colours:
  38. # black, dark_blue, dark_green, dark_aqua, dark_red, dark_purple, gold, gray, dark_gray, blue, green, aqua, red, light_purple, yellow, white
  39. # copy these exactly - do not use uppercase in colour names, and retain _underlines_:
  40.  
  41. ###################### Various message types
  42. # Colours used to tell the user various things
  43.  
  44. # Colour used when a non-player (usually console) performs a command they cannot use
  45. colourNonPlayerError: gold
  46.  
  47. # Colour used when a player makes an error in their command
  48. colourUserError: gold
  49.  
  50. # Colour used when the plugin has made a mistake. This could be a bug, or you could have set things up wrong
  51. colourPluginError: red
  52.  
  53. # Colour used when a command was executed successfully and the player is told this
  54. colourSuccessfulExecutionFeedback: dark_green
  55.  
  56. # Colour used to advise players how to use the plugin
  57. colourAdvice: dark_aqua
  58.  
  59. ###################### Shop List
  60. # Colours used in the '/shop list' table.
  61.  
  62. # colour of the two titles: 'shop' and 'description'
  63. colourListTitleShop: dark_purple
  64. colourListTitleDescription: dark_gray
  65.  
  66. # colours of entries in the table. Use may wish this to help distinguish for users which shops they can teleport to.
  67. colourListEntryShop:
  68. owner_online:
  69. shop_is_open: dark_aqua
  70. shop_is_closed: blue
  71. owner_offline:
  72. shop_is_open: red
  73. shop_is_closed: dark_red
  74.  
  75. colourListEntryDescription: gray
  76. # colour of the | separator used to divide shops and descriptions
  77. colourListBar: white
  78.  
  79. ###################### Displaying commands
  80. # Colours used to display commands. '/shop commands' shows both of these colours.
  81. colourCommandCommand: indigo
  82. colourCommandBar: white
  83.  
  84. ####################################################
  85. # NEVER change this - updates may not run smoothly #
  86. ####################################################
  87. # This value may not necessarily reflect the version of Boutique you are running
  88.  
  89. Boutique_version: 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement