[INACTIVE] [MECH/DEV] SpoutBackpack v2.3.6_3 - Give your players a Backpack [1317]

Discussion in 'Inactive/Unsupported Plugins' started by NeatMonster, Aug 10, 2011.

  1. Offline

    NeatMonster

    Please now use BukkitInventoryTools which contains SpoutBackpack.
    This thread is now useless, please don't post any longer on it.
    -----------------------​
    You can find the Bukkit Dev' thread HERE.
    Please use it, this thread will no longer be updated.

    ------------------------​
    SpoutBackpack v2.0.1
    Give your players a Backpack w/ Spout.

    Because pictures / video are always better than thousand words:
    [​IMG]
    [​IMG]
    (Unofficial video by IAMWIN but outdated: v1.9.5)​

    Features:
    • Pressing a key to open your backpack ;
    • Economy widget if you want it ;
    • Not just backpack, workbench too ;
    • Drop on death (configurable) ;
    • Permissions and economy plugins support ;
    • Allow your players to expand their Backpack ;
    • Restictions of upgrades & commands ;
    • Multiworld support with different Backpacks ;
    • Hooks into WorldGuard, MobArena and Jail ;
    • Key and name can be customized ;
    • API for developers ;
    • Backpacks are saved on server ;
    • Works even on reload.
    Requirements:
    • Spout and Spoutcraft - Required to launch and use the plugin.
      Tested with RB #1.0.5.227 of Spout and RB #1.0.5.256 of Spoutcraft.
    • (OPTIONAL) Permissions - Required if you want to customize the size or upgrade.
    • (OPTIONAL) PermissionsBukkit - Required if you want to customize the size or upgrade.
    • (OPTIONAL) PermissionsEx - Required if you want to customize the size or upgrade.
    • (OPTIONAL) GroupManager - Required if you want to customize the size or upgrade.
    • (OPTIONAL) iConomy - Required if you want to upgrade.
    • (OPTIONAL) BOSEconomy - Required if you want to upgrade.
    • (OPTIONAL) Essentials Economy - Required if you want to upgrade.
    • (OPTIONAL) MultiCurrency - Required if you want to upgrade.
    • (OPTIONAL) WorldGuard - Not required but compatible.
    • (OPTIONAL) MobArena - Not required but compatible.
    • (OPTIONAL) Jail - Not required but compatible.
    Configuration:
    Code:
    Widget:
        PositionY: 5
        PositionX: 3
        Enabled?: true
    Permissions:
        UseGroupManager?: false
        UsePermissions?: true
        UsePermissionsBukkit?: false
        UsePermissionsEx?: false
    Backpack:
        Name: Backpack
        Key: B
        Price:
            '45': 40.0
            '36': 30.0
            '18': 10.0
            '54': 50.0
            '27': 20.0
        RegionWhereBackpacksAreDisabled:
        - region1
        - region2
        world:
            Administrators:
                UpgradeSize: 54
                Size: 54
            Players:
                UpgradeSize: 27
                Size: 9
            Guests:
                UpgradeSize: 0
                Size: 0
            InventoriesShare?: true
            Moderators:
                UpgradeSize: 45
                Size: 27
            Joueurs:
                UpgradeSize: 36
                Size: 18
    Workbench:
        Enabled?: true
        Key: W
        NeededInInventory?: false
    Saves:
        Log?: false
        Interval(InMinutes): 5
    
    For PermissionsBukkit and PermissionsEx, you need to add permissions backpack.worldname.groupname. You also need to order your groups in the configuration file (eg. Admins, then Mods, then Players and then Guests). I'm sorry of this but those two plugins doesn't have the methods I need.

    Permissions:
    • backpack.workbench : Allow the player to open a virtual workbench.
    • backpack.nodrop : No drop of the items in the Backpack on death.
    • backpack.clear : Allow the player to clear his own Backpack.
    • backpack.clear.other : Allow the player to clear others inventories.
    • backpack.info.other: Allow the player to show info about others.
    • backpack.upgrade.other: Allow the player to upgrade others' Backpack.
    • backpack.open.other : Open other players' Backpack.
    • backpack.reload : Allow the use of the /backpack reload command.
    • NOTE: If you use OP system, size for not-Op players will be 9 and 54 for OP players.
    Commands:
    • /backpack clear (Player) : Clear your / player's inventory.
    • /backpack info (Player): Show information about your / player's Backpack.
    • /backpack open [Player] : Open player's Backpack.
    • /backpack upgrade [Player]: Upgrade your /player's Backpack.
    • /backpack reload : Reload Backpack's configuration.
    • NOTE: /backpack's alias is /bp.
    Downloads:
    Highly recommended:
    Credits:
    • The portage from BukkitContrib to Spout of this plugin was made by kazimir!
    • All credits go to captainawesome7 for his awesome BCBackpack plugin!
    TO-DO:
    • Permissions support ; DONE IN 1.3
    • Configuration of the key ; DONE IN 1.3
    • Multiple chest sizes ; DONE IN 1.4
    • iConomy integration ; DONE IN 1.6
    • MobArena hook ; DONE IN 1.6.1
    • BOSEconomy support ; DONE IN 1.6.2
    • PermissionsBukkit support ; DONE IN 1.6.3
    • Multiworld support ; DONE IN 1.7
    • Separate inventories ; DONE IN 1.7
    • WorldGuard regions support ; DONE IN 1.7.1
    • GroupManager support ; DONE IN 1.7.2
    • Workbench ; DONE IN 1.8
    • Jail support ; DONE IN 1.8.1
    • Add an option to disable workbench ; DONE IN 1.8.2
    • Restriction on Workbench ; DONE IN 1.8.4
    • Support of Essentials economy ; DONE IN 1.8.5
    • Economy widget ; DONE IN 1.9
    • Command to clear Backpack ; DONE IN 1.9
    • Restrictions on upgrades ; DONE IN 1.9
    • API ; DONE IN 1.9
    • Setting for the widget position ; DONE IN 1.9.2
    • Lookup in others' Backpack ; DONE IN 1.9.2
    • Support for PermissionsEx ; DONE IN 2.0
    • Handle deaths without Spout client ; DONE IN 2.0
    • Upgrade other players' Backpack ; DONE IN 2.0
    • Furnaces.
    Notes:
    • If you put something in your Backpack and close Minecraft by clicking the "X" without closing your backpack, all items you put in since opening your Backpack are lost. That's not a bug - It's a feature to prevent duping.
    API:
    You want to hook into SpoutBackpack? Fine, I have what you need.
    1. Import SpoutBackpack.jar as a library in your project ;
    2. Import me.neatmonster.spoutbackpack.SBHandler ;
    3. In your main class, add this object creation :
      Code:
          public SBHandler spoutBackpackHandler;
    4. Somewhere on your onEnable, add this line :
      Code:
              setupSpoutBackpack();
    5. So, this is the setupSpoutBackpack function :
      Code:
          private void setupSpoutBackpack() {
                                                      if (spoutBackpackHandler != null) {
                                                          return;
                                                      }
                                                      Plugin spoutBackpackPlugin = this.getServer().getPluginManager().getPlugin("SpoutBackpack");
                                                      if (spoutBackpackPlugin == null) {
                                                          return;
                                                      }
                                                      spoutBackpackHandler = new SBHandler();
                                                      return;
                                                      }
    6. To check somewhere in your code if SpoutBackpack is enabled, use :
      Code:
              if (spoutBackpackHandler != null) {
                                            return;
                                     }
    7. And finally to use a method of SpoutBackpack :
      Code:
              spoutBackpackHandler.theMethodYouWant();
      You can find all the methods HERE.
    8. If you need more methods, or if I made a mistake, do not hesitate to contact me.
    Changelog:
    Version 2.0.1
    • PermissionsBukkit & PermissionsEx fix.
    Version 2.0
    • Improved Backpacks' save system ;
    • PermissionsBukkit full support ;
    • PermissionsEx full support ;
    • Bug fix when client doesn't use Spoutcraft ;
    • Upgrade other players' Backpack.
    Other versions (open)
    Version 1.9.5
    Other versions (open)

    • Added methods for the API.
    Version 1.9.4
    • Fixed API.
    Version 1.9.3
    • Removed debug messages.
    Version 1.9.2
    • Setting for the position of the widget ;
    • Command to open other players' Backpack.
    Version 1.9.1
    • New method added to the API.
    Version 1.9
    • Economy widget when you opens your Backpack ;
    • Commands to clear Backpack(s) ;
    • Restrictions on updates ;
    • Creation of an API ;
    • Bug fixes with economy.
    Version 1.8.5
    • Support of Essentials Economy ;
    • Support of MultiCurrency.
    Version 1.8.4
    • Option to only use workbench if you have one in inventory.
    Version 1.8.3
    • No more saves when nobody is online ;
    • Fixed bug on upgrade.
    Version 1.8.2
    • Workbench toggle in the config.
    Version 1.8.1
    • Jail support.
    Version 1.8
    • Now with you can give your players a virtual workbench ;
    • You can close the workbench with the same key ;
    • Now the workbench will not appear when typing in the chat.
    Version 1.7.3
    • GroupManager full support.
    Version 1.7.2
    • GroupManager support ;
    • Permission for drop on death.
    Version 1.7.1
    • You can specify WorldGuard region where Backpacks will be disabled ;
    • More, more, more and more keys.
    Version 1.7
    • New multiworld support ;
    • Separate inventories ;
    • Common inventories ;
    • Reload command ;
    • Smart detection of plugins you've installed ;
    • Some code rewrite = more proper code.
    Version 1.6.3
    • Added PermissionsBukkit support with configuration options.
    Version 1.6.2
    • Support for BOSEconomy, no configuration needed ;
    • More anti-cheat messages and information for users.
    Version 1.6.1
    • Hooks in MobArena : when a player is inside an arena, I can't open his BackPack ;
    • For more security, it checks if iConomy is installed.
    Version 1.6
    • Added iConomy support & /backpack commands, which allow your players to expand their Backpack by paying some iConomy money (configurable in config.yml) ;
    • Minor bug fixes & code cleanup.
    Version 1.5
    • Added support for multiword (see in config.yml).
    • More and more help in the config.yml.
    Version 1.4
    • New permissions for different sizes.
    Version 1.3
    • Closing you backpack will now saves his content.
    • Permissions support.
    • You can now change the key used to open the backpack in the configuration.
    Version 1.2
    • Original version.



    [​IMG]
     
  2. Offline

    Zenithas

    Also getting this error. Seems to be related to the latest Spout server edition update
     
  3. Offline

    IAMWIN

    just did an install tut for this, will upload vid tonight and post tomorrow, if you like then please use to help any members trying to install :3
     
  4. Offline

    nubpro

    Since you said API, why don't you add a [Dev] tag?
     
  5. Offline

    NeatMonster

    @all : I haven't worked a lot on my plugin for few days (family, etc.), I'm sorry. I've some issues with furnaces and open offline players' Backpack command. I'm working on version 2.0, I promise. NeatMonster.



    PermissionsEx isn't supported in v1.9.5. It'll be in v2.0.

    TO-DO list.

    What permissions plugin are you using? Have you configured correctly the plugin?

    TO-DO list too.

    Strange, it's working for me : configuration isn't overwritten after each reload.

    Yep, new development versions of Spout changed this method. I'll support development versions in 2.0, I think.

    Great!

    Good idea! I'll do that right now.
     
    Zenithas likes this.
  6. Offline

    Cosmic Break

    its not the dev version, its the RB.
     
  7. Offline

    NeatMonster

    Hum... Yes. You're talking about RB 1.0.5. I'm on it.
     
  8. Offline

    IAMWIN

    here is the vid hope you will put it up
     
  9. Offline

    NeatMonster

    Added!
     
  10. Offline

    Dragon_Slayer

    Cool i like this plugin :) ;) :D

    Cool Did you really make it

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

    NeatMonster

    Me too. :p

    I didn't make the vid' but IAMWIN did it.

    @Ranzear @kolorafa @RugRats @ShadowDraco @MMZ_TimeLord @Wiernusz @Terra-Network.org @Soviet Ostrich @Flenix @Cosmic Break @Zenithas
    I really tried but I'm sorry I can't do that for the moment.
     
  12. Offline

    meizme

    dude something went really wrong on this update. i had fully working backpacks and all the sudden i get: "<severe> can not pass custom event" if permEX is set to true. none of the names for groups work, added custom group names to match mine in PermEX, disabled all perms in the yml, then set all players/groups to have 54 size 54 upgrade and set permissions to * just to test and i get a 9 slot backpack. work bench opens fine.

    settings just to test it (had * perms in permEX):
    Show Spoiler

    Widget:
    PositionY: 5
    PositionX: 3
    Enabled?: true
    Permissions:
    UseGroupManager?: false
    UsePermissions?: false
    UsePermissionsBukkit?: false
    UsePermissionsEx?: false
    Backpack:
    Name: RuckSack
    Key: R
    Price:
    '54': 5000.0
    '45': 4000.0
    '36': 3000.0
    '18': 1000.0
    '27': 2000.0
    RegionWhereBackpacksAreDisabled:
    - region1
    - region2
    world:
    InventoriesShare?: true
    Guests:
    UpgradeSize: 54
    Size: 54
    Players:
    UpgradeSize: 54
    Size: 54
    Moderators:
    UpgradeSize: 54
    Size: 54
    Administrators:
    UpgradeSize: 54
    Size: 54
    Workbench:
    Enabled?: true
    Key: N
    NeededInInventory?: false
    Saves:
    Log?: false
    Interval(InMinutes): 5
    Furnace:
    Enabled?: true
    Key: O


    Normal settings
    Show Spoiler

    Widget:
    PositionY: 5
    PositionX: 3
    Enabled?: true
    Permissions:
    UseGroupManager?: false
    UsePermissions?: false
    UsePermissionsBukkit?: false
    UsePermissionsEx?: true
    Backpack:
    Name: RuckSack
    Key: R
    Price:
    '54': 5000.0
    '45': 4000.0
    '36': 3000.0
    '18': 1000.0
    '27': 2000.0
    RegionWhereBackpacksAreDisabled:
    - region1
    - region2
    world:
    InventoriesShare?: true
    Guests:
    UpgradeSize: 0
    Size: 0
    Players:
    UpgradeSize: 45
    Size: 9
    Moderators:
    UpgradeSize: 54
    Size: 9
    Administrators:
    UpgradeSize: 54
    Size: 54
    Workbench:
    Enabled?: true
    Key: N
    NeededInInventory?: false
    Saves:
    Log?: false
    Interval(InMinutes): 5
    Furnace:
    Enabled?: true
    Key: O


    Settings for PermissionsEX (moderator group):
    Show Spoiler

    - backpack.workbench
    - backpack.size9
    - backpack.clear
    - backpack.nodrop
    - backpack.upgrade54
    - backpack.upgrade45
    - backpack.upgrade36
    - backpack.upgrade27
    - backpack.upgrade18


    Using the latest 1.0.5 spout and spoutcraft RB's

    tried the update now i dont get errors in the log with permEX enabled but the backpack doesnt open either.
    what do i need to add to get it to open?

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

    Wiernusz

  14. Offline

    meizme

    im not sure what the heck is going on, but i am running permissionsEX and i added the latest update 2.0.1 and if i set the config.yml for Permissionsex the backpack doesn't open if i set it to permissonsbukkit it opens with 9 slots, if i set it to perms it pass_event fails. i cant seem to get it to work again. i tried editing everything.

    everything in the config.yml is set for 54 slots, and i added backpack.size8 through size54 in the permissionsex file, this is the only plugin giving me crap, so its not the permissions file.

    any help please neatM?

    backpack.world.adminitrators to the admin group permisions in PermissionsEX and set all of the group names to match those in your config and still not working.

    Show Spoiler

    Widget:
    PositionY: 5
    Enabled?: true
    PositionX: 3
    Workbench:
    Enabled?: true
    Key: N
    NeededInInventory?: false
    Backpack:
    Name: Backpack
    Key: B
    Price:
    '45': 4000.0
    '36': 3000.0
    '18': 1000.0
    '54': 5000.0
    '27': 2000.0
    RegionWhereBackpacksAreDisabled:
    - region1
    - region2
    world:
    Administrators:
    UpgradeSize: 54
    Size: 54
    Moderators:
    UpgradeSize: 45
    Size: 27
    Players:
    UpgradeSize: 27
    Size: 54
    Guests:
    UpgradeSize: 0
    Size: 0
    InventoriesShare?: true
    Furnace:
    Enabled?: true
    Key: O
    Saves:
    Log?: false
    Interval(InMinutes): 5
    Permissions:
    UseGroupManager?: false
    UsePermissions?: false
    UsePermissionsEx?: true
    UsePermissionsBukkit?: false

    -----------------------------------------------------------------------------

    groups:
    default:
    default: true
    permissions:
    - lwc.blockinventory
    - modifyworld.chat
    options:
    rank: '1000'
    prefix: '&0(&8Noob&0)&7 '
    worlds:
    world:
    default: true
    Administrators:
    prefix: '&4Admins &7 '
    permissions:
    - backpack.size54
    - backpack.nodrop
    - backpack.reload
    - backpack.*
    - sortinventory.use
    - sortinventory.*
    - SuperWheat.allow.crop.destroying
    - SuperWheat.allow.crop.regrowing
    - spoutessentials.guiHELP
    - spoutessentials.playgmusic
    - spoutessentials.leavemessage
    - spoutessentials.joinmessage
    - lagmeter.*
    - nocheat.notify
    - nocheat.speedhack
    - nocheat.moving
    - nocheat.flying
    - nocheat.airbuild
    - deathcontrol.use
    - deathcontrol.free
    - backpack.world.Administrators
    - '*'
    options:
    rank: '0'
    worlds:
    world:
    default: false
    default: false
    Players:
    prefix: '&0(&8Member&0)&7'
    permissions:
    - sortinventory.use
    - backpack.workbench
    - backpack.clear
    - backpack.nodrop
    - backpack.upgrade45
    - backpack.upgrade36
    - backpack.upgrade27
    - backpack.upgrade18
    - backpack.size9
    - showcase.finite
    - showcase.basic
    - showcase.bbasic
    - showcase.buy.finite
    - showcase.buy.infinite
    - BOSEconomy.common.pay
    - BOSEconomy.common.stats
    - BOSEconomy.common.income
    - BOSEconomy.common.wallet
    - BOSEconomy.common.bank.list
    - BOSEconomy.common.bracket.info
    - SuperWheat.allow.crop.regrowing
    - spoutessentials.guiHELP
    - spoutessentials.leavemessage
    - spoutessentials.joinmessage
    - MyWolf.Skills.Inventory.54
    - MyWolf.Skills.Inventory.45
    - MyWolf.Skills.Inventory.36
    - MyWolf.Skills.Inventory.27
    - MyWolf.Skills.Inventory.18
    - MyWolf.Skills.Inventory.9
    - MyWolf.Skills.Behavior
    - MyWolf.Skills.hp
    - MyWolf.Skills.live
    - MyWolf.Skills.pickup
    - MyWolf.Skills.control.attack
    - MyWolf.Skills.control.walk
    - MyWolf.release
    - MyWolf.setname
    - MyWolf.compass
    - MyWolf.call
    - MyWolf.leash
    - lwc.protect
    - choptree.chop
    - vegetation.mow
    - woolswitch
    - portalstick.damageboots
    - portalstick.teleport
    - portalstick.placeportal
    - PaintingSwitch.use
    - mobarena.arenas.*
    - mobarena.classes.*
    - mobarena.use.*
    - falsebook.blocks.*
    - deathcontrol.use
    - modifyworld.*
    options:
    rank: '900'
    default: false
    worlds:
    world:
    default: false
    VIP:
    prefix: '&0(&eVIP&0)&7 '
    permissions:
    - sortinventory.use
    - backpack.workbench
    - backpack.clear
    - backpack.nodrop
    - backpack.upgrade45
    - backpack.upgrade36
    - backpack.upgrade27
    - backpack.upgrade18
    - backpack.size9
    - showcase.buy.infinite
    - showcase.buy.finite
    - showcase.basic
    - showcase.finite
    - isort.basic.chest.command
    - isort.adv.stack
    - isort.basic.all
    - BOSEconomy.common.pay
    - BOSEconomy.common.stats
    - BOSEconomy.common.income
    - BOSEconomy.common.wallet
    - BOSEconomy.common.bank.list
    - BOSEconomy.common.bracket.info
    - SuperWheat.allow.crop.regrowing
    - spoutessentials.guiHELP
    - spoutessentials.leavemessage
    - spoutessentials.joinmessage
    - mywolf.skills.Inventory.54
    - mywolf.skills.Inventory.45
    - mywolf.skills.Inventory.36
    - mywolf.skills.Inventory.27
    - mywolf.skills.Inventory.18
    - mywolf.skills.Inventory.9
    - mywolf.skills.behavior
    - mywolf.skills.hp
    - mywolf.skills.live
    - mywolf.skills.pickup
    - mywolf.skills.control.attack
    - mywolf.skills.control.walk
    - mywolf.release
    - mywolf.setname
    - mywolf.compass
    - mywolf.call
    - mywolf.stop
    - mywolf.leash
    - lwc.protect
    - choptree.command.check
    - InvincibleFences.canBreak
    - choptree.chop
    - vegetation.mow
    - woolswitch
    - portalstick.damageboots
    - portalstick.teleport
    - portalstick.placeportal
    - PaintingSwitch.use
    - mobarena.arenas.*
    - mobarena.classes.*
    - mobarena.use.*
    - falsebook.anyic
    - deathcontrol.use
    - modifyworld.*
    - backpack.world.VIP
    inheritance:
    - Member
    options:
    rank: '800'
    worlds:
    '9':
    permissions:
    - mywolf.skills.Inventory
    world:
    default: false
    default: false
    Moderators:
    prefix: '&1'
    permissions:
    - sortinventory.use
    - backpack.workbench
    - backpack.size9
    - backpack.clear
    - backpack.nodrop
    - backpack.upgrade54
    - backpack.upgrade45
    - backpack.upgrade36
    - backpack.upgrade27
    - backpack.upgrade18
    - showcase.finite
    - showcase.basic
    - showcase.buy.finite
    - showcase.buy.infinite
    - isort.basic.all
    - isort.adv.stack
    - isort.basic.chest.command
    - BOSEconomy.common.wallet
    - BOSEconomy.common.income
    - BOSEconomy.common.stats
    - BOSEconomy.common.pay
    - BOSEconomy.common.bank.list
    - SuperWheat.allow.crop.regrowing
    - spoutessentials.guiHELP
    - spoutessentials.leavemessage
    - spoutessentials.joinmessage
    - MyWolf.Skills.Inventory.54
    - MyWolf.Skills.Inventory.45
    - MyWolf.Skills.Inventory.36
    - MyWolf.Skills.Inventory.27
    - MyWolf.Skills.Inventory.18
    - MyWolf.Skills.Inventory.9
    - MyWolf.Skills.Behavior
    - MyWolf.Skills.hp
    - MyWolf.Skills.live
    - MyWolf.Skills.pickup
    - MyWolf.Skills.control.attack
    - MyWolf.Skills.control.walk
    - MyWolf.release
    - MyWolf.setname
    - MyWolf.compass
    - MyWolf.call
    - MyWolf.leash
    - nocheat.notify
    - nocheat.airbuild
    - nocheat.flying
    - nocheat.moving
    - nocheat.speedhack
    - lwc.protect
    - choptree.command.check
    - InvincibleFences.canBreak
    - choptree.chop
    - vegetation.mow
    - vegetation.grow
    - woolswitch
    - worldedit.navigation.thru
    - worldedit.navigation.jumpto
    - worldedit.butcher
    - worldedit.superpickaxe
    - portalstick.admin.deleteall
    - portalstick.damageboots
    - portalstick.teleport
    - portalstick.placeportal
    - seasons.change
    - seasons.weather
    - PaintingSwitch.use
    - mobarena.admin.*
    - mobarena.classes.*
    - mobarena.use.*
    - mobarena.arenas.*
    - landmarks.modify.own
    - landmarks.remove.own
    - landmarks.add
    - falsebook.anyic
    - deathcontrol.use
    - modifyworld.*
    - backpack.world.Moderators
    options:
    rank: '100'
    worlds:
    world:
    default: false
    users:
    meizme:
    group:
    - Administrators
    permissions:
    - '*'
    timbone1343:
    group:
    - VIP
    zane49er:
    group:
    - Players
    truc142:
    group:
    - Moderators


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

    IAMWIN

    hey tried to update to newest version(2.0) and got these errors
    Code:
    2011-08-29 14:26:15 [INFO] Starting minecraft server version Beta 1.7.3
    2011-08-29 14:26:15 [INFO] Loading properties
    2011-08-29 14:26:15 [INFO] Starting Minecraft server on 69.31.134.66:25569
    2011-08-29 14:26:15 [INFO] This server is running Craftbukkit version git-Bukkit-0.0.0-945-g73697a4-b1000jnks (MC: 1.7.3)
    2011-08-29 14:26:16 [INFO] Preparing level "world"
    2011-08-29 14:26:16 [INFO] Preparing start region for level 0 (Seed: -2581189882241960325)
    2011-08-29 14:26:16 [INFO] [bPermissions] Setting up config for world:world
    2011-08-29 14:26:17 [INFO] [bPermissions] Setup world:world
    2011-08-29 14:26:17 [INFO] [bPermissions] WorldPermissionsManager engaged
    2011-08-29 14:26:17 [INFO] [bPermissions] Enabled
    2011-08-29 14:26:17 [INFO] [ChopTree] Using Permissions.
    2011-08-29 14:26:17 [INFO] ChopTree 1.23 enabled!
    2011-08-29 14:26:17 [INFO] CraftBukkitUpToDate version 2.5.7 is enabled!
    2011-08-29 14:26:17 [WARNING] CraftBukkitUpToDate: Can't connect to ci-b.bukkit.org.
    2011-08-29 14:26:17 [WARNING] Bukkit version is not the recommended build for Essentials.
    2011-08-29 14:26:17 [INFO] Preparing start region for level 1 (Seed: -2003375332479680629)
    2011-08-29 14:26:18 [INFO] Loaded Essentials build 2.5.7 by [Zenexer, ementalo, Aelux, Brettflan, KimKandor, snowleo, ceulemans, Xeology, KHobbits]
    2011-08-29 14:26:18 [INFO] Loaded EssentialsGeoIP build 2.5.7 by essentials team
    2011-08-29 14:26:18 [INFO] This product includes GeoLite data created by MaxMind, available from http://www.maxmind.com/.
    2011-08-29 14:26:18 [INFO] Loaded EssentialsSpawn build 2.5.7 by essentials team
    2011-08-29 14:26:18 [WARNING] config broken for xmpp
    2011-08-29 14:26:18 [INFO] Loaded EssentialsXMPP build 2.5.7 by essentials team
    2011-08-29 14:26:18 [INFO] [Gallows] Found Permissions v2.7.2 sucessfully!
    2011-08-29 14:26:18 [INFO] [Gallows] Version 0.08 is enabled!
    2011-08-29 14:26:18 [INFO] [HookShot] Permissions enabled.
    2011-08-29 14:26:18 [INFO] HookShot version 1.3.2 is enabled!
    2011-08-29 14:26:18 [INFO] [Quantum Connectors] version 1.0.2 ENABLED
    2011-08-29 14:26:18 [INFO] [Simple Prefix v1.0.1] Configuration Loaded.
    2011-08-29 14:26:18 [INFO] [Simple Prefix v1.0.1] Plugin enabled!
    2011-08-29 14:26:18 [INFO] SimpleSignEdit v1.6.2 enabled.
    2011-08-29 14:26:18 [INFO] Spout 1.0.5.227 has been initialized
    2011-08-29 14:26:19 [INFO] SpoutEssentials v2.9.5 is enabled!
    2011-08-29 14:26:19 [INFO] SpoutEssentials: Join Message Module enabled
    2011-08-29 14:26:19 [INFO] SpoutEssentials: Forcing Texture Pack Change
    2011-08-29 14:26:19 [INFO] SpoutEssentials: Leave Message Module enabled
    2011-08-29 14:26:19 [INFO] SpoutEssentials: WorldGuard Module disabled
    2011-08-29 14:26:19 [INFO] SpoutEssentials: OnScreenHelp Module disabled
    2011-08-29 14:26:19 [INFO] SpoutEssentials: Music Playlist disabled
    2011-08-29 14:26:19 [INFO] SpoutEssentials: BOSEeconomy module disabled
    2011-08-29 14:26:19 [INFO] SpoutEssentials: Join music turned off
    2011-08-29 14:26:19 [INFO] SpoutEssentials: WG reset player texture off
    2011-08-29 14:26:19 [INFO] SpoutEssentials: MobDisguise module disabled
    2011-08-29 14:26:19 [INFO] [SpoutEssentials] Initiating auto-update...
    2011-08-29 14:26:19 [INFO] [SpoutEssentials] You already have the latest version of SpoutEssentials.
    2011-08-29 14:26:19 [INFO] Found and will use plugin Permissions v2.7.2
    2011-08-29 14:26:19 [SEVERE] java.io.FileNotFoundException: plugins\Spyer\spyer.yml (The system cannot find the file specified)
    2011-08-29 14:26:19 [SEVERE]     at java.io.FileInputStream.open(Native Method)
    2011-08-29 14:26:19 [SEVERE]     at java.io.FileInputStream.<init>(FileInputStream.java:138)
    2011-08-29 14:26:19 [SEVERE]     at java.io.FileReader.<init>(FileReader.java:72)
    2011-08-29 14:26:19 [SEVERE]     at nickguletskii200.SpyerAdmin.SpyerSettings.load(Unknown Source)
    2011-08-29 14:26:19 [SEVERE]     at nickguletskii200.SpyerAdmin.SpyerAdminCommands.onEnable(Unknown Source)
    2011-08-29 14:26:19 [SEVERE]     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:126)
    2011-08-29 14:26:19 [SEVERE]     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:878)
    2011-08-29 14:26:19 [SEVERE]     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:272)
    2011-08-29 14:26:19 [SEVERE]     at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:162)
    2011-08-29 14:26:19 [SEVERE]     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:146)
    2011-08-29 14:26:19 [SEVERE]     at net.minecraft.server.MinecraftServer.e(MinecraftServer.java:284)
    2011-08-29 14:26:19 [SEVERE]     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:271)
    2011-08-29 14:26:19 [SEVERE]     at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:148)
    2011-08-29 14:26:19 [SEVERE]     at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:335)
    2011-08-29 14:26:19 [SEVERE]     at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
    2011-08-29 14:26:19 [INFO] Error: could not fetch settings from YAML document. Make sure it is correct.
    2011-08-29 14:26:19 [INFO] SpyerAdmin has completed updating the script successfully.
    2011-08-29 14:26:20 [INFO] SpyerAdminCommands module version 1.5 stable, a spying utility for administrators and moderators (CommandBook commands module), is active. Part of the Spyer package by [nickguletskii200]
    2011-08-29 14:26:20 [SEVERE] java.io.FileNotFoundException: plugins\Spyer\spyer.yml (The system cannot find the file specified)
    2011-08-29 14:26:20 [SEVERE]     at java.io.FileInputStream.open(Native Method)
    2011-08-29 14:26:20 [SEVERE]     at java.io.FileInputStream.<init>(FileInputStream.java:138)
    2011-08-29 14:26:20 [SEVERE]     at java.io.FileReader.<init>(FileReader.java:72)
    2011-08-29 14:26:20 [SEVERE]     at nickguletskii200.SpyerSettings.load(Unknown Source)
    2011-08-29 14:26:20 [SEVERE]     at nickguletskii200.SpyerFun.onEnable(Unknown Source)
    2011-08-29 14:26:20 [SEVERE]     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:126)
    2011-08-29 14:26:20 [SEVERE]     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:878)
    2011-08-29 14:26:20 [SEVERE]     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:272)
    2011-08-29 14:26:20 [SEVERE]     at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:162)
    2011-08-29 14:26:20 [SEVERE]     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:146)
    2011-08-29 14:26:20 [SEVERE]     at net.minecraft.server.MinecraftServer.e(MinecraftServer.java:284)
    2011-08-29 14:26:20 [SEVERE]     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:271)
    2011-08-29 14:26:20 [SEVERE]     at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:148)
    2011-08-29 14:26:20 [SEVERE]     at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:335)
    2011-08-29 14:26:20 [SEVERE]     at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
    2011-08-29 14:26:20 [INFO] Error: could not fetch settings from YAML document. Make sure it is correct.
    2011-08-29 14:26:20 [INFO] SpyerFun module version 1.5_1 stable, a spying utility for normal players, is active. Part of the Spyer package by [nickguletskii200]
    2011-08-29 14:26:20 [INFO] WorldEdit 4.6 enabled.
    2011-08-29 14:26:20 [INFO] WorldEdit: Permissions plugin detected! Using Permissions plugin for permissions.
    2011-08-29 14:26:20 [INFO] WorldGuard: Permissions plugin detected! Using Permissions plugin for permissions.
    2011-08-29 14:26:20 [WARNING] Unknown option 'on-aquire' in blacklist.txt for 'on-aquire=notify,log'
    2011-08-29 14:26:20 [INFO] WorldGuard: Blacklist loaded.
    2011-08-29 14:26:20 [INFO] WorldGuard: (world) Single session is enforced.
    2011-08-29 14:26:20 [INFO] WorldGuard: (world) TNT ignition is PERMITTED.
    2011-08-29 14:26:20 [INFO] WorldGuard: (world) Lighters are PERMITTED.
    2011-08-29 14:26:20 [INFO] WorldGuard: (world) Lava fire is blocked.
    2011-08-29 14:26:20 [INFO] WorldGuard: (world) Fire spread is limited to 2 block types.
    2011-08-29 14:26:20 [INFO] WorldGuard: Loaded configuration for world 'world"
    2011-08-29 14:26:20 [INFO] WorldGuard: (nether) Single session is enforced.
    2011-08-29 14:26:20 [INFO] WorldGuard: (nether) TNT ignition is PERMITTED.
    2011-08-29 14:26:20 [INFO] WorldGuard: (nether) Lighters are PERMITTED.
    2011-08-29 14:26:20 [INFO] WorldGuard: (nether) Lava fire is blocked.
    2011-08-29 14:26:20 [INFO] WorldGuard: (nether) Fire spread is limited to 2 block types.
    2011-08-29 14:26:20 [INFO] WorldGuard: Loaded configuration for world 'nether"
    2011-08-29 14:26:20 [INFO] WorldGuard: 5 regions loaded for 'world'
    2011-08-29 14:26:20 [INFO] WorldGuard 5.2.2 enabled.
    2011-08-29 14:26:20 [SEVERE] java.io.FileNotFoundException: plugins\Spyer\spyer.yml (The system cannot find the file specified)
    2011-08-29 14:26:20 [SEVERE]     at java.io.FileInputStream.open(Native Method)
    2011-08-29 14:26:20 [SEVERE]     at java.io.FileInputStream.<init>(FileInputStream.java:138)
    2011-08-29 14:26:20 [SEVERE]     at java.io.FileReader.<init>(FileReader.java:72)
    2011-08-29 14:26:20 [SEVERE]     at nickguletskii200.SpyerAdmin.SpyerSettings.load(Unknown Source)
    2011-08-29 14:26:20 [SEVERE]     at nickguletskii200.SpyerAdmin.SpyerAdmin.onEnable(Unknown Source)
    2011-08-29 14:26:20 [SEVERE]     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:126)
    2011-08-29 14:26:20 [SEVERE]     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:878)
    2011-08-29 14:26:20 [SEVERE]     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:272)
    2011-08-29 14:26:20 [SEVERE]     at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:162)
    2011-08-29 14:26:20 [SEVERE]     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:146)
    2011-08-29 14:26:20 [SEVERE]     at net.minecraft.server.MinecraftServer.e(MinecraftServer.java:284)
    2011-08-29 14:26:20 [SEVERE]     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:271)
    2011-08-29 14:26:20 [SEVERE]     at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:148)
    2011-08-29 14:26:20 [SEVERE]     at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:335)
    2011-08-29 14:26:20 [SEVERE]     at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
    2011-08-29 14:26:20 [INFO] Error: could not fetch settings from YAML document. Make sure it is correct.
    2011-08-29 14:26:20 [INFO] SpyerAdmin module version 1.5_1 stable, a spying utility for administrators and moderators (main module), is active. Part of the Spyer package by [nickguletskii200]
    2011-08-29 14:26:20 [INFO] [SpoutBackpack] Permissions found, will use it.
    2011-08-29 14:26:20 [INFO] [SpoutBackpack] Version 2.0 is now enabled.
    2011-08-29 14:26:20 [INFO] [SpoutBackpack] Inventories loaded.
    2011-08-29 14:26:20 [INFO] [SpoutBackpack] Payment method found (Essentials v2.2).
    2011-08-29 14:26:20 [INFO] Server permissions file permissions.yml is empty, ignoring it
    2011-08-29 14:26:20 [INFO] Done (0.419s)! For help, type "help" or "?"
    2011-08-29 14:26:27 [INFO] The automatic update-Check only work every 6 hours, the last check was 185 minutes ago.
    2011-08-29 14:26:31 [INFO] IAMWIN [/69.180.60.189:53472] logged in with entity id 41 at ([world] 38.8125, 65.0, 617.71875)
    2011-08-29 14:26:32 [SEVERE] Could not pass event PLAYER_JOIN to SpoutBackpack
    java.lang.NoSuchMethodError: com.nijiko.permissions.PermissionHandler.getGroupProperName(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
        at me.neatmonster.spoutbackpack.SpoutBackpack.allowedSize(SpoutBackpack.java:310)
        at me.neatmonster.spoutbackpack.SpoutBackpack.loadInventory(SpoutBackpack.java:278)
        at me.neatmonster.spoutbackpack.SBPlayerListener.onPlayerJoin(SBPlayerListener.java:25)
        at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:244)
        at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:58)
        at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:332)
        at net.minecraft.server.ServerConfigurationManager.c(ServerConfigurationManager.java:124)
        at net.minecraft.server.NetLoginHandler.b(NetLoginHandler.java:97)
        at net.minecraft.server.NetLoginHandler.a(NetLoginHandler.java:33)
        at net.minecraft.server.NetworkListenThread.a(SourceFile:91)
        at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:451)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:361)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
    2011-08-29 14:26:32 [INFO] Reading data
    2011-08-29 14:26:32 [INFO] [Spout] Successfully authenticated IAMWIN's Spoutcraft client. Running client version: 1.0.5.256
    2011-08-29 14:26:40 [SEVERE] Could not pass event BLOCK_BREAK to Gallows
    java.lang.IllegalArgumentException: Cannot measure distance between worlds or to null
        at org.bukkit.Location.distance(Location.java:327)
        at kjhf.gallows.Gallows.getNearbyGallows(Gallows.java:176)
        at kjhf.gallows.GallowsProtection.onBlockBreak(GallowsProtection.java:103)
        at org.bukkit.plugin.java.JavaPluginLoader$36.execute(JavaPluginLoader.java:490)
        at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:58)
        at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:332)
        at net.minecraft.server.ItemInWorldManager.c(ItemInWorldManager.java:157)
        at net.minecraft.server.ItemInWorldManager.dig(ItemInWorldManager.java:102)
        at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:458)
        at org.getspout.spout.SpoutNetServerHandler.a(SpoutNetServerHandler.java:140)
        at net.minecraft.server.Packet14BlockDig.a(SourceFile:42)
        at net.minecraft.server.NetworkManager.b(NetworkManager.java:226)
        at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:85)
        at org.getspout.spout.SpoutNetServerHandler.a(SpoutNetServerHandler.java:478)
        at net.minecraft.server.NetworkListenThread.a(SourceFile:105)
        at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:451)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:361)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
    2011-08-29 14:26:42 [SEVERE] Could not pass event CUSTOM_EVENT to SpoutBackpack
    java.lang.NoSuchMethodError: com.nijiko.permissions.PermissionHandler.getGroupProperName(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
        at me.neatmonster.spoutbackpack.SpoutBackpack.canOpenBackpack(SpoutBackpack.java:355)
        at me.neatmonster.spoutbackpack.SBInputListener.onKeyPressedEvent(SBInputListener.java:39)
        at org.getspout.spoutapi.event.input.InputListener.onCustomEvent(InputListener.java:44)
        at org.bukkit.plugin.java.JavaPluginLoader$87.execute(JavaPluginLoader.java:855)
        at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:58)
        at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:332)
        at org.getspout.spoutapi.packet.PacketKeyPress.run(PacketKeyPress.java:71)
        at org.getspout.spout.packet.CustomPacket.a(CustomPacket.java:129)
        at net.minecraft.server.NetworkManager.b(NetworkManager.java:226)
        at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:85)
        at org.getspout.spout.SpoutNetServerHandler.a(SpoutNetServerHandler.java:478)
        at net.minecraft.server.NetworkListenThread.a(SourceFile:105)
        at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:451)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:361)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
    2011-08-29 14:26:48 [SEVERE] Could not pass event CUSTOM_EVENT to SpoutBackpack
    java.lang.NoSuchMethodError: com.nijiko.permissions.PermissionHandler.getGroupProperName(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
        at me.neatmonster.spoutbackpack.SpoutBackpack.canOpenBackpack(SpoutBackpack.java:355)
        at me.neatmonster.spoutbackpack.SBInputListener.onKeyPressedEvent(SBInputListener.java:39)
        at org.getspout.spoutapi.event.input.InputListener.onCustomEvent(InputListener.java:44)
        at org.bukkit.plugin.java.JavaPluginLoader$87.execute(JavaPluginLoader.java:855)
        at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:58)
        at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:332)
        at org.getspout.spoutapi.packet.PacketKeyPress.run(PacketKeyPress.java:71)
        at org.getspout.spout.packet.CustomPacket.a(CustomPacket.java:129)
        at net.minecraft.server.NetworkManager.b(NetworkManager.java:226)
        at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:85)
        at org.getspout.spout.SpoutNetServerHandler.a(SpoutNetServerHandler.java:478)
        at net.minecraft.server.NetworkListenThread.a(SourceFile:105)
        at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:451)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:361)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
    2011-08-29 14:26:48 [SEVERE] Could not pass event CUSTOM_EVENT to SpoutBackpack
    java.lang.NoSuchMethodError: com.nijiko.permissions.PermissionHandler.getGroupProperName(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
        at me.neatmonster.spoutbackpack.SpoutBackpack.canOpenBackpack(SpoutBackpack.java:355)
        at me.neatmonster.spoutbackpack.SBInputListener.onKeyPressedEvent(SBInputListener.java:39)
        at org.getspout.spoutapi.event.input.InputListener.onCustomEvent(InputListener.java:44)
        at org.bukkit.plugin.java.JavaPluginLoader$87.execute(JavaPluginLoader.java:855)
        at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:58)
        at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:332)
        at org.getspout.spoutapi.packet.PacketKeyPress.run(PacketKeyPress.java:71)
        at org.getspout.spout.packet.CustomPacket.a(CustomPacket.java:129)
        at net.minecraft.server.NetworkManager.b(NetworkManager.java:226)
        at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:85)
        at org.getspout.spout.SpoutNetServerHandler.a(SpoutNetServerHandler.java:478)
        at net.minecraft.server.NetworkListenThread.a(SourceFile:105)
        at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:451)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:361)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
    2011-08-29 14:26:49 [SEVERE] Could not pass event CUSTOM_EVENT to SpoutBackpack
    java.lang.NoSuchMethodError: com.nijiko.permissions.PermissionHandler.getGroupProperName(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
        at me.neatmonster.spoutbackpack.SpoutBackpack.canOpenBackpack(SpoutBackpack.java:355)
        at me.neatmonster.spoutbackpack.SBInputListener.onKeyPressedEvent(SBInputListener.java:39)
        at org.getspout.spoutapi.event.input.InputListener.onCustomEvent(InputListener.java:44)
        at org.bukkit.plugin.java.JavaPluginLoader$87.execute(JavaPluginLoader.java:855)
        at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:58)
        at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:332)
        at org.getspout.spoutapi.packet.PacketKeyPress.run(PacketKeyPress.java:71)
        at org.getspout.spout.packet.CustomPacket.a(CustomPacket.java:129)
        at net.minecraft.server.NetworkManager.b(NetworkManager.java:226)
        at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:85)
        at org.getspout.spout.SpoutNetServerHandler.a(SpoutNetServerHandler.java:478)
        at net.minecraft.server.NetworkListenThread.a(SourceFile:105)
        at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:451)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:361)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
    2011-08-29 14:26:49 [SEVERE] Could not pass event CUSTOM_EVENT to SpoutBackpack
    java.lang.NoSuchMethodError: com.nijiko.permissions.PermissionHandler.getGroupProperName(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
        at me.neatmonster.spoutbackpack.SpoutBackpack.canOpenBackpack(SpoutBackpack.java:355)
        at me.neatmonster.spoutbackpack.SBInputListener.onKeyPressedEvent(SBInputListener.java:39)
        at org.getspout.spoutapi.event.input.InputListener.onCustomEvent(InputListener.java:44)
        at org.bukkit.plugin.java.JavaPluginLoader$87.execute(JavaPluginLoader.java:855)
        at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:58)
        at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:332)
        at org.getspout.spoutapi.packet.PacketKeyPress.run(PacketKeyPress.java:71)
        at org.getspout.spout.packet.CustomPacket.a(CustomPacket.java:129)
        at net.minecraft.server.NetworkManager.b(NetworkManager.java:226)
        at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:85)
        at org.getspout.spout.SpoutNetServerHandler.a(SpoutNetServerHandler.java:478)
        at net.minecraft.server.NetworkListenThread.a(SourceFile:105)
        at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:451)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:361)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
    2011-08-29 14:26:49 [SEVERE] Could not pass event CUSTOM_EVENT to SpoutBackpack
    java.lang.NoSuchMethodError: com.nijiko.permissions.PermissionHandler.getGroupProperName(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
        at me.neatmonster.spoutbackpack.SpoutBackpack.canOpenBackpack(SpoutBackpack.java:355)
        at me.neatmonster.spoutbackpack.SBInputListener.onKeyPressedEvent(SBInputListener.java:39)
        at org.getspout.spoutapi.event.input.InputListener.onCustomEvent(InputListener.java:44)
        at org.bukkit.plugin.java.JavaPluginLoader$87.execute(JavaPluginLoader.java:855)
        at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:58)
        at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:332)
        at org.getspout.spoutapi.packet.PacketKeyPress.run(PacketKeyPress.java:71)
        at org.getspout.spout.packet.CustomPacket.a(CustomPacket.java:129)
        at net.minecraft.server.NetworkManager.b(NetworkManager.java:226)
        at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:85)
        at org.getspout.spout.SpoutNetServerHandler.a(SpoutNetServerHandler.java:478)
        at net.minecraft.server.NetworkListenThread.a(SourceFile:105)
        at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:451)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:361)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
    2011-08-29 14:26:49 [SEVERE] Could not pass event CUSTOM_EVENT to SpoutBackpack
    java.lang.NoSuchMethodError: com.nijiko.permissions.PermissionHandler.getGroupProperName(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
        at me.neatmonster.spoutbackpack.SpoutBackpack.canOpenBackpack(SpoutBackpack.java:355)
        at me.neatmonster.spoutbackpack.SBInputListener.onKeyPressedEvent(SBInputListener.java:39)
        at org.getspout.spoutapi.event.input.InputListener.onCustomEvent(InputListener.java:44)
        at org.bukkit.plugin.java.JavaPluginLoader$87.execute(JavaPluginLoader.java:855)
        at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:58)
        at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:332)
        at org.getspout.spoutapi.packet.PacketKeyPress.run(PacketKeyPress.java:71)
        at org.getspout.spout.packet.CustomPacket.a(CustomPacket.java:129)
        at net.minecraft.server.NetworkManager.b(NetworkManager.java:226)
        at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:85)
        at org.getspout.spout.SpoutNetServerHandler.a(SpoutNetServerHandler.java:478)
        at net.minecraft.server.NetworkListenThread.a(SourceFile:105)
        at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:451)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:361)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:422)
     
  16. Offline

    NeatMonster

    Sorry, as I said in the OP, I switched to Bukkit Dev'.
    Have you tried v2.1.0? Please also read new Installation & Configuration page.

    You're welcome! I'll retry to add your suggestion, but it's not as easy as I thought.

    Try v2.1.0. It should solve all your issues. Your video is also outdated now! ;)
     
  17. Offline

    IAMWIN

    wiill update vid right now as i install
     
  18. Offline

    meizme

    [​IMG]

    Great Job NeatMonster the 2.1.0 fixed the issue with opening and use, now it just spews wierd info out, still functional though.

    I get this with the commands /bp info and /bp upgrade
    hope the screenshot helps.
     
  19. Offline

    NeatMonster

    Fine, maybe wait the v2.1.1, the last update of today.

    I'm on it, it'll be corrected in v2.1.1.

    Remember, this thread will no longer being updated. But I'll still answer to posts here.
     
  20. Offline

    meizme

    i understand i posted a ticket as well but i like this board better hehe.
     
  21. Offline

    NeatMonster

    I understand. ;) I'm editing Bukkit Dev's thread right now because v2.1.1 is released!
     
  22. Offline

    meizme

    working perfect, your the man, /bow
     
  23. Offline

    IAMWIN

  24. Offline

    NeatMonster

    You're welcome!

    Thank you very much.

    Don't worry, just do what you want. (You can't make a video every time I update this plugin.) :p
     
  25. Offline

    IAMWIN

    i'll just do it everytime the tutorial will be obsolete xD
     
  26. Offline

    NeatMonster

    You'll have a lot of work! :p
     
  27. Offline

    IAMWIN

    ehh i dont mind xD i like to do some sort of help for ppl that help my server :3
     
  28. Offline

    NeatMonster

    Like guys like you. I've my own server, but I don't make video tutorials for my players. :p
     
  29. Offline

    Wiernusz

    Don't sweat it. Id rather see the other things you have in mind. One thing I think would be cool, since you already have basic coding down, is a sort of Arrow quiver, or tool belt of some sort that allows you to stick certain items in it.

    Don't know how hard this would be but let me know what you think. Stashing toolson a belt or arrows in a quuiver would be unique and neat. Seems like you have the Api and would just be a basic backpack with smaller allocations and differennt name, but with item restrictions.


    On a side note, do you know if the superperms upgrade feature works? (Maybe you remember my older posts) Im hesitant to mess with folks items.

    edit: Forgot about BukkitDev. Was on phone earlier. Going to repost there :)
     
  30. Offline

    NeatMonster

    Hum... it's difficult to limit the size to 1 slot, because I think the minimum is 9 slots. I'll see if others solutions exists. I think it's a good idea.

    Normally, the SuperPerms upgrade feature must work.
     
  31. Offline

    Danton1983



    You need to update bukkit, I'd remove the essentialsxmp.jar plugin also it appears you're not using it as the config hasn't been set up for it.

    For some reason after I updated to 2.0.1 the group manager permissions are not working for backpacks, Anyone else seeing this issue?

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

Share This Page