Advertisement
zaklampje

error and world.yml

Apr 7th, 2011
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.96 KB | None | 0 0
  1. The error I get:
  2.  
  3.  
  4. 2011-04-07 17:40:49 [INFO] Starting minecraft server version Beta 1.4
  5. 2011-04-07 17:40:49 [INFO] Loading properties
  6. 2011-04-07 17:40:49 [INFO] Starting Minecraft server on *:25565
  7. 2011-04-07 17:40:49 [INFO] This server is running Craftbukkit version git-Bukkit-jenkins-dev-CraftBukkit-659 (MC: 1.4)
  8. 2011-04-07 17:40:49 [INFO] Preparing level "world"
  9. 2011-04-07 17:40:49 [INFO] Preparing start region
  10. 2011-04-07 17:40:50 [INFO] 144 recipes
  11. 2011-04-07 17:40:50 [INFO] Invalid config file found and converted to proper name/format.
  12. 2011-04-07 17:40:50 [INFO] [Permissions] (Phoenix) was Initialized.
  13. 2011-04-07 17:40:50 [INFO] [Permissions] version [2.5.5] (Phoenix) loaded
  14. 2011-04-07 17:40:50 [INFO] Done (0,084s)! For help, type "help" or "?"
  15.  
  16.  
  17.  
  18. Configfile:
  19.  
  20.  
  21. # System is no longer used, but may become used in the future
  22. # Copies is for multiple-world support
  23. # Put the name of the world you wish for it to be a clone of, otherwise leave it empty.
  24. # If this file is for your default world (the one in server.properties) then you must
  25. # leave copies blank.
  26. # Example: copies: Derp - This will clone the permissions of the world Derp
  27. #
  28. # Make sure to rename this file to the name of the world that is in sever.properties under
  29. # level-name. So if it is level-name: world then this should be world.yml and in the
  30. # plugins/Permissions directory (ie. plugins/Permissions/world.yml)
  31. #
  32. # NOTE: Do not use tabs while editing this document. Use only spaces. A good way to avoid
  33. # doing this is to use Notepad++ and replace the tab with 4 spaces.
  34. plugin:
  35. permissions:
  36. system: default
  37. copies:
  38.  
  39. ##
  40. # AntiBuild is included with this. To disable a group from being able to build then
  41. # set the build: flag to false (build: false). If you want a group to be able to build
  42. # then set it to true.
  43. ##
  44. # Groups can contain inheritance.
  45. # To make a group inherit the permissions from another
  46. # group simply place the groups name in the "inheritance:" like so:
  47. #
  48. # Example:
  49. # inheritance:
  50. # - Default
  51. ##
  52. # All permissions including the asterisks must be placed in single quotes.
  53. # like so:
  54. #
  55. # - 'foo.bar'
  56. #
  57. # Otherwise errors will happen!
  58. ##
  59. # Globalized Permission settings:
  60. #
  61. # If a permission contains periods (.) you can denote a globalized parameter:
  62. #
  63. # - 'foo.*'
  64. #
  65. # This will allow you to use all general commands.
  66. #
  67. ##
  68. # Single Asterisk denotes all commands:
  69. #
  70. # - '*'
  71. # If you give a group this permissions, do not have the group inherit any permissions
  72. # from other groups. Any users assigned to this group should NOT be given any additional
  73. # permissions either.
  74. ##
  75. # To exempt a node use the - prefix like so:
  76. # - '-foo.bar'
  77. ##
  78. # prefix: and suffix: do not do anything on their own. You need another outside plugin
  79. # such as iChat or HeroChat in order for these to do anything.
  80. groups:
  81. Default:
  82. default: true
  83. info:
  84. prefix: ''
  85. suffix: ''
  86. build: false
  87. inheritance:
  88. permissions:
  89. - 'foo.bar'
  90. Moderator:
  91. default: false
  92. info:
  93. prefix: ''
  94. suffix: ''
  95. build: true
  96. inheritance:
  97. - Default
  98. permissions:
  99. - 'bar.foo'
  100. Admins:
  101. default: false
  102. info:
  103. prefix: ''
  104. suffix: ''
  105. build: true
  106. inheritance:
  107. permissions:
  108. - '*'
  109.  
  110. ##
  111. # Users denote which users are included in which group.
  112. # TheNo1Yeti is in the Admin group
  113. # Herpina is a member of the Moderator group but also has access
  114. # to the herp.derp permissions
  115. # Derpina is a member of the admin group but does not have access
  116. # to the derp.derp permission node
  117. # Users can also have a prefix and suffix as seen with Herpina
  118. ##
  119. users:
  120. zaklampje:
  121. group: Admins
  122. permissions:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement