Minecraft Permissions

Diese Seite verwendet Cookies. Durch die Nutzung unserer Seite erklären Sie sich damit einverstanden, dass wir Cookies setzen. Weitere Informationen

  • Minecraft Permissions

    Hallo! Ich habe vergebens seit 12 Stunden versuche, Permissions auf meinem Server richtig einzurichten. Warum komm ich nicht in eine Andere Gruppe? Und warum können Member noch die Funktionen wie den Server Stoppen nutzen?
    Kann mir jmd. eine fertige .yml Posten, mit Gast,Bewohner,Moderator,Admin?
    Gast ist anfangs--> darf nichts.
    Bewohner--> So standart wie bauen und spwan
    Mod und Admin erklärt sich von selber.

    Ich wäre euch mega Dankbar.
    Ich bin am verzweifeln und ich könnte weinen, die ganzen tuts bringen mich auch nicht weiter. :(
  • Werbung zur Unterstützung des Forums ( Bitte AddBlocker deaktivieren )

  • Hat sich bereits erledigt! Ich habe jetzt Essential instaliert. Damit habe ich die Gruppen und die dafür geigneten Berechtigungen. Nur ich habe ein Problen, wenn ich als Admin /help eingeben bekommme ich nur die letze Seite. Wie muss ich meine config einstellen, sodass ich alles sehen kann. (/help page 1 etc.)

    Quellcode

    1. ############################################################
    2. # +------------------------------------------------------+ #
    3. # | Notes | #
    4. # +------------------------------------------------------+ #
    5. ############################################################
    6. # If you want to use special characters in this document, such as accented letters, you MUST save the file as UTF-8, not ANSI.
    7. # If you receive an error when Essentials loads, ensure that:
    8. # - No tabs are present: YAML only allows spaces
    9. # - Indents are correct: YAML heirarchy is based entirely on indentation
    10. # - You have "escaped" all apostrophes in your text: If you want to write "don't", for example, write "don''t" instead (note the doubled apostrphe)
    11. # - List items are prefixed with a hyphen and indented:
    12. # lists:
    13. # - look like this
    14. # not:
    15. # - like this
    16. # - Text with symbols is enclosed in single or double quotation marks
    17. # - CraftBukkit and Permissions have been updated: CraftBukkit and Essentials almost always line up, but sometimes other plugins fall behind CraftBukkit's multiple daily updates
    18. # - You have saved the document as UTF-8, NOT the default, ANSI
    19. ############################################################
    20. # +------------------------------------------------------+ #
    21. # | Essentials (Global) | #
    22. # +------------------------------------------------------+ #
    23. ############################################################
    24. # A color code between 0-9 or a-f. Set to 'none' to disable.
    25. ops-name-color: 'c'
    26. # The character(s) to prefix all nicknames, so that you know they are not true usernames.
    27. nickname-prefix: '~'
    28. # The delay, in seconds, required between /home, /tp, etc.
    29. teleport-cooldown: 0
    30. # The delay, in seconds, before a user actually teleports. If the user moves or gets attacked in this timeframe, the teleport never occurs.
    31. teleport-delay: 0
    32. # The delay, in seconds, required between /heal attempts
    33. heal-cooldown: 60
    34. # The number of items given if the quantity parameter is left out in /item or /give.
    35. default-stack-size: 64
    36. # What to prevent from /i /give
    37. # e.g item-spawn-blacklist: 46,11,10
    38. item-spawn-blacklist:
    39. # Set this to true if you want permission based item spawn rules
    40. # Permissions:
    41. # - essentials.itemspawn.item-all
    42. # - essentials.itemspawn.item-[itemname]
    43. # - essentials.itemspawn.item-[itemid]
    44. # - essentials.give.item-all
    45. # - essentials.give.item-[itemname]
    46. # - essentials.give.item-[itemid]
    47. permission-based-item-spawn: false
    48. # Whether or not to reclaim memory on player logout; this is technical, and should only be changed under special circumstances.
    49. # This generally increases server stability unless very specific runtime configurations are used.
    50. # HOWEVER, it is known to cause lag upon users logging OUT, so beware!
    51. reclaim-onlogout: false
    52. # Should primitive spawn protection be enabled? For most servers, this should be flase; it is better to use a third-party plugin to protect it.
    53. spawn-protection: true
    54. # Nether settings (switch between worlds with "/world nether" and "/world normal")
    55. # Sets whether the nether system is enabled, what folder to save the world in, and whether portals should teleport players between worlds.
    56. nether:
    57. enabled: false
    58. folder: nether
    59. portals-enabled: false
    60. generate-exit-portals: false
    61. ratio: 16
    62. # Mob limit on spawnmob
    63. spawnmob-limit: 10
    64. #Shall we notify users when using /lightning
    65. warn-on-smite: true
    66. # The message of the day, displayed on connect and by typing /motd.
    67. motd:
    68. - '&cWillkommen, {PLAYER}&c!'
    69. - '&fTipp &c/help&f fuer die Befehlsliste ein.'
    70. - 'Gerade Online: {PLAYERLIST}'
    71. - 'Du hast {MAILS} Nachrichten'
    72. # The server rules, available by typing /rules
    73. rules:
    74. - '[1] Griefen Verboten '
    75. - '[2] Keine Beleidigungen'
    76. - '[3] Frag nach Hilfe'
    77. # When a command conflicts with another plugin, by default, Essentials will try to force the OTHER plugin to take
    78. # priority. If a command is in this list, Essentials will try to give ITSELF priority. This does not always work:
    79. # usually whichever plugin was updated most recently wins out. However, the full name of the command will always work.
    80. # For example, if WorldGuard and Essentials are both enabled, and WorldGuard takes control over /god, /essentials:god
    81. # will still map to Essentials, whereas it might normally get forced upon WorldGuard. Commands prefixed with an "e",
    82. # such as /egod, will always grant Essentials priority.
    83. # We should try to take priority over /god. If this doesn't work, use
    84. # /essentials:god or /egod. If god is set using WorldGuard, use /ungod to remove then use whichever you see fit.
    85. overridden-commands:
    86. - god
    87. # Disabled commands will be completelly unavailable on the server.
    88. disabled-commands:
    89. # - nick
    90. # Restricted commands will only be available to ops.
    91. # These will have NO EFFECT if you have Permissions installed!
    92. # These are here only if you want something simpler than Permissions.
    93. restricted-commands:
    94. - bigtree
    95. - item
    96. - give
    97. - heal
    98. - plugin
    99. - time
    100. - top
    101. - tp
    102. - tphere
    103. - tree
    104. - setspawn
    105. - antioch
    106. - kick
    107. - ban
    108. - unban
    109. - top
    110. - jump
    111. - tpo
    112. - tppos
    113. - tpohere
    114. - economy
    115. - setwarp
    116. - delwarp
    117. - essentials
    118. - gc
    119. - spawnmob
    120. - broadcast
    121. - burn
    122. - ext
    123. - kill
    124. - ping
    125. - banip
    126. - unban
    127. - mute
    128. - kick
    129. - kickall
    130. - unbanip
    131. - togglejail
    132. - setjail
    133. - eco.loan
    134. # Note: All items MUST be followed by a quantity!
    135. # Times are measured in seconds.
    136. kits:
    137. tools:
    138. delay: 10
    139. items:
    140. - 277 1
    141. - 278 1
    142. - 279 1
    143. # Disable all signs
    144. signs-disabled: false
    145. # Backup runs a command while saving is disabled
    146. backup:
    147. # Interval in minutes
    148. interval: 60
    149. # Add a command that backups your data, e.g.
    150. # command: 'rdiff-backup World1 backups/World1'
    151. # Set this true to enable permission per warp.
    152. per-warp-permission: false
    153. # Sort output of /list command by groups
    154. sort-list-by-groups: false
    155. # More output to the console
    156. debug: false
    157. # Set the locale for all messages
    158. # If you don't set this, the default locale of the server will be used.
    159. #locale: de_DE
    160. ############################################################
    161. # +------------------------------------------------------+ #
    162. # | EssentialsHome | #
    163. # +------------------------------------------------------+ #
    164. ############################################################
    165. # When users die, should they respawn at their homes, instead of the spawnpoint?
    166. respawn-at-home: false
    167. # When a user interacts with a bed, should their home be set to that location?
    168. # If you enable this and remove default user access to the /sethome command, you can make beds the only way for players to set their home location.
    169. bed-sethome: false
    170. #if no home is set send you to spawn when /home is used
    171. spawn-if-no-home: false
    172. ############################################################
    173. # +------------------------------------------------------+ #
    174. # | EssentialsEco | #
    175. # +------------------------------------------------------+ #
    176. ############################################################
    177. # Defines the balance with which new players begin. Defaults to 0.
    178. starting-balance: 0
    179. # worth-# defines the value of an item when it is sold to the server via /sell.
    180. # These are now defined in worth.yml
    181. # Defines the cost to use the given commands PER USE
    182. command-costs:
    183. # /example costs $1000 PER USE
    184. #example: 1000
    185. # /kit tools costs $1500 PER USE
    186. #kit-tools: 1500
    187. # Set this to a currency symbol you want to use.
    188. currency-symbol: '$'
    189. ############################################################
    190. # +------------------------------------------------------+ #
    191. # | EssentialsHelp | #
    192. # +------------------------------------------------------+ #
    193. ############################################################
    194. #Show other plugins commands in help
    195. non-ess-in-help: true
    196. ############################################################
    197. # +------------------------------------------------------+ #
    198. # | EssentialsChat | #
    199. # +------------------------------------------------------+ #
    200. ############################################################
    201. # If EssentialsChat is installed, this will define how far a player's voice travels, in blocks. Set to 0 to make all chat global.
    202. # Note that users with the "essentials.chat.spy" permission will hear everything, regardless of this setting.
    203. # Users with essentials.chat.shout can override this by prefixing text with an exclamation mark (!)
    204. # Or with essentials.chat.question can override this by prefixing text with a question mark (?)
    205. chat:
    206. radius: 0
    207. # If set to the default chat format which "should" be compatible with ichat.
    208. format: '<{DISPLAYNAME}> {MESSAGE}'
    209. #format: '&7[{GROUP}]&f {DISPLAYNAME}&7:&f {MESSAGE}'
    210. # You can also have group-specific formats, uncomment to enable:
    211. group-formats:
    212. # Default: '{WORLDNAME} {DISPLAYNAME}&7:&f {MESSAGE}'
    213. # Admins: '{WORLDNAME} &c[{GROUP}]&f {DISPLAYNAME}&7:&c {MESSAGE}'
    214. ############################################################
    215. # +------------------------------------------------------+ #
    216. # | EssentialsProtect | #
    217. # +------------------------------------------------------+ #
    218. ############################################################
    219. protect:
    220. # Database settings for sign/rail protection
    221. # get mysql.jar and sqlite and place it in your serverroot/lib directory from here:
    222. # [url=http://java.net/projects/essentials/sources/svn/show/lib?rev=435]Essentials: SVN &mdash; Java.net[/url]
    223. # mysql, sqlite or none
    224. datatype: 'sqlite'
    225. # If you specified MySQL above, you MUST enter the appropriate details here.
    226. # If you specified SQLite above, these will be IGNORED.
    227. username: 'root'
    228. password: 'root'
    229. mysqlDb: 'jdbc:mysql://localhost:3306/minecraft'
    230. # For which block types would you like to be alerted?
    231. # You can find a list of IDs in plugins/Essentials/items.csv after loading Essentials for the first time.
    232. alert:
    233. # 10: lava
    234. # 11: still lava
    235. # 46: TNT
    236. on-placement: 10,11,46
    237. on-use:
    238. # 46: TNT
    239. on-break: 46
    240. # Users cannot PLACE these types of blocks/items.
    241. # < 255 designates a BLOCK
    242. # > 255 designates an ITEM (Some blocks can be placed as blocks OR items; lava blocks can be placed by lava buckets, for example.)
    243. blacklist:
    244. placement: 327,326,14,56,46,11,10,9,8
    245. usage: 327,326,325
    246. #prevent people from breaking blocks
    247. #break: 20,50
    248. break:
    249. # General physics/behavior modifications
    250. prevent:
    251. lava-flow: false
    252. water-flow: false
    253. water-bucket-flow: false
    254. fire-spread: true
    255. lava-fire-spread: true
    256. flint-fire: false
    257. lightning-fire-spread: true
    258. portal-creation: false
    259. tnt-explosion: false
    260. creeper-explosion: false
    261. creeper-playerdamage: false
    262. creeper-blockdamage: false
    263. # Monsters won't follow players
    264. # permission essentials.protect.entitytarget.bypass disables this
    265. entitytarget: false
    266. # Prevent the spawning of creatures
    267. spawn:
    268. chicken: false
    269. cow: false
    270. creeper: false
    271. ghast: true
    272. giant: false
    273. monster: false
    274. pig: false
    275. pig_zombie: false
    276. sheep: false
    277. skeleton: false
    278. slime: true
    279. spider: false
    280. squid: false
    281. zombie: false
    282. wolf: false
    283. # Maximum height the creeper should explode. -1 allows them to explode everywhere.
    284. # Set prevent.creeper-explosion to true, if you want to disable creeper explosions.
    285. creeper:
    286. max-height: -1
    287. # Protect various blocks.
    288. protect:
    289. # Protect all signs
    290. signs: true
    291. # Prevent users from destroying rails
    292. rails: true
    293. # Blocks below rails/signs are also protected if the respective rail/sign is protected.
    294. # This makes it more difficult to circumvent protection, and should be enabled.
    295. # This only has an effect if "rails" or "signs" is also enabled.
    296. block-below: true
    297. # Prevent placing blocks above protected rails, this is to stop a potential griefing
    298. prevent-block-on-rails: false
    299. # Disable various default physics and behaviors
    300. disable:
    301. # Should fall damage be disabled?
    302. fall: false
    303. # Users with the essentials.protect.pvp permission will still be able to attack each other if this is set to true.
    304. # They will be unable to attack users without that same permission node.
    305. pvp: false
    306. # Should drowning damage be disabled?
    307. # (Split into two behaviors; generally, you want both set to the same value)
    308. drown: false
    309. suffocate: false
    310. # Should damage via lava be disabled? Items that fall into lava will still burn to a crisp. ;)
    311. lavadmg: false
    312. # Should arrow damage be disabled
    313. projectiles: false
    314. # This will disable damage from touching cacti.
    315. contactdmg: false
    316. # Burn, baby, burn! Should fire damage be disabled?
    317. firedmg: false
    318. # Should the damage after hit by a lightning be disabled?
    319. lightning: false
    320. # Should people with build: false in permissions be allowed to build
    321. # Set true to disable building for those people
    322. build: true
    323. #Should we tell people they are not allowed to build
    324. warn-on-build-disallow: false
    325. #disable weather options
    326. weather:
    327. storm: false
    328. thunder: false
    329. lightning: false
    330. ############################################################
    331. # +------------------------------------------------------+ #
    332. # | New Players | #
    333. # +------------------------------------------------------+ #
    334. ############################################################
    335. newbies:
    336. # Should we announce to the server when someone logs in for the first time?
    337. # If so, use this format, replacing {DISPLAYNAME} with the player name.
    338. # If not, set to ''
    339. #announce-format: ''
    340. announce-format: '&dWillkommen {DISPLAYNAME} auf dem Server'
    341. # When we spawn for the first time, which spawnpoint do we use?
    342. spawnpoint: newbies
    343. # End of File <-- No seriously, you're done with configuration.
    344. groups:
    345. Default:
    346. default: true
    347. permissions:
    348. - essentials.help
    349. - essentials.helpop
    350. - essentials.list
    351. - essentials.motd
    352. - essentials.rules
    353. - essentials.spawn
    354. inheritance: []
    355. info:
    356. prefix: '&e'
    357. build: false
    358. suffix: ''
    359. SemiAdmin:
    360. default: false
    361. permissions:
    362. - -groupmanager.mantogglesave
    363. - essentials
    364. - essentials.clearinventory
    365. - essentials.cooldown.bypass
    366. - essentials.deljail
    367. - essentials.give
    368. - essentials.god
    369. - essentials.heal
    370. - essentials.heal.others
    371. - essentials.invsee
    372. - essentials.item
    373. - essentials.jails
    374. - essentials.kickall
    375. - essentials.kit.*
    376. - essentials.mute
    377. - essentials.sell
    378. - essentials.setjail
    379. - essentials.signs.protection.override
    380. - essentials.spawnmob
    381. - essentials.teleport.cooldown.bypass
    382. - essentials.teleport.timer.bypass
    383. - essentials.togglejail
    384. - groupmanager.*
    385. - essentials.burn
    386. inheritance:
    387. - moderator
    388. info:
    389. prefix: '&c'
    390. build: true
    391. suffix: ''
    392. Builder:
    393. default: false
    394. permissions:
    395. - essentials.afk
    396. - essentials.back.ondeath
    397. - essentials.balance
    398. - essentials.chat.shout
    399. - essentials.compass
    400. - essentials.home
    401. - essentials.kit
    402. - essentials.kit.tools
    403. - essentials.mail
    404. - essentials.mail.send
    405. - essentials.me
    406. - essentials.msg
    407. - essentials.nick
    408. - essentials.pay
    409. - essentials.portal
    410. - essentials.protect
    411. - essentials.sethome
    412. - essentials.signs.buy.use
    413. - essentials.signs.disposal.create
    414. - essentials.signs.disposal.use
    415. - essentials.signs.free.use
    416. - essentials.signs.heal.use
    417. - essentials.signs.mail.create
    418. - essentials.signs.mail.use
    419. - essentials.signs.protection.create
    420. - essentials.signs.protection.use
    421. - essentials.signs.sell.use
    422. - essentials.signs.trade.create
    423. - essentials.signs.trade.use
    424. - essentials.suicide
    425. - essentials.tpa
    426. - essentials.tpaccept
    427. - essentials.tpahere
    428. - essentials.tpdeny
    429. - essentials.warp
    430. - essentials.warp.list
    431. - essentials.worth
    432. inheritance:
    433. - default
    434. info:
    435. prefix: '&2'
    436. build: true
    437. suffix: ''
    438. Moderator:
    439. default: false
    440. permissions:
    441. - essentials.back
    442. - essentials.ban
    443. - essentials.banip
    444. - essentials.broadcast
    445. - essentials.delwarp
    446. - essentials.depth
    447. - essentials.eco
    448. - essentials.getpos
    449. - essentials.jump
    450. - essentials.kick
    451. - essentials.kill
    452. - essentials.setwarp
    453. - essentials.time
    454. - essentials.togglejail
    455. - essentials.top
    456. - essentials.tp
    457. - essentials.tphere
    458. - essentials.tpo
    459. - essentials.tpohere
    460. - essentials.tppos
    461. - essentials.tptoggle
    462. - essentials.unban
    463. - essentials.unbanip
    464. - essentials.whois
    465. - essentials.world
    466. - groupmanager.listgroups
    467. - groupmanager.mandemote
    468. - groupmanager.manload
    469. - groupmanager.manpromote
    470. - groupmanager.mansave
    471. - groupmanager.manselect
    472. - groupmanager.manuadd
    473. - groupmanager.ma****l
    474. - essentials.ext
    475. inheritance:
    476. - builder
    477. info:
    478. prefix: '&5 [Admin]'
    479. build: true
    480. suffix: ''
    481. Admin:
    482. default: false
    483. permissions:
    484. - -essentials.protect.damage.*
    485. - '*'
    486. inheritance:
    487. - semiadmin
    488. info:
    489. prefix: '&4'
    490. build: true
    491. suffix: ''
    Alles anzeigen