Command Probleme

03/27/2011 09:38 sonti#1
Heyho !

Vorab, es wird wohl zu 90 % an Permissions liegen. Ich hab also den Usern alle ihre Rechte eingetragen, darunter natürlich auch general.spawn ,essentials.sethome etc. eingetragen, nur leider können sie /spawn ( und mehr ) nicht benutzen.. Andersherum ist es so, dass sie kein magic carpet eingetragen haben, und ihn trotzdem benutzen können.

Einer eine Idee ?
03/27/2011 10:30 KingZuck#2
Dann versuch es einfach anders rum trag ein das sie magic carpert givt ect drüfen vll gehen die nicht aber das andere

Hört sich zwar kommisch an aber ein versuch ist es wert ;=)
03/27/2011 10:44 Angeldust™#3
Schau mal hier unter dem Punkt Set up Permissions.
[Only registered and activated users can see links. Click Here To Register...]

Denke so wie sich das anhört hast du nen Fehler in der Inheritance.

Wäre super wenn du deine .yml datei hier mal in nen
Code:
[CODE]
[/CODE] reinpacken würdest.

Hier is mal nen Beispiel wie sowas aussehen sollte:

Code:
groups:
    User:
        default: true
        info:
            prefix: 
            suffix:
            build: false
        inheritance: 
        permissions:
            - 'essentials.home'
            - 'essentials.sethome'
            - 'essentials.spawn'
            - 'essentials.setwarp'
            - 'essentials.help'
            - 'essentials.tpahere'
            - 'essentials.kit'
            - 'essentials.kit.<kitname>'
            - 'essentials.kit.*'
            - 'essentials.clearinventory'
            - 'essentials.helpop'
            - 'essentials.mail'
            - 'essentials.mail.send'
            - 'essentials.me'
            - 'essentials.motd'
            - 'essentials.rules'
            - 'essentials.list'
            - 'essentials.afk'
            - 'essentials.msg'
            - 'lwc.protect'
            - 'herochat.create'
    Moderator:
        default: false
        info:
            prefix: '&a[Moderator] '
            suffix:
            build: true
        inheritance:
            - User
        permissions:
            - 'essentials.depth'
            - 'essentials.getpos'
            - 'essentials.compass'
            - 'essentials.top'
            - 'essentials.jump'
            - 'essentials.back'
            - 'essentials.broadcast'
            - 'essentials.time'
            - 'essentials.spawnmob'
            - 'essentials.ping'
            - 'essentials.heal'
            - 'essentials.eco'
            - 'essentials.worth'
            - 'essentials.sell'
            - 'essentials.tp'
            - 'essentials.tphere'
            - 'essentials.kick'
            - 'essentials.item'

    GameMaster:
        default: false
        info:
            prefix: '&9[Game-Master] '
            suffix:
            build: false
        inheritance:
            - Moderator
        permissions:
            - 'essentials.warp'
            - 'essentials.setwarp'
            - 'essentials.delwarp'
            - 'essentials.ban'
            - 'essentials.unban'
            - 'essentials.tpahere'
            - 'essentials.tphere'
            - 'essentials.tpohere'
            - 'essentials.tppos'
            - 'essentials.tpa'
            - 'essentials.tpaccept'
            - 'essentials.tpdeny'
            - 'essentials.tpo'
            - 'essentials.bigtree'
            - 'essentials.tree'
            - 'essentials.heal'
            - 'essentials.give'
            - 'essentials.item'
            - 'essentials.nick'
            - 'essentials.kill'
            - 'essentials.antioch'
            - 'essentials.reloadall'
            - 'lwc.protect'
    Admin:
        default: false
        info:
            prefix: '&4[Admin] '
            suffix:
            build: true
        inheritance:
        permissions:
            - '*'
    Head-Admin:
        default: false
        info:
            prefix: '&4[Head-Admin] '
            suffix:
            build: true
        inheritance:
        permissions:
            - '*'

##
# Hier die User in die Gruppen eintragen :D
##
users:
    burningacidsdk:
        group: Head-Admin
        permissions:

Pack einfach deine genauso wie ich in nem Code und poste es hier. Ich sag dir dann wo du nen Fehler hast.
03/27/2011 11:38 sonti#4
Gute Idee.

Code:
# System is no longer used, but may become used in the future
# Copies is for multiple-world support
#   Put the name of the world you wish for it to be a clone of, otherwise leave it empty.
#   If this file is for your default world (the one in server.properties) then you must
#   leave copies blank.
#  Example: copies: Derp    -  This will clone the permissions of the world Derp
#
# Make sure to rename this file to the name of the world that is in sever.properties under
# level-name.  So if it is level-name: world  then this should be world.yml and in the 
# plugins/Permissions directory (ie. plugins/Permissions/world.yml)
#
# NOTE: Do not use tabs while editing this document.  Use only spaces.  A good way to avoid
# doing this is to use Notepad++ and replace the tab with 4 spaces.
plugin:
    permissions:
        system: default
        copies: 

##        
# AntiBuild is included with this.  To disable a group from being able to build then
# set the build: flag to false (build: false).  If you want a group to be able to build
# then set it to true. 
##
# Groups can contain inheritance.
#   To make a group inherit the permissions from another
#   group simply place the groups name in the "inheritance:" like so:
#
#   Example:
#       inheritance:
#           - Default
##
#   All permissions including the asterisks must be placed in single quotes.
#   like so:
#
#       - 'foo.bar'
#
#   Otherwise errors will happen!
##
#   Globalized Permission settings:
#
#       If a permission contains periods (.) you can denote a globalized parameter:
#
#           - 'foo.*'
#
#       This will allow you to use all general commands.
#
##
#   Single Asterisk denotes all commands:
#
#       - '*'
#   If you give a group this permissions, do not have the group inherit any permissions
#   from other groups.  Any users assigned to this group should NOT be given any additional
#   permissions either.
##
#   To exempt a node use the - prefix like so:
#       - '-foo.bar'
##
#   prefix: and suffix: do not do anything on their own.  You need another outside plugin
#   such as iChat or HeroChat in order for these to do anything.
groups:
    User:
        default: false
        info:
            prefix: ''
            suffix: ''
            build: true
        inheritance:
        permissions:
            - 'general.spawn'
            - 'essentials.home'
            - 'essentials.sethome'
            - 'essentials.msg'
            - 'essentials.warp'
            - 'essentials.warp.list'
            - 'essentials.help'
            - 'essentials.afk'
            - 'essentials.mail.send'
            - 'essentials.helpop'
            - 'essentials.whois'
            - 'lwc.protect'
    Builder:
        default: false
        info:
            prefix: ''
            suffix: ''
            build: true
        inheritance:
        permissions:
            - 'general.spawn'
            - 'essentials.home'
            - 'essentials.sethome'
            - 'essentials.msg'
            - 'essentials.warp'
            - 'essentials.warp.list'
            - 'essentials.help'
            - 'essentials.afk'
            - 'essentials.mail.send'
            - 'essentials.helpop'
            - 'essentials.whois'
            - 'lwc.protect'
            - 'essentials.item'
            - 'essentials.kit.*'
            - 'magiccarpet.mc'
    VIP:
        default: false
        info:
            prefix: ''
            suffix: ''
            build: true
        inheritance:
        permissions:
            - 'general.spawn'
            - 'essentials.home'
            - 'essentials.sethome'
            - 'essentials.msg'
            - 'essentials.warp'
            - 'essentials.warp.list'
            - 'essentials.help'
            - 'essentials.afk'
            - 'essentials.mail.send'
            - 'essentials.helpop'
            - 'essentials.whois'
            - 'lwc.protect'
            - 'essentials.item'
            - 'essentials.kit.*'
            - 'magiccarpet.mc'
    Moderator:
        default: false
        info:
            prefix: ''
            suffix: ''
            build: true
        inheritance:
            - Default
        permissions:
            - 'bar.foo'
    Admin:
        default: false
        info:
            prefix: ''
            suffix: ''
            build: true
        inheritance:
        permissions:
            - '*'

##
# Users denote which users are included in which group.
# TheNo1Yeti is in the Admin group
# Herpina is a member of the Moderator group but also has access
# to the herp.derp permissions
# Derpina is a member of the admin group but does not have access
# to the derp.derp permission node
# Users can also have a prefix and suffix as seen with Herpina
##
users:
    Mostey:
        group: Admin
        permissions:

    Lattella:
        group: Admin
        info:
            prefix:  
            suffix: 
        permissions:

    ssonti:
        group: Admin
        permissions:

    happysk1ll:
        group: Builder
        permissions:
03/27/2011 18:51 Angeldust™#5
Yo ich schau kurz drüber.

Andere Frage:

Wie heisst dein World Ordner und wie heisst deine .yml datei vorne.



Yay .. nun gehts

Du hattest mehrere Fehler
Unter anderem hast du vergessen die User Gruppe als default festzulegen, also die Gruppe in der jeder neue User spawnt wenn er joint.

Nächstes mal wärs auch schön wenn du vom inheritance System gebrauch machst. :D

Deine Gruppen können die gleichen Rechte wie du sie wolltest bzw mir gegeben hattest aber in meiner Kurzform ist es übersichtlicher.

naja liebe grüße an Mostey und du musst mich noch wieder austragen!



Code:
# System is no longer used, but may become used in the future
# Copies is for multiple-world support
#   Put the name of the world you wish for it to be a clone of, otherwise leave it empty.
#   If this file is for your default world (the one in server.properties) then you must
#   leave copies blank.
#  Example: copies: Derp    -  This will clone the permissions of the world Derp
#
# Make sure to rename this file to the name of the world that is in sever.properties under
# level-name.  So if it is level-name: world  then this should be world.yml and in the 
# plugins/Permissions directory (ie. plugins/Permissions/world.yml)
#
# NOTE: Do not use tabs while editing this document.  Use only spaces.  A good way to avoid
# doing this is to use Notepad++ and replace the tab with 4 spaces.
plugin:
    permissions:
        system: default
        copies: 

##################
##################
##################
##################
groups:
    default:
        default: false
        info:
            prefix: ''
            suffix: ''
            build: true
        inheritance:
        permissions:
##################        
    User:
        default: true
        info:
            prefix: ''
            suffix: ''
            build: true
        inheritance:
            - default
        permissions:
            - 'general.spawn'
            - 'essentials.home'
            - 'essentials.sethome'
            - 'essentials.msg'
            - 'essentials.warp'
            - 'essentials.warp.list'
            - 'essentials.help'
            - 'essentials.afk'
            - 'essentials.mail.send'
            - 'essentials.helpop'
            - 'essentials.whois'
            - 'lwc.protect'
##################            
    Builder:
        default: false
        info:
            prefix: ''
            suffix: ''
            build: true
        inheritance:
            - User
        permissions:
            - 'general.spawn'
            - 'essentials.item'
            - 'essentials.kit.*'
            - 'magiccarpet.mc'
##################
    VIP:
        default: false
        info:
            prefix: ''
            suffix: ''
            build: true
        inheritance:
            - Builder
        permissions:
            - 'essentials.kick'
            - 'essentials.give'
##################
    Admin:
        default: false
        info:
            prefix: ''
            suffix: ''
            build: true
        inheritance:
        permissions:
            - '*'
##################
##################
##################
users:
    Mostey:
        group: Admin
        permissions:

    Lattella:
        group: Admin
        permissions:

    ssonti:
        group: Admin
        permissions:
03/27/2011 19:33 sonti#6
Super, danke ! Was meinst du mit Interhance System ? :D
Noch wat : Grad kein User on, aber depri (vip) hats drin stehen und kann immer noch kein /spawn.

Code :


Code:
# System is no longer used, but may become used in the future
# Copies is for multiple-world support
#   Put the name of the world you wish for it to be a clone of, otherwise leave it empty.
#   If this file is for your default world (the one in server.properties) then you must
#   leave copies blank.
#  Example: copies: Derp    -  This will clone the permissions of the world Derp
#
# Make sure to rename this file to the name of the world that is in sever.properties under
# level-name.  So if it is level-name: world  then this should be world.yml and in the 
# plugins/Permissions directory (ie. plugins/Permissions/world.yml)
#
# NOTE: Do not use tabs while editing this document.  Use only spaces.  A good way to avoid
# doing this is to use Notepad++ and replace the tab with 4 spaces.
plugin:
    permissions:
        system: default
        copies: 

##################
##################
##################
##################
groups:
    default:
        default: false
        info:
            prefix: ''
            suffix: ''
            build: true
        inheritance:
        permissions:
##################        
    User:
        default: true
        info:
            prefix: ''
            suffix: ''
            build: true
        inheritance:
            - default
        permissions:
            - 'general.spawn'
            - 'essentials.home'
            - 'essentials.sethome'
            - 'essentials.msg'
            - 'essentials.warp'
            - 'essentials.warp.list'
            - 'essentials.help'
            - 'essentials.afk'
            - 'essentials.mail.send'
            - 'essentials.helpop'
            - 'essentials.whois'
            - 'lwc.protect'
##################            
    Builder:
        default: false
        info:
            prefix: '&7'
            suffix: '&6'
            build: true
        inheritance:
            - User
        permissions:
            - 'general.spawn'
            - 'essentials.item'
            - 'essentials.kit.*'
            - 'magiccarpet.mc'
##################
    VIP:
        default: false
        info:
            prefix: '&5'
            suffix: '&5'
            build: true
        inheritance:
            - Builder
        permissions:
            - 'general.spawn'
            - 'essentials.home'
            - 'essentials.sethome'
            - 'essentials.msg'
            - 'essentials.warp'
            - 'essentials.warp.list'
            - 'essentials.help'
            - 'essentials.afk'
            - 'essentials.mail.send'
            - 'essentials.helpop'
            - 'essentials.whois'
            - 'lwc.protect'
##################
    Admin:
        default: false
        info:
            prefix: ''
            suffix: ''
            build: true
        inheritance:
        permissions:
            - '*'
##################
##################
##################
users:
    Mostey:
        group: Admin
        permissions:

    Lattella:
        group: Admin
        permissions:

    ssonti:
        group: Admin
        permissions:

    _ToKeN_:
        group: VIP
        permissions:

    HappySk1LL:
        group: Builder
        permissions:

    D3pri:
        group: VIP
        permissions:
Im a Permissions noob
03/27/2011 19:50 Angeldust™#7
Quote:
Originally Posted by sonti View Post
Super, danke ! Was meinst du mit Interhance System ? :D
Noch wat : Grad kein User on, aber depri (vip) hats drin stehen und kann immer noch kein /spawn.

Code :


Code:
# System is no longer used, but may become used in the future
# Copies is for multiple-world support
#   Put the name of the world you wish for it to be a clone of, otherwise leave it empty.
#   If this file is for your default world (the one in server.properties) then you must
#   leave copies blank.
#  Example: copies: Derp    -  This will clone the permissions of the world Derp
#
# Make sure to rename this file to the name of the world that is in sever.properties under
# level-name.  So if it is level-name: world  then this should be world.yml and in the 
# plugins/Permissions directory (ie. plugins/Permissions/world.yml)
#
# NOTE: Do not use tabs while editing this document.  Use only spaces.  A good way to avoid
# doing this is to use Notepad++ and replace the tab with 4 spaces.
plugin:
    permissions:
        system: default
        copies: 

##################
##################
##################
##################
groups:
    default:
        default: false
        info:
            prefix: ''
            suffix: ''
            build: true
        inheritance:
        permissions:
##################        
    User:
        default: true
        info:
            prefix: ''
            suffix: ''
            build: true
        inheritance:
            - default
        permissions:
            - 'general.spawn'
            - 'essentials.home'
            - 'essentials.sethome'
            - 'essentials.msg'
            - 'essentials.warp'
            - 'essentials.warp.list'
            - 'essentials.help'
            - 'essentials.afk'
            - 'essentials.mail.send'
            - 'essentials.helpop'
            - 'essentials.whois'
            - 'lwc.protect'
##################            
    Builder:
        default: false
        info:
            prefix: '&7'
            suffix: '&6'
            build: true
        inheritance:
            - User
        permissions:
            - 'general.spawn'
            - 'essentials.item'
            - 'essentials.kit.*'
            - 'magiccarpet.mc'
##################
    VIP:
        default: false
        info:
            prefix: '&5'
            suffix: '&5'
            build: true
        inheritance:
            - Builder
        permissions:
            - 'general.spawn'
            - 'essentials.home'
            - 'essentials.sethome'
            - 'essentials.msg'
            - 'essentials.warp'
            - 'essentials.warp.list'
            - 'essentials.help'
            - 'essentials.afk'
            - 'essentials.mail.send'
            - 'essentials.helpop'
            - 'essentials.whois'
            - 'lwc.protect'
##################
    Admin:
        default: false
        info:
            prefix: ''
            suffix: ''
            build: true
        inheritance:
        permissions:
            - '*'
##################
##################
##################
users:
    Mostey:
        group: Admin
        permissions:

    Lattella:
        group: Admin
        permissions:

    ssonti:
        group: Admin
        permissions:

    _ToKeN_:
        group: VIP
        permissions:

    HappySk1LL:
        group: Builder
        permissions:

    D3pri:
        group: VIP
        permissions:
Im a Permissions noob
yay .. wieso mach ich dir eigentlich die Inheritance Systeme.

Du kannst nich einfach 3 Gruppen machen und denen alle /spawn geben und dann sagen ja Builder hat Rechte von User inne und der VIP hat mal die Builder und User Rechte. ---> 3 Mal /spawn --> Bugs ---> *Hust*

Hab dich mal Skype geadded


Code:
    VIP:
        default: false
        info:
            prefix: '&5'
            suffix: '&5'
            build: true
        inheritance:
            - Builder
        permissions:
            - 'general.spawn'
            - 'essentials.home'
            - 'essentials.sethome'
            - 'essentials.msg'
            - 'essentials.warp'
            - 'essentials.warp.list'
            - 'essentials.help'
            - 'essentials.afk'
            - 'essentials.mail.send'
            - 'essentials.helpop'
            - 'essentials.whois'
            - 'lwc.protect'
##################
das is exakt das gleiche was der User kann. Der VIP baut aber auf User auf daber buggt das bin ich mir 99& sicher!
03/27/2011 20:00 sonti#8
Ich teste es mal. Hab keine Anfrage in Skype bekommen.