Permissions And Essentials Signs

Discussion in 'Bukkit Help' started by OneAppleBoy, Aug 26, 2011.

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

    OneAppleBoy

    Hello I cannot get my permissions to work with the Essentials buy/sell signs, every other essentials permissions works, besides the ones relating with the signs (eg.Weather,Time,Buy,Sell,etc.) I have tried essentials.signs.buy.use essentials.signs.use.buy and i have even done essentials.signs.* -essentials.signs.create.* and -essentials.signs.destroy.*
     
  2. Offline

    hammale

    can I see your permissions file? It might just be a formatting error :p
     
  3. Offline

    OneAppleBoy

    Yes, and to let you know im using permissions 2.74 because it's the only that works for me. Well besides now.
    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:
        Default:
            default: true
            info:
                prefix: ''
                suffix: ''
                build: true
            inheritance:
            permissions:
           - 'citizens.use.trader'
           - 'citizens.use.wizard'
           - 'citizens.use.healer'
           - 'citizens.use.blacksmith'
           - 'iConomy.access'
           - 'iConomy.list'
           - 'iConomy.payment'
           - 'jobs.join.*'
           - 'jobs.world.world1'
           - 'craftbook.mech.gate'
           - 'craftbook.mech.light-switch'
           - 'craftbook.mech.bookshelf.use'
           - 'craftbook.mech.bridge'
           - 'craftbook.mech.elevator.use'
           - 'factions.participate'
           - 'factions.create'
           - 'factions.create'
           - 'lockette.user.create.*'
           - 'mcmmo.ability.*'
           - 'mcmmo.skills.*'
           - 'residence.create'
           - 'craftbook.mech.cauldron'
           - 'essentials.spawn'
           - 'essentials.afk'
           - 'essentials.balance'
           - 'essentials.balancetop'
           - 'essentials.helpop'
           - 'essentials.home'
           - 'essentials.kit.*'
           - 'essentials.mail'
           - 'essentials.mail.send'
           - 'essentials.msg'
           - 'essentials.rules'
           - 'essentials.sethome'
           - 'essentials.spawn'
           - 'essentials.tpa'
           - 'essentials.tpahere'
           - 'essentials.tpaccept'
           - 'essentials.tpdeny'
           - 'essentials.warp'
           - 'essentials.warp.list'
           - 'essentials.signs.use.buy'
           - 'essentials.signs.buy.use'
           - 'essentials.signs.sell.use'
           - 'essentials.signs.use.sell'
        Moderator:
            default: false
            info:
                prefix: ''
                suffix: ''
                build: true
            inheritance:
                - Default
            permissions:
        Admins:
            default: false
            info:
                prefix: ''
                suffix: ''
                build: true
            inheritance:
                - Default
            permissions:
           - 'citizens.create.blacksmith'
           - 'citizens.create.basic'
           - 'citizens.create.healer'
           - 'citizens.create.trader'
           - 'citizens.create.wizard'
           - 'craftbook.mech.*'
           - 'craftbook.mech.ammeter.use'
           - 'craftbook.mech.elevator'
           - 'essentials.kit.*'
           - 'factions.manageSafeZone'
           - 'factions.manageWarZone'
           - 'factions.disband'
           - 'residence.admin'
           - 'lockette.admin.snoop'
           - 'essentials.ban'
           - 'essentials.clearinventory'
           - 'essentials.helpop.receive'
           - 'essentials.home.others'
           - 'essentials.kick'
           - 'essentials.tp'
           - 'essentials.setwarp'
           - 'essentials.delwarp'
    
    ##
    # 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:
        christopherhunt:
            group: Admins
            permissions:
        mrbjc412:
            group: Admins
            permissions:
        OneAppleBoy:
            group: Admins
            permissions:
        Roguesteeler:
            group: Admins
            permissions:
    yes the post is above

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 19, 2016
  4. Offline

    hammale

    YES I USE PERMS 2.X SOMETHING TOO! I LUV IT! lemme have a look...

    Do any of the permissions work? You have a major formatting problem, Ill give you the formatted one In a sec, lemme fix it

    well here it is after formatting...
    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:
        Default:
            default: true
            info:
                prefix: ''
                suffix: ''
                build: true
            inheritance:
            permissions:
                - 'citizens.use.trader'
                - 'citizens.use.wizard'
                - 'citizens.use.healer'
                - 'citizens.use.blacksmith'
                - 'iConomy.access'
                - 'iConomy.list'
                - 'iConomy.payment'
                - 'jobs.join.*'
                - 'jobs.world.world1'
                - 'craftbook.mech.gate'
                - 'craftbook.mech.light-switch'
                - 'craftbook.mech.bookshelf.use'
                - 'craftbook.mech.bridge'
                - 'craftbook.mech.elevator.use'
                - 'factions.participate'
                - 'factions.create'
                - 'factions.create'
                - 'lockette.user.create.*'
                - 'mcmmo.ability.*'
                - 'mcmmo.skills.*'
                - 'residence.create'
                - 'craftbook.mech.cauldron'
                - 'essentials.spawn'
                - 'essentials.afk'
                - 'essentials.balance'
                - 'essentials.balancetop'
                - 'essentials.helpop'
                - 'essentials.home'
                - 'essentials.kit.*'
                - 'essentials.mail'
                - 'essentials.mail.send'
                - 'essentials.msg'
                - 'essentials.rules'
                - 'essentials.sethome'
                - 'essentials.spawn'
                - 'essentials.tpa'
                - 'essentials.tpahere'
                - 'essentials.tpaccept'
                - 'essentials.tpdeny'
                - 'essentials.warp'
                - 'essentials.warp.list'
                - 'essentials.signs.use.buy'
                - 'essentials.signs.buy.use'
                - 'essentials.signs.sell.use'
                - 'essentials.signs.use.sell'
        Moderator:
            default: false
            info:
                prefix: ''
                suffix: ''
                build: true
            inheritance:
                - Default
            permissions:
        Admins:
            default: false
            info:
                prefix: ''
                suffix: ''
                build: true
            inheritance:
                - Default
            permissions:
                - 'citizens.create.blacksmith'
                - 'citizens.create.basic'
                - 'citizens.create.healer'
                - 'citizens.create.trader'
                - 'citizens.create.wizard'
                - 'craftbook.mech.*'
                - 'craftbook.mech.ammeter.use'
                - 'craftbook.mech.elevator'
                - 'essentials.kit.*'
                - 'factions.manageSafeZone'
                - 'factions.manageWarZone'
                - 'factions.disband'
                - 'residence.admin'
                - 'lockette.admin.snoop'
                - 'essentials.ban'
                - 'essentials.clearinventory'
                - 'essentials.helpop.receive'
                - 'essentials.home.others'
                - 'essentials.kick'
                - 'essentials.tp'
                - 'essentials.setwarp'
                - 'essentials.delwarp'
    
    ##
    # 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:
        christopherhunt:
            group: Admins
            permissions:
        mrbjc412:
            group: Admins
            permissions:
        OneAppleBoy:
            group: Admins
            permissions:
        Roguesteeler:
            group: Admins
            permissions:
    If this still doesn't work try "essentials.*" and see if that works. BTW: this may save you some time, for admins I usually just give them the permission "*" which gives them everything...

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 19, 2016
  5. Offline

    OneAppleBoy

    okay ill try thank you, what was my formatting error? All the other permissions worked

    Well i un-opped myself made myself in the defaultgroup, and yeah it doesnt work for the default group :(

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 19, 2016
  6. Offline

    Mapatti

    Why there is
    Code:
                - 'essentials.signs.use.buy'
                - 'essentials.signs.buy.use'
                - 'essentials.signs.sell.use'
                - 'essentials.signs.use.sell'
    Also could you provide server.log file if there is some errors.
     
  7. Offline

    hammale

    but does it work for the admins? leave yourself de-oped and move yourself into the admins...does it work now?

    O sry then, I usually have like 12 spaces for each permission...

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 19, 2016
  8. Offline

    OneAppleBoy

    nope, it doesnt work, the default group can't buy or sell from signs :(

    okay ill try, the default group doesnt work so idk if this will

    Code:
    2011-08-27 11:01:45 [INFO] [SimpleAntiGrief] Permission system not detected, defaulting to OP
    2011-08-27 11:01:45 [INFO] [SimpleAntiGrief] Version 1.4 by captainawesome7 has been enabled!
    2011-08-27 11:01:45 [INFO] [Residence] Permissions Plugin NOT Found!
    2011-08-27 11:01:45 [INFO] [Residence] Successfully linked with iConomy!
    2011-08-27 11:01:45 [INFO] [Residence] Loaded Residences...
    2011-08-27 11:01:45 [INFO] [Residence] Enabled! Version 2.3.8 by bekvon
    2011-08-27 11:01:45 [INFO] Lockette version 1.3.8 is being enabled!  Yay!  (Core version 1.0)
    2011-08-27 11:01:45 [INFO] Lockette: Detected craftbukkit build [1060] ok.
    2011-08-27 11:01:45 [INFO] Lockette: Using ops file for admin permissions.
    2011-08-27 11:01:45 [INFO] Lockette: Ready to protect your containers.
    2011-08-27 11:01:45 [INFO] [mcMMO] Using Bukkit Permissions.
    2011-08-27 11:01:45 [INFO] Loading Config File...
    2011-08-27 11:01:46 [INFO] mcMMO version 1.1.05 is enabled!
    2011-08-27 11:01:46 [INFO] [Citizens] Loaded 0 quests.
    2011-08-27 11:01:46 [INFO] [Citizens] A Permissions plugin isn't loaded, commands can only be used by ops.
    2011-08-27 11:01:46 [INFO] [Citizens] version [1.0.9d] (Odyssey) loaded
    2011-08-27 11:01:46 [INFO] [Citizens] Payment method found (iConomy version: 5)
    2011-08-27 11:01:46 [INFO] [Jobs] - max-jobs property not found. Defaulting to unlimited!
    2011-08-27 11:01:46 [INFO] [Jobs] - Job Woodcutter is missing the max-level property. defaulting to no limits !
    2011-08-27 11:01:46 [INFO] [Jobs] - Job Woodcutter is missing the slots property. defaulting to no limits !
    2011-08-27 11:01:46 [INFO] [Jobs] - Job Miner is missing the max-level property. defaulting to no limits !
    2011-08-27 11:01:46 [INFO] [Jobs] - Job Miner is missing the slots property. defaulting to no limits !
    2011-08-27 11:01:46 [INFO] [Jobs] - Job Builder is missing the max-level property. defaulting to no limits !
    2011-08-27 11:01:46 [INFO] [Jobs] - Job Builder is missing the slots property. defaulting to no limits !
    2011-08-27 11:01:46 [INFO] [Jobs] - Job Digger is missing the max-level property. defaulting to no limits !
    2011-08-27 11:01:46 [INFO] [Jobs] - Job Digger is missing the slots property. defaulting to no limits !
    2011-08-27 11:01:46 [INFO] [Jobs] - Job Farmer is missing the max-level property. defaulting to no limits !
    2011-08-27 11:01:46 [INFO] [Jobs] - Job Farmer is missing the slots property. defaulting to no limits !
    2011-08-27 11:01:46 [INFO] [Jobs] - Job Hunter is missing the max-level property. defaulting to no limits !
    2011-08-27 11:01:46 [INFO] [Jobs] - Job Hunter is missing the slots property. defaulting to no limits !
    2011-08-27 11:01:46 [INFO] [Jobs] - Job Fisherman is missing the max-level property. defaulting to no limits !
    2011-08-27 11:01:46 [INFO] [Jobs] - Job Fisherman is missing the slots property. defaulting to no limits !
    2011-08-27 11:01:46 [INFO] [Jobs] - Job None is missing the max-level property. defaulting to no limits !
    2011-08-27 11:01:46 [INFO] [Jobs] - Job None is missing the slots property. defaulting to no limits !
    2011-08-27 11:01:47 [INFO] [Jobs v2.4.6] has been enabled succesfully.
    2011-08-27 11:01:47 [INFO] [Jobs] Successfully linked with iConomy 5.
    2011-08-27 11:01:47 [INFO] [Factions v1.4.5] === ENABLE START ===
    2011-08-27 11:01:47 [INFO] [Factions v1.4.5] Loading conf from disk
    2011-08-27 11:01:47 [INFO] [Factions v1.4.5] Loading players from disk
    2011-08-27 11:01:47 [INFO] [Factions v1.4.5] Loading factions from disk
    2011-08-27 11:01:47 [INFO] [Factions v1.4.5] Loading board from disk
    2011-08-27 11:01:47 [INFO] [Factions v1.4.5] Permissions plugin not detected, defaulting to Bukkit superperms system
    2011-08-27 11:01:47 [INFO] [Factions v1.4.5] Hooked into iConomy, but interface is currently disabled ("econIConomyEnabled": false).
    2011-08-27 11:01:47 [INFO] [Factions v1.4.5] Hooked into EssentialsEco, but interface is currently disabled ("econEssentialsEcoEnabled": false).
    2011-08-27 11:01:47 [INFO] [Factions v1.4.5] === ENABLE DONE (Took 117ms) ===
    2011-08-27 11:01:47 [INFO] Server permissions file permissions.yml is empty, ignoring it
    2011-08-27 11:01:47 [INFO] Done (0.466s)! For help, type "help" or "?"
    2011-08-27 11:01:47 [INFO] [Citizens] Loaded 11 NPCs.
    2011-08-27 11:02:12 [INFO] Read timed out
    2011-08-27 11:02:12 [INFO] /99.37.205.198:64184 lost connection
    server log

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 19, 2016
  9. Offline

    hammale

    kk, do the other essential permissions work? Is it just the signs?

    ROFL that log shows no permission plugin being loaded....theirs your problem! EDIT: Its defaulting to SuperPerms, can I have a look at your plugins directory?

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 19, 2016
  10. Offline

    OneAppleBoy

    why does it say that? all the other permissions ARE working..

    Can someone just take the permissions i have here and make them right and send me the file?
    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:
        Default:
            default: true
            info:
                prefix: ''
                suffix: ''
                build: true
            inheritance:
            permissions:
                - 'citizens.use.trader'
                - 'citizens.use.wizard'
                - 'citizens.use.healer'
                - 'citizens.use.blacksmith'
                - 'iConomy.access'
                - 'iConomy.list'
                - 'iConomy.payment'
                - 'jobs.join.*'
                - 'jobs.world.world1'
                - 'craftbook.mech.gate'
                - 'craftbook.mech.light-switch'
                - 'craftbook.mech.bookshelf.use'
                - 'craftbook.mech.bridge'
                - 'craftbook.mech.elevator.use'
                - 'factions.participate'
                - 'factions.create'
                - 'factions.create'
                - 'lockette.user.create.*'
                - 'mcmmo.ability.*'
                - 'mcmmo.skills.*'
                - 'residence.create'
                - 'craftbook.mech.cauldron'
                - 'essentials.spawn'
                - 'essentials.afk'
                - 'essentials.balance'
                - 'essentials.balancetop'
                - 'essentials.helpop'
                - 'essentials.home'
                - 'essentials.kit.*'
                - 'essentials.mail'
                - 'essentials.mail.send'
                - 'essentials.msg'
                - 'essentials.rules'
                - 'essentials.sethome'
                - 'essentials.spawn'
                - 'essentials.tpa'
                - 'essentials.tpahere'
                - 'essentials.tpaccept'
                - 'essentials.tpdeny'
                - 'essentials.warp'
                - 'essentials.warp.list'
                - 'essentials.signs.use.*'
        Moderator:
            default: false
            info:
                prefix: ''
                suffix: ''
                build: true
            inheritance:
                - Default
            permissions:
        Admins:
            default: false
            info:
                prefix: ''
                suffix: ''
                build: true
            inheritance:
                - Default
            permissions:
                - 'citizens.create.blacksmith'
                - 'citizens.create.basic'
                - 'citizens.create.healer'
                - 'citizens.create.trader'
                - 'citizens.create.wizard'
                - 'craftbook.mech.*'
                - 'craftbook.mech.ammeter.use'
                - 'craftbook.mech.elevator'
                - 'essentials.kit.*'
                - 'factions.manageSafeZone'
                - 'factions.manageWarZone'
                - 'factions.disband'
                - 'residence.admin'
                - 'lockette.admin.snoop'
                - 'essentials.ban'
                - 'essentials.clearinventory'
                - 'essentials.helpop.receive'
                - 'essentials.home.others'
                - 'essentials.kick'
                - 'essentials.tp'
                - 'essentials.setwarp'
                - 'essentials.delwarp'
                - 'essentials.signs.create.*'
    
    ##
    # 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:
        christopherhunt:
            group: Admins
            permissions:
        mrbjc412:
            group: Admins
            permissions:
        OneAppleBoy:
            group: Admins
            permissions:
        Roguesteeler:
            group: Admins
            permissions:
    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 19, 2016
  11. Offline

    hammale

    Can I have a look at your plugins folder? A zip folder or even a screenshot will wrk

    you have them right, permissions just isnt enabling

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 19, 2016
  12. Offline

    Mapatti

    Others plugins might give rights to player and essentials just for OPd.
    Also which permission plugin do you use? Looks like Yeti's Permissions.
     
  13. Offline

    hammale

    Can I PLZ have a look at your plugins folder? PLZ!!! he uses permissions 2.74
     
  14. Offline

    OneAppleBoy

    okay
    one sec here [​IMG]

    [​IMG]

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 19, 2016
  15. Offline

    hammale

    well thats a little odd. Try removing all other plugins except permissions and post the server.log
     
  16. Offline

    OneAppleBoy

  17. Offline

    Mapatti

    Which Permissions versions is it? as it has that plugin: thing in it.
     
  18. Offline

    OneAppleBoy

    2.74

    hmmm this is odd take a look
    Code:
    2011-08-27 11:15:31 [INFO] Starting Minecraft server on 184.95.52.67:25565
    2011-08-27 11:15:31 [INFO] This server is running Craftbukkit version git-Bukkit-0.0.0-980-g4ed23b1-b1060jnks (MC: 1.7.3)
    2011-08-27 11:15:31 [SEVERE] Could not load 'plugins/Permissions.jar' in folder 'plugins':
    java.lang.reflect.InvocationTargetException
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        at java.lang.reflect.Constructor.newInstance(Constructor.java:532)
        at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:173)
        at org.bukkit.plugin.SimplePluginManager.loadPlugin(SimplePluginManager.java:213)
        at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:136)
        at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:143)
        at org.bukkit.craftbukkit.CraftServer.<init>(CraftServer.java:110)
        at net.minecraft.server.ServerConfigurationManager.<init>(ServerConfigurationManager.java:51)
        at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:133)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:337)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
    Caused by: while scanning for the next token
    found character     '\t' that cannot start any token
     in "<reader>", line 110, column 1:
                - 'essentials.signs.use.*'
        ^
    
        at org.yaml.snakeyaml.scanner.ScannerImpl.fetchMoreTokens(ScannerImpl.java:360)
        at org.yaml.snakeyaml.scanner.ScannerImpl.checkToken(ScannerImpl.java:183)
        at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockSequenceEntry.produce(ParserImpl.java:510)
        at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:163)
        at org.yaml.snakeyaml.parser.ParserImpl.checkEvent(ParserImpl.java:148)
        at org.yaml.snakeyaml.composer.Composer.composeSequenceNode(Composer.java:203)
        at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:158)
        at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:230)
        at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:160)
        at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:230)
        at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:160)
        at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:230)
        at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:160)
        at org.yaml.snakeyaml.composer.Composer.composeDocument(Composer.java:122)
        at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:105)
        at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:124)
        at org.yaml.snakeyaml.Yaml.load(Yaml.java:264)
        at com.nijiko.configuration.NotNullConfiguration.load(NotNullConfiguration.java:58)
        at com.nijikokun.bukkit.Permissions.Permissions.<init>(Permissions.java:132)
        ... 13 more
    2011-08-27 11:15:31 [INFO] Preparing level "world1"
    2011-08-27 11:15:31 [INFO] Preparing start region for level 0 (Seed: 3282383611664863921)
    2011-08-27 11:15:32 [INFO] Preparing start region for level 1 (Seed: 3282383611664863921)
    2011-08-27 11:15:33 [INFO] Loaded Essentials build 2.5.6 by [Zenexer, ementalo, Aelux, Brettflan, KimKandor, snowleo, ceulemans, Xeology]
    2011-08-27 11:15:33 [INFO] Loaded EssentialsSpawn build 2.5.6 by essentials team
    2011-08-27 11:15:33 [INFO] Server permissions file permissions.yml is empty, ignoring it
    2011-08-27 11:15:33 [INFO] Done (0.159s)! For help, type "help" or "?"
    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 19, 2016
  19. Offline

    Mapatti

    So there is format error. Doublecheck that there isn't tab. And resend that group.yml
     
  20. Offline

    OneAppleBoy

    okay so i fixed the yml cus apperantly it was broken brb
     
  21. Offline

    hammale

    o theres an error on the 'essentials.signs.use.*' node and probably all other essential.sign nodes....let me take another look at your perms....
     
  22. Offline

    OneAppleBoy

    Code:
    2011-08-27 11:24:06 [INFO] Starting minecraft server version Beta 1.7.3
    2011-08-27 11:24:06 [INFO] Loading properties
    2011-08-27 11:24:06 [INFO] Starting Minecraft server on 184.95.52.67:25565
    2011-08-27 11:24:06 [INFO] This server is running Craftbukkit version git-Bukkit-0.0.0-980-g4ed23b1-b1060jnks (MC: 1.7.3)
    2011-08-27 11:24:07 [INFO] [Permissions] (Phoenix) was Initialized.
    2011-08-27 11:24:07 [INFO] Preparing level "world1"
    2011-08-27 11:24:07 [INFO] Preparing start region for level 0 (Seed: 3282383611664863921)
    2011-08-27 11:24:07 [INFO] Preparing start region for level 1 (Seed: 3282383611664863921)
    2011-08-27 11:24:08 [INFO] Preparing spawn area: 89%
    2011-08-27 11:24:08 [INFO] Loaded Essentials build 2.5.6 by [Zenexer, ementalo, Aelux, Brettflan, KimKandor, snowleo, ceulemans, Xeology]
    2011-08-27 11:24:08 [INFO] [Essentials] Payment method found (iConomy version: 5)
    2011-08-27 11:24:08 [INFO] Loaded EssentialsSpawn build 2.5.6 by essentials team
    2011-08-27 11:24:08 [INFO] [Permissions] version [2.7.4] (Phoenix)  loaded
    2011-08-27 11:24:09 [INFO] [iConomy] Logging is currently disabled.
    2011-08-27 11:24:09 [INFO] [iConomy] v5.01 (Eruanna) loaded.
    2011-08-27 11:24:09 [INFO] [iConomy] Developed by: [Nijikokun]
    2011-08-27 11:24:09 [INFO] [iConomy] hooked into Permissions.
    2011-08-27 11:24:09 [INFO] Server permissions file permissions.yml is empty, ignoring it
    2011-08-27 11:24:09 [INFO] Done (0.206s)! For help, type "help" or "?"
    2011-08-27 11:24:56 [INFO] /99.37.205.198:64922 lost connection
    2011-08-27 11:25:06 [INFO] /99.37.205.198:64924 lost connection
    Thats the new log, everything looks fine but i get this when i try to log into my server
    [​IMG]
     
  23. Offline

    hammale

    Is it working now?

    you used this ip right?
    184.95.52.67:25565

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 19, 2016
  24. Offline

    OneAppleBoy

    the log is fine but when i try to log in i get this[​IMG]

    never mind forund out why, minecraft clud services down agian, so is minecraft.net

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: May 19, 2016
  25. Offline

    hammale

    yup :(
     
    OneAppleBoy likes this.
  26. Offline

    OneAppleBoy

    ill try to tell you if it worked or not
     
  27. Offline

    Mapatti

    You could set online-mode: false and whitelist: true and test it without depented for minecraft.net.
     
  28. Offline

    OneAppleBoy

    can't set it to ofline mode cus its a hosted server somewhere else and usually they dont allow that option because cracked minecraft users could come in and that could get the server host in trouble
     
  29. Offline

    hammale

    i have mine set in offline mode right now...im making a player remove a giant tnt glitch tree :)
     
    OneAppleBoy likes this.
  30. Offline

    OneAppleBoy

    do you run your server on your computer?
     
Thread Status:
Not open for further replies.

Share This Page