You Don't have permission to do that!

Discussion in 'Bukkit Help' started by daanclasener, Jan 21, 2012.

Thread Status:
Not open for further replies.
  1. Offline

    daanclasener

    hi everyone, i'm new at the bukkit forum but i have a problem..

    I have my own server with these plugins installed: ChestShop, Colors, DragonTravel, iConomy, iSafe, LoginBonus, LWC, OddItem, Permissions, Reservations and WorldEdit.

    my problem is that only OP's can use command.. so it doesn't matter in which group i am (even admin), i can only use commands if i'm an OP.

    here is my Permissions settings:

    Code:
    ## 
    # Permissions has AntiBuild, which prevents a player from destroying/placing blocks.
    # To prevent a group of players 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 inherit from other groups.
    #  To make a group inherit the permissions and info nodes from another
    #  group, simply place the groups name in the "inheritance:" like so:
    #
    #  Example:
    #      inheritance:
    #          - Default
    ##
    #  Wildcard Permission settings:
    #
    #      You can have wildcard nodes which encompass all nodes that match it.
    #      For example, the node "modplugin.*" matches "modplugin.kick", "modplugin.ban",
    #      "modplugin.settings.view", and so on.
    #
    ##
    #  A single asterisk means that this user/group has all permissions.
    #      - '*'
    ##
    #  Negated nodes are created by prefixing a normal node with "-".
    #  They prevent less specific wildcard nodes from matching the negated node.
    #  For example:
    # 
    #  permissions:
    #      - 'foo.*'
    #      - '-foo.bar'
    #
    #  In this case, the user/group will have "foo.foo", "foo.foobar", and so on, but not "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.
    ##
    #
    #  For more info, visit https://github.com/TheYeti/Permissions/wiki/Guide-to-creating-YAML-configs
    #
    ##
     
    groups:
        Default:
            default: false
            info:
                prefix: ''
                suffix: ''
                build: true
            inheritance:
        Member:
            default: true
            info:
                prefix: ''
                suffix: ''
                build: true
            inheritance:
                - Default
            permissions:
                - 'dt.travel'
                - 'dt.ptravel'
                - 'iConomy.holdings'
                - ' iConomy.payment '
                - ' iConomy.list '
                - ' iConomy.rank '
                - ' lwc.protect '
                - 'dt.travel'
                - 'dt.ptravel'
               
        Moderator:
            default: false
            info:
                prefix: ''
                suffix: ''
                build: true
            inheritance:
                - Member
            permissions:
                - 'iConomy.holdings'
                - 'iConomy.payment'
                - 'iConomy.list'
                - 'iConomy.rank'
                - 'lwc.protect'
                - 'dt.travel'
                - 'dt.ptravel'
               
        Admins:
            default: false
            info:
                prefix: '&4Admin &6'
                suffix: ''
                build: true
            inheritance:
                - Default
                - Member
                - Moderator
            permissions:
                - '*'
    and here is my startup log ( maybe it helps) :

    Code:
    2012-01-21 15:14:35 [INFO] Starting minecraft server version 1.1
    2012-01-21 15:14:35 [INFO] Loading properties
    2012-01-21 15:14:35 [INFO] Starting Minecraft server on *:25565
    2012-01-21 15:14:35 [WARNING] **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
    2012-01-21 15:14:35 [WARNING] The server will make no attempt to authenticate usernames. Beware.
    2012-01-21 15:14:35 [WARNING] While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
    2012-01-21 15:14:35 [WARNING] To change this, set "online-mode" to "true" in the server.properties file.
    2012-01-21 15:14:36 [INFO] This server is running Craftbukkit version git-Bukkit-1.0.1-R1-73-g8fee20a-b1764jnks (MC: 1.1) (Implementing API version 1.1-R1-SNAPSHOT)
    2012-01-21 15:14:37 [INFO] LWC: Loading shared objects
    2012-01-21 15:14:37 [INFO] LWC: Protection cache: 0/10000
    2012-01-21 15:14:37 [INFO] LWC: Native library: plugins/LWC/lib/native/Windows/amd64/sqlitejdbc.dll
    2012-01-21 15:14:37 [INFO] [Permissions] (Yeti) was initialized.
    2012-01-21 15:14:37 [INFO] [iSafe] Registered events.
    2012-01-21 15:14:37 [INFO] [iSafe] Loaded configuration file.
    2012-01-21 15:14:37 [INFO] [iSafe] Loaded blacklist file.
    2012-01-21 15:14:37 [INFO] [iSafe] Loaded mobsConfig file.
    2012-01-21 15:14:37 [INFO] [iSafe] iSafe v2.43 enabled succesfully.
    2012-01-21 15:14:37 [INFO] [Permissions] version [3.1.6] (Yeti)  loaded
    2012-01-21 15:14:37 [INFO] Preparing level "Creative"
    2012-01-21 15:14:37 [INFO] Default game type: 0
    2012-01-21 15:14:38 [INFO] Preparing start region for level 0 (Seed: -8420502406570780223)
    2012-01-21 15:14:39 [INFO] Preparing spawn area: 48%
    2012-01-21 15:14:39 [INFO] Preparing start region for level 1 (Seed: -8420502406570780223)
    2012-01-21 15:14:40 [INFO] Preparing spawn area: 24%
    2012-01-21 15:14:41 [INFO] Preparing start region for level 2 (Seed: -8420502406570780223)
    2012-01-21 15:14:41 [INFO] Preparing spawn area: 0%
    2012-01-21 15:14:42 [INFO] [iSafe] Loaded Creative succsesfully.
    2012-01-21 15:14:42 [INFO] [iSafe] Loaded Creative_nether succsesfully.
    2012-01-21 15:14:42 [INFO] [iSafe] Loaded Creative_the_end succsesfully.
    2012-01-21 15:14:42 [INFO] [iConomy - Celty] Enabled (39 ms)
    2012-01-21 15:14:42 [INFO] [LoginBonus] 0.6:  Has been enabled.
    2012-01-21 15:14:42 [INFO] [OddItem] 0.8.1 enabled
    2012-01-21 15:14:42 [INFO] [OddItem] Using RefinedSoundEx for suggestions.
    2012-01-21 15:14:42 [INFO] [OddItem] Adding lapisblock x2 to group "oddtransport"
    2012-01-21 15:14:42 [INFO] [OddItem] Adding greendye to group "oddtransport"
    2012-01-21 15:14:42 [INFO] [OddItem] Adding reddye to group "oddtransport"
    2012-01-21 15:14:42 [INFO] [OddItem] Adding air to group "oddtransport"
    2012-01-21 15:14:42 [INFO] [OddItem] Group oddtransport added.
    2012-01-21 15:14:43 [INFO] [OddItem] 974 aliases loaded.
    2012-01-21 15:14:43 [INFO] PlgSetspawn version 5.0 is enabled!
    2012-01-21 15:14:43 [INFO] [Reservations] is enabled!
    2012-01-21 15:14:43 [INFO] SimpleWeather has been enabled.
    2012-01-21 15:14:43 [INFO] WorldEdit 5.0 enabled.
    2012-01-21 15:14:43 [INFO] WEPIF: Permissions plugin detected! Using Permissions plugin for permissions.
    2012-01-21 15:14:43 [INFO] WEPIF: Permissions plugin detected! Using Permissions plugin for permissions.
    2012-01-21 15:14:43 [INFO] [ChestShop] Permissions version 3.1.6 loaded.
    2012-01-21 15:14:43 [INFO] [ChestShop] LWC version 3.58 loaded.
    2012-01-21 15:14:43 [INFO] [ChestShop] OddItem version 0.8.1 loaded.
    2012-01-21 15:14:43 [INFO] [ChestShop] version 3.33 initialized!
    2012-01-21 15:14:43 [INFO] [ChestShop] iConomy 6 loaded.
    2012-01-21 15:14:43 [INFO] [DragonTravel] Loaded configuration
    2012-01-21 15:14:44 [INFO] [DragonTravel] Enabled v1.1
    2012-01-21 15:14:44 [INFO] LWC: Loaded 137 locale strings (0 overrides)
    2012-01-21 15:14:44 [INFO] LWC: Permissions API: NijiPermissions
    2012-01-21 15:14:44 [INFO] LWC: Currency API: iConomy6Currency
    2012-01-21 15:14:44 [INFO] LWC: Loading SQLite
    2012-01-21 15:14:44 [INFO] LWC: Using: Native
    2012-01-21 15:14:44 [INFO] LWC: Precached 462 protections.
    2012-01-21 15:14:44 [INFO] LWC: At version: 3.58 (MANUAL)
    2012-01-21 15:14:45 [INFO] Done (7.186s)! For help, type "help" or "?"
    2012-01-21 15:15:05 [INFO] daanclasener [/5.88.213.38:52022] logged in with entity id 218 at ([Creative] -206.34814263696097, 62.0, 220.5066190883813)
    2012-01-21 15:15:12 [INFO] [iSafe] [COMMAND] daanclasener: /dt mount
    2012-01-21 15:15:15 [INFO] daanclasener lost connection: disconnect.quitting
    2012-01-21 15:15:15 [INFO] Connection reset
    already thanks :)

    sorry for the bad english and sorry if there is already a thread like this.
     
  2. Offline

    Chrisward

    Your problem likely starts and ends at Permissions. Permissions died out ages ago, and you need to find a new permissions plugin, such as GroupManager, bPermissions, PermissionsEx or PermissionsBukkit
     
  3. Offline

    daanclasener

    hey, thanks for the reply, I will try permissionsEx :)
     
  4. Offline

    ArrowToTheKnee

    bPermissions is also a great permissions plugin. But, if you use it, make sure you don't use offline mode, because it will not work ( intentional ) if you are in offline mode. UNLESS...you edit the config file...
     
Thread Status:
Not open for further replies.

Share This Page