[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

    Pomme72

    Of course, I'm using 1185. :'(
     
  3. Offline

    meizme

    i am using boseconomy 7.2 and that seems to be throwing the error when i upgraded.

    i tried the silent update still same error.
     
  4. Offline

    NeatMonster

    The error comes from Register and I'm not the only dev' to got it. I'm still working on a fix.

    @meizme
    I made a silent update of the plugin to try to solve this issue with Register. Please try to re-download the .JAR from the Dropbox.

    @Pomme72
    J'ai re-tenté de corriger le problème. Essaye de re-télécharger le .JAR depuis le lien Dropbox. Dis-moi si ça marche ou si ce n'est toujours pas bon.

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

    AVirusC

    I started getting this error today. I am using Essentials economy and for some reason this just started happening today:

    Code:
    17:18:04 [SEVERE] Error occurred while enabling SpoutBackpack v2.3.4 (Is it up to date?): com.nijikokun.register.payment.Methods.setMethod(Lorg/bukkit/plugin/PluginManager;)Z
    java.lang.NoSuchMethodError: com.nijikokun.register.payment.Methods.setMethod(Lorg/bukkit/plugin/PluginManager;)Z
            at me.neatmonster.spoutbackpack.SpoutBackpack.setupRegister(SpoutBackpack.java:287)
            at me.neatmonster.spoutbackpack.SpoutBackpack.onEnable(SpoutBackpack.java:105)
            at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:126)
            at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:920)
            at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:278)
            at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:173)
            at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:156)
            at net.minecraft.server.MinecraftServer.e(MinecraftServer.java:297)
            at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:284)
            at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:152)
            at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:348)
            at net.minecraft.server.ThreadServerApplication.run(SourceFile:417)
    
     
  6. Offline

    NeatMonster

    Please try to redownload the .JAR from the Dropbox link and tell me if it's still not working.
     
  7. Offline

    AVirusC

    Code:
    11:12:52 [INFO] [SpoutBackpack] Permissions found, will use it.
    11:12:52 [INFO] [SpoutBackpack] Version 2.3.4 is now enabled.
    11:12:52 [INFO] [SpoutBackpack] Inventories loaded.
    11:12:52 [INFO] [SpoutBackpack] Payment method found (Essentials v2.2).
    
    All systems go. Thanks.
     
  8. Offline

    NeatMonster

    @meizme @Pomme72
    I released v2.3.5, Register issue is fixed.
     
  9. Offline

    moose517

    dumb question but i'm stumped. I use PEX and i see you say that you need to add backpack.world.group permission. I tried adding backpack.freebuild.AdvBuilder in my case and it fails am i missing something else? Whole command was /pex group AdvBuilder add backpack.freebuild.AdvBuilder
     
  10. Offline

    NeatMonster

     
  11. Offline

    spudy121

    I have bin using the plugin for a wile now and decided to update it so I've updated everything From spout to spoutcraft and now im using minecraft 1.8 everything loads fine no errors on the server but when i try to open my backpack nothing comes up i used the same old permissions in the permissions.yml but no luck. im wondering if some of the permissions have changed but i don't see any new ones the permissions im using for op are
    backpack.workbench: true
    backpack.nodrop: true
    backpack.clear: true
    backpack.clear.other: true
    backpack.info.other: true
    backpack.upgrade.other: true
    backpack.open.other : true
    backpack.reload: true
    backpack.size54: true
    and i have in the config .yml
    Permissions:
    UseGroupManager?: false
    UsePermissions?: true
    UsePermissionsEx?: false
    UsePermissionsBukkit?: false
    that's always worked before I'f you could help I would be great full
     
  12. Offline

    NeatMonster

    Please type /bp debug and paste here the outpout (in the console). Maybe Spout's methods have changed, I need to take a lot of them.

    Amicably, NeatMonster.
     
  13. Offline

    spudy121

    i tried to put /bd in to the game console and the server console no luck i don't know if i'm doing it wrong any suggestions.
     
  14. Offline

    NeatMonster

    Please type /bp debug IN THE CHAT and paste the output which is IN THE CONSOLE.
     
  15. Offline

    nicquehen

    Hi

    It is possible to open our backpack with a command without parameters?
    example :
    /backpack open --> open the current backpack

    I ask that because i use SpoutEssential GUI i want to add in the GUI a shortcuts to open the current backpack/workbench.
     
  16. Offline

    NeatMonster

    Not possible for the moment.
     
  17. Offline

    nicquehen

  18. Offline

    Nibelton

    after updating to 1317
    Code:
    2011-10-11 22:04:06 [SEVERE] Error occurred (in the plugin loader) while disabling SpoutBackpack v2.3.5 (Is it up to date?): null
    java.lang.NullPointerException
        at java.lang.Class.isAssignableFrom(Native Method)
        at org.bukkit.plugin.java.JavaPluginLoader.removeClass(JavaPluginLoader.java:245)
        at org.bukkit.plugin.java.JavaPluginLoader.disablePlugin(JavaPluginLoader.java:992)
        at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:296)
        at org.bukkit.plugin.SimplePluginManager.disablePlugins(SimplePluginManager.java:289)
        at org.bukkit.craftbukkit.CraftServer.disablePlugins(CraftServer.java:166)
        at net.minecraft.server.MinecraftServer.stop(MinecraftServer.java:325)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:404)
        at net.minecraft.server.ThreadServerApplication.run(SourceFile:417)
     
  19. Offline

    NotYetRated

    Not working for me on 1317 bukkit.

    When I press "B" to access my backpack,

    Code:
    2011-10-11 20:28:42 [SEVERE] Could not pass event CUSTOM_EVENT to SpoutBackpack
    while parsing a block mapping
    in "", line 1, column 1:
    '3':
    ^
    expected , but found Value
    in "", line 22, column 1:
    :
    ^
    
    at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingKey.produce(ParserImpl.java:575)
    at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:161)
    at org.yaml.snakeyaml.parser.ParserImpl.checkEvent(ParserImpl.java:146)
    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:123)
    at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:106)
    at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:121)
    at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:480)
    at org.yaml.snakeyaml.Yaml.load(Yaml.java:423)
    at org.bukkit.util.config.Configuration.load(Configuration.java:89)
    at me.neatmonster.spoutbackpack.SpoutBackpack.allowedSizeInConfig(SpoutBackpack.java:370)
    at me.neatmonster.spoutbackpack.SpoutBackpack.allowedSize(SpoutBackpack.java:355)
    at me.neatmonster.spoutbackpack.SBInputListener.onKeyPressedEvent(SBInputListener.java:78)
    at org.getspout.spoutapi.event.input.InputListener.onCustomEvent(InputListener.java:51)
    at org.bukkit.plugin.java.JavaPluginLoader$96.execute(JavaPluginLoader.java:934)
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:58)
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:339)
    at org.getspout.spoutapi.packet.PacketKeyPress.run(PacketKeyPress.java:72)
    at org.getspout.spout.packet.CustomPacket.a(CustomPacket.java:130)
    at net.minecraft.server.NetworkManager.b(NetworkManager.java:226)
    at net.minecraft.server.NetServerHandler.a(NetServerHandler.java:92)
    at org.getspout.spout.SpoutNetServerHandler.a(SpoutNetServerHandler.java:500)
    at net.minecraft.server.NetworkListenThread.a(SourceFile:108)
    at net.minecraft.server.MinecraftServer.h(MinecraftServer.java:471)
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:374)
    at net.minecraft.server.ThreadServerApplication.run(SourceFile:417) 
     
  20. Offline

    NeatMonster

    I'm working on an update.
     
  21. Offline

    NotYetRated

    Thank you much for the hard work! Let me know if I can be of any help testing.
     
  22. Offline

    NeatMonster

    Please go to Bukkit and download v2.3.6_2.
     
  23. Offline

    nicquehen

    En
    I have a little problem : when i restart my server the backpack is not save.

    FR
    Salut.

    J'ai installer la version
    v2.3.6_2.
    sur mon serveur (bukkit 1337)

    Je rencontre un problème très genant.
    Lorsque je reboot le serveur, le contenu du sac n'est pas sauvegardé (du moins dans les logs il me dis que tout est ok, cependant il ne me sauvegarde rien). Le contenu du fichier yml (dossier inventories) se limite a "Size: 54" mais c'est tout.

    Je n'ai pas de probleme pour une deco reco mais un reboot.
    Voici la liste des plugins utilisés :
    [​IMG]
    ma version de spout 449
    fichier de conf :

    Code:
    Backpack:
      Servergame:
        InventoriesShare?: true
      Name: Backpack
      Price:
        '18': 10.0
        '36': 30.0
        '27': 20.0
        '45': 40.0
        '54': 50.0
      Key: B
      NoneBlackOrWhiteList?: 0
      Blacklist:
      - 264
      RegionWhereBackpacksAreDisabled:
      - region1
      - region2
      Whitelist:
      - 262
    Permissions:
      UsePermissionsBukkit?: false
      UseGroupManager?: false
      UsePermissions?: false
      UsePermissionsEx?: true
    Workbench:
      NeededInInventory?: false
      Enabled?: true
      Key: N
    Saves:
      Log?: true
      Interval(InMinutes): 1
    Widget:
      PositionX: 3
      PositionY: 5
      Enabled?: true
    Worbench:
      CanBeBought?: false
    Language: French
    
    Test pour reproduire le problème :

    16h23 --> demarrage du serv
    bloc wood dans inventaire --> vers backpack
    ensuite /bp debug

    deco reco
    Verification backpack ok

    16h24 -->reboot
    Backpack vide
    /bp debug


    Code:
    2011-10-20 16:23:13 [INFO] Starting minecraft server version Beta 1.8.1
    2011-10-20 16:23:13 [INFO] Loading properties
    2011-10-20 16:23:13 [INFO] Starting Minecraft server on *:25565
    2011-10-20 16:23:13 [INFO] This server is running Craftbukkit version git-Bukkit-0.0.0-1131-g86b7fa8-b1337jnks (MC: 1.8.1)
    2011-10-20 16:23:13 [INFO] [PermissionsEx] sql backend registered!
    2011-10-20 16:23:13 [INFO] [PermissionsEx] file backend registered!
    2011-10-20 16:23:13 [INFO] [PermissionsEx] PermissionEx plugin initialized.
    2011-10-20 16:23:14 [INFO] [PermissionsEx] p2compat backend registered!
    2011-10-20 16:23:14 [INFO] [PermissionsCompat] Compatibility Layer Initalized!
    2011-10-20 16:23:14 [INFO] [DirectBankX] Preferred method [null] not found, using first found.
    2011-10-20 16:23:14 [INFO] [DirectBankX] version 0.9 is enabled.
    2011-10-20 16:23:14 [INFO] MLog clients using java 1.4+ standard logging.
    2011-10-20 16:23:14 [INFO] [PermissionsEx] Initializing file backend
    2011-10-20 16:23:14 [INFO] NoFloatingTrees 0.4.3: Enabled.
    2011-10-20 16:23:14 [INFO] Spout 1.0.6.449 has been initialized
    2011-10-20 16:23:14 [INFO] Preparing level "Servergame"
    2011-10-20 16:23:14 [INFO] Default game type: 0
    2011-10-20 16:23:14 [INFO] Preparing start region for level 0 (Seed: 135174176)
    2011-10-20 16:23:14 [INFO] Preparing start region for level 1 (Seed: 5070363125758805235)
    2011-10-20 16:23:15 [INFO] BOSEconomy: Located Permissions 2.7.7.
    2011-10-20 16:23:15 [INFO] BOSEconomy v0.7.2 enabled.
    2011-10-20 16:23:15 [INFO] [CFBanner] Plugin has been enabled!
    2011-10-20 16:23:15 [INFO] [CFBanner] Permissions found. Using Permissions v2.7.7
    2011-10-20 16:23:15 [INFO] [CFBanner] 1.9.2 loaded!
    2011-10-20 16:23:15 [INFO] [BANK] succesfully loaded...
    2011-10-20 16:23:15 [INFO] [DirectBankX] Payment method found (BOSEconomy version: 0.7.0)
    2011-10-20 16:23:15 [INFO] EnderTP enabled.
    2011-10-20 16:23:15 [INFO] Using locale fr_FR
    2011-10-20 16:23:15 [INFO] Using locale fr_FR
    2011-10-20 16:23:15 [INFO] Essentials version 2.6.3 par Zenexer, ementalo, Aelux, Brettflan, KimKandor, snowleo, ceulemans, Xeology, KHobbits a été chargé
    2011-10-20 16:23:15 [INFO] Essentials: Using config based permissions. Enable superperms in config.
    2011-10-20 16:23:15 [INFO] [Essentials] Payment method found (BOSEconomy version: 0.7.0)
    2011-10-20 16:23:15 [INFO] EssentialsChat version 2.6.3 par essentials team a été chargé
    2011-10-20 16:23:15 [INFO] Initializing c3p0-0.9.1.2 [built 21-May-2007 15:04:56; debug? true; trace: 10]
    2011-10-20 16:23:15 [INFO] EssentialsProtect version 2.6.3 par essentials team a été chargé
    2011-10-20 16:23:15 [INFO] EssentialsSpawn version 2.6.3 par essentials team a été chargé
    2011-10-20 16:23:15 [INFO] [ItemLogger] ItemLogger v1.031 enabled
    2011-10-20 16:23:15 [INFO] [ItemLogger] ItemLogger config file found, loading config...
    2011-10-20 16:23:15 [INFO] [MCDocs] (Tazzernator/Andrew Tajsic) - v11 loaded.
    2011-10-20 16:23:15 [INFO] [MinecraftViewer] Query running on 0.0.0.0:25565
    2011-10-20 16:23:15 [INFO] [MinecraftViewer] v1.0d Plugin Enabled.
    2011-10-20 16:23:15 [INFO] MoneyDrop is up and running!
    2011-10-20 16:23:15 [INFO] [MoneyDrop] Economy found. Money pickup enabled.
    2011-10-20 16:23:15 [INFO] Version: 91
    2011-10-20 16:23:15 [INFO] [NarrowtuxLib] v0.8.11 by [narrowtux] enabled.
    2011-10-20 16:23:15 [INFO] [NarrowtuxLib] Payment method found (BOSEconomy version: 0.7.0)
    2011-10-20 16:23:15 [INFO] [NoCheat] This version is for CB #1240 and CB #1317. It may break at any time and for any other version.
    2011-10-20 16:23:15 [INFO] [NoCheat] version [2.11a] is enabled.
    2011-10-20 16:23:15 [INFO] [PermissionsEx] Superperms support enabled.
    2011-10-20 16:23:15 [INFO] [PermissionsEx] v1.15 enabled
    2011-10-20 16:23:15 [INFO] Essentials: Using PermissionsEx based permissions.
    2011-10-20 16:23:15 [INFO] == [RevverChat] ==
    2011-10-20 16:23:15 [INFO] == v1.0 ==
    2011-10-20 16:23:15 [INFO] == Is now Enabled! ==
    2011-10-20 16:23:15 [INFO] == [RevverChat] Using color 'yellow' for RevverAdmin ==
    2011-10-20 16:23:15 [INFO] == [RevverChat] Using channel name 'prive' for RevverAdmin ==
    2011-10-20 16:23:15 [INFO] == [RevverChat] Successfully Found Permissions! ==
    2011-10-20 16:23:15 [INFO] Sheepfeed: Permissions plugin detected.
    2011-10-20 16:23:15 [INFO] SheepFeed version 1.4 by ArmEagle is enabled!
    2011-10-20 16:23:15 [INFO] SpoutEssentials v3.7.1 is enabled!
    2011-10-20 16:23:15 [INFO] SpoutEssentials: WorldGuard Module enabled
    2011-10-20 16:23:15 [INFO] SpoutEssentials: MobDisguise module disabled
    2011-10-20 16:23:15 [INFO] Found and will use plugin Permissions v2.7.7
    2011-10-20 16:23:15 [INFO] [SpoutPlayers] by nil0bject version 1.9.1 enabled.
    2011-10-20 16:23:15 [INFO] [TotallyOrbSome] v1.1 final Enabled!
    2011-10-20 16:23:15 [INFO] WorldEdit 4.7 enabled.
    2011-10-20 16:23:15 [INFO] WorldEdit: PermissionsEx detected! Using PermissionsEx for permissions.
    2011-10-20 16:23:15 [INFO] WorldGuard: PermissionsEx detected! Using PermissionsEx for permissions.
    2011-10-20 16:23:15 [INFO] WorldGuard: (Servergame) Single session is enforced.
    2011-10-20 16:23:15 [INFO] WorldGuard: (Servergame) TNT ignition is PERMITTED.
    2011-10-20 16:23:15 [INFO] WorldGuard: (Servergame) Lighters are PERMITTED.
    2011-10-20 16:23:15 [INFO] WorldGuard: (Servergame) Lava fire is blocked.
    2011-10-20 16:23:15 [INFO] WorldGuard: (Servergame) Fire spread is UNRESTRICTED.
    2011-10-20 16:23:15 [INFO] WorldGuard: Loaded configuration for world 'Servergame"
    2011-10-20 16:23:15 [INFO] WorldGuard: (Servergame_nether) Single session is enforced.
    2011-10-20 16:23:15 [INFO] WorldGuard: (Servergame_nether) TNT ignition is PERMITTED.
    2011-10-20 16:23:15 [INFO] WorldGuard: (Servergame_nether) Lighters are PERMITTED.
    2011-10-20 16:23:15 [INFO] WorldGuard: (Servergame_nether) Lava fire is blocked.
    2011-10-20 16:23:15 [INFO] WorldGuard: (Servergame_nether) Fire spread is UNRESTRICTED.
    2011-10-20 16:23:15 [INFO] WorldGuard: Loaded configuration for world 'Servergame_nether"
    2011-10-20 16:23:15 [INFO] WorldGuard: 13 regions loaded for 'Servergame'
    2011-10-20 16:23:15 [INFO] WorldGuard: 2 regions loaded for 'Servergame_nether'
    2011-10-20 16:23:15 [INFO] WorldGuard 5.3 enabled.
    2011-10-20 16:23:15 [INFO] [Modifyworld] Modifyworld enabled!
    2011-10-20 16:23:15 [INFO] [PermissionsCompat] Compatibility layer enabled.
    2011-10-20 16:23:15 [INFO] WorldEdit: PermissionsEx detected! Using PermissionsEx for permissions.
    2011-10-20 16:23:15 [INFO] WorldGuard: PermissionsEx detected! Using PermissionsEx for permissions.
    2011-10-20 16:23:15 [INFO] [Showcase] Registered type [basic] (38 items loaded)
    2011-10-20 16:23:15 [INFO] [Showcase] Registered type [finite] (0 items loaded)
    2011-10-20 16:23:15 [INFO] [Showcase] Registered type [infinite] (0 items loaded)
    2011-10-20 16:23:15 [INFO] [Showcase] Registered type [exchange] (0 items loaded)
    2011-10-20 16:23:15 [INFO] [Showcase] Registered type [tutorial] (0 items loaded)
    2011-10-20 16:23:15 [INFO] [Showcase] version 0.7.7.11 has been enabled.
    2011-10-20 16:23:15 [INFO] [SortInventory] Permissions3/SuperpermBridge is detected. Permissions v2.7.7
    2011-10-20 16:23:15 [INFO] [SortInventory] PermissionsEx is detected.
    2011-10-20 16:23:15 [INFO] [SortInventory] OBS. More than one permission system detected. The test sequence is: PermissionsBukkit, Permissions/PermissionsBridges, PermissionsEx
    2011-10-20 16:23:15 [INFO] [SortInventory] Spout is detected.
    2011-10-20 16:23:15 [INFO] [SortInventory] SpoutBackpack is detected.
    2011-10-20 16:23:15 [WARNING] [SortInventory] SortInventory is Outdated.
    2011-10-20 16:23:15 [WARNING] [SortInventory] SortInventory should be replaced by BukkitInventoryTools
    2011-10-20 16:23:15 [INFO] [SortInventory] SortInventory version 1.4.1 is enabled!
    2011-10-20 16:23:15 [INFO] [ChestShop] Permissions version 2.7.7 loaded.
    2011-10-20 16:23:15 [INFO] [ChestShop] WorldGuard version 5.3 loaded.
    2011-10-20 16:23:16 [INFO] [ChestShop] version 3.24 initialized!
    2011-10-20 16:23:16 [INFO] [ChestShop] BOSEconomy 0.7.0 loaded.
    2011-10-20 16:23:16 [INFO] [Jail] Loaded 0 jail zones.
    2011-10-20 16:23:16 [INFO] [Jail] Loaded 0 prisoners.
    2011-10-20 16:23:16 [INFO] [Jail] Loaded 0 cells.
    2011-10-20 16:23:16 [INFO] [Jail] Jail v2.0.3 loaded!
    2011-10-20 16:23:16 [INFO] PC: Loading PluginControl Version 1.2.0
    2011-10-20 16:23:16 [INFO] PC: Using Nijikokun's Permission plugin (new detection system)
    2011-10-20 16:23:16 [INFO] Read level-name: Servergame
    2011-10-20 16:23:16 [INFO] PW: Starting initialization of PrivateWarp 1.6.0
    2011-10-20 16:23:16 [INFO] PW: Copyright: Wrecker Technologies
    2011-10-20 16:23:16 [INFO] PW: PrivateWarp 1.6.0 initialized
    2011-10-20 16:23:16 [INFO] PW: Just got enabled
    2011-10-20 16:23:16 [INFO] properTime reading from config at C:\Users\Bonobo\Desktop\minecraft\plugins\properTime\properTime.conf
    2011-10-20 16:23:16 [INFO] properTime 1.9.0 initialized
    2011-10-20 16:23:16 [INFO] [SpoutBackpack] PermissionsEx détecté.
    2011-10-20 16:23:16 [INFO] [SpoutBackpack] Jail détecté.
    2011-10-20 16:23:16 [INFO] [SpoutBackpack] Version 2.3.6 is now enabled.
    2011-10-20 16:23:16 [INFO] [SpoutBackpack] Inventaires chargés.
    2011-10-20 16:23:16 [INFO] [SpoutBackpack] Méthode de paiement détectée (BOSEconomy v0.7.0).
    2011-10-20 16:23:16 [INFO] WorldBorder version 1.4.4 loading
    2011-10-20 16:23:16 [INFO] [WorldBorder] [CONFIG] Using round border, knockback of 3.0 blocks, and timer delay of 5.
    2011-10-20 16:23:16 [INFO] [WorldBorder] [CONFIG] Border-checking timed task started.
    2011-10-20 16:23:16 [INFO] [WorldBorder] [CONFIG] World "Servergame" has border radius 1000 at X: -303,7 Z: 31,4
    2011-10-20 16:23:16 [INFO] [WorldBorder] [CONFIG] World "Servergame_nether" has border radius 500 at X: 36,1 Z: 4,0
    2011-10-20 16:23:16 [INFO] [WorldBorder] [CONFIG] Will use plugin for permissions: Permissions v2.7.7
    2011-10-20 16:23:16 [INFO] For reference, the main world's spawn location is at X: -305 Y: 64 Z: 30
    2011-10-20 16:23:16 [INFO] Server permissions file permissions.yml is empty, ignoring it
    2011-10-20 16:23:16 [INFO] Done (0,197s)! For help, type "help" or "?"
    2011-10-20 16:23:26 [INFO] /127.0.0.1:64474 lost connection
    2011-10-20 16:23:28 [INFO] nicquehen [/127.0.0.1:64476] logged in with entity id 154 at ([Servergame] -761.71875, 78.0, -321.21875)
    2011-10-20 16:23:29 [INFO] Reading data
    2011-10-20 16:23:29 [INFO] New max size: 484
    2011-10-20 16:23:29 [INFO] New max size: 784
    2011-10-20 16:23:29 [INFO] [Spout] Successfully authenticated nicquehen's Spoutcraft client. Running client version: 1.0.6.564
    2011-10-20 16:23:31 [INFO] [ChestShop] Couldn't generate statistics page!
    2011-10-20 16:24:11 [INFO] Vous utilisez PermissionsEx.
    2011-10-20 16:24:11 [INFO] Système économique détecté.
    2011-10-20 16:24:11 [INFO] Vos permissions vous autorisent à avoir 54 places dans votre Backpack.
    2011-10-20 16:24:11 [INFO] Votre fichier personel vous autorise à avoir 54 places dans votre Backpack.
    2011-10-20 16:24:11 [INFO] Vos permissions vous autorisent à améliorer jusqu'à avoir 54 places dans votre Backpack.
    2011-10-20 16:24:16 [INFO] [SpoutBackpack] Sauvegardes des inventaires !
    2011-10-20 16:24:28 [INFO] Connection reset
    2011-10-20 16:24:28 [INFO] nicquehen lost connection: disconnect.quitting
    2011-10-20 16:24:30 [INFO] nicquehen [/127.0.0.1:64644] logged in with entity id 199 at ([Servergame] -759.78125, 77.0, -319.3125)
    2011-10-20 16:24:31 [INFO] Reading data
    2011-10-20 16:24:31 [INFO] [Spout] Successfully authenticated nicquehen's Spoutcraft client. Running client version: 1.0.6.564
    2011-10-20 16:24:31 [INFO] [ChestShop] Couldn't generate statistics page!
    2011-10-20 16:24:40 [INFO] /127.0.0.1:64690 lost connection
    2011-10-20 16:24:40 [INFO] nicquehen lost connection: disconnect.quitting
    2011-10-20 16:24:40 [INFO] Connection reset
    2011-10-20 16:24:45 [INFO] [Server] Server shutting down immediately. World is being saved.
    2011-10-20 16:24:45 [INFO] Unknown command. Type "help" for help.
    2011-10-20 16:24:45 [INFO] CONSOLE: Enabling level saving..
    2011-10-20 16:24:45 [INFO] Unknown command. Type "help" for help.
    2011-10-20 16:24:45 [INFO] CONSOLE: Forcing save..
    2011-10-20 16:24:45 [INFO] CONSOLE: Save complete.
    2011-10-20 16:24:45 [INFO] Unknown command. Type "help" for help.
    2011-10-20 16:24:45 [INFO] CONSOLE: Stopping the server..
    2011-10-20 16:24:45 [INFO] Unknown command. Type "help" for help.
    2011-10-20 16:24:45 [INFO] Stopping server
    2011-10-20 16:24:45 [INFO] BOSEconomy: Saving plugin data.
    2011-10-20 16:24:45 [INFO] BOSEconomy 0.7.2 disabled.
    2011-10-20 16:24:45 [INFO] [DirectBankX] Payment method was disabled. No longer accepting payments.
    2011-10-20 16:24:45 [INFO] [Essentials] Payment method was disabled. No longer accepting payments.
    2011-10-20 16:24:45 [INFO] [ChestShop] Economy plugin disabled!
    2011-10-20 16:24:45 [INFO] [MoneyDrop] Economy disabled. Money pickup disabled.
    2011-10-20 16:24:45 [INFO] [NarrowtuxLib] Payment method was disabled. No longer accepting payments.
    2011-10-20 16:24:45 [INFO] [SpoutBackpack] Méthode de paiement désactivée.
    2011-10-20 16:24:45 [INFO] [CFBanner] Plugin has been disabled!
    2011-10-20 16:24:45 [INFO] EnderTP disabled.
    2011-10-20 16:24:46 [INFO] [ItemLogger] ItemLogger disabled
    2011-10-20 16:24:46 [INFO] [MCDocs] (Tazzernator/Andrew Tajsic) - v11 shutdown.
    2011-10-20 16:24:46 [INFO] [MinecraftViewer] v1.0d Plugin Disabled.
    2011-10-20 16:24:46 [INFO] MoneyDrop has shut down.
    2011-10-20 16:24:46 [INFO] [NarrowtuxLib] v0.8.11 by [narrowtux] disabled.
    2011-10-20 16:24:46 [INFO] [NoCheat] version [2.11a] is disabled.
    2011-10-20 16:24:46 [INFO] NoFloatingTrees 0.4.3: Disabled.
    2011-10-20 16:24:46 [INFO] [PermissionsEx] v1.15 disabled successfully.
    2011-10-20 16:24:46 [INFO] Essentials: Using Permissions 2 based permissions.
    2011-10-20 16:24:46 [INFO] WorldEdit: Using the Bukkit Permissions API.
    2011-10-20 16:24:46 [INFO] WorldGuard: Using the Bukkit Permissions API.
    2011-10-20 16:24:46 [INFO] == [RevverChat] ==
    2011-10-20 16:24:46 [INFO] == v1.0 ==
    2011-10-20 16:24:46 [INFO] == Disabled Successfully! ==
    2011-10-20 16:24:46 [INFO] SheepFeed version 1.4 is disabled.
    2011-10-20 16:24:46 [INFO] SpoutEssentials has been disabled. Bye bye!
    2011-10-20 16:24:46 [INFO] WorldGuard 5.3 disabled.
    2011-10-20 16:24:46 [INFO] [Modifyworld] Modifyworld disabled!
    2011-10-20 16:24:46 [INFO] Essentials: Using config based permissions. Enable superperms in config.
    2011-10-20 16:24:46 [INFO] WorldEdit: Using the Bukkit Permissions API.
    2011-10-20 16:24:46 [INFO] WorldGuard: Using the Bukkit Permissions API.
    2011-10-20 16:24:46 [INFO] Can't find key disableMessage for translation!
    2011-10-20 16:24:46 [INFO] [SortInventory] SortInventory version 1.4.1 is disabled!
    2011-10-20 16:24:46 [INFO] [ChestShop] version 3.24 shutting down!
    2011-10-20 16:24:46 [INFO] PW: CacheCleanup got interrupted
    2011-10-20 16:24:46 [INFO] PW: Just got disabled
    2011-10-20 16:24:46 [INFO] Thread 0 successfully joined.
    2011-10-20 16:24:46 [INFO] Thread 1 successfully joined.
    2011-10-20 16:24:46 [INFO] [properTime 1.9.0] signing off.
    2011-10-20 16:24:46 [INFO] [SpoutBackpack] Sauvegarde de tous les inventaires.
    2011-10-20 16:24:46 [INFO] [SpoutBackpack] Sauvegardes des inventaires !
    2011-10-20 16:24:46 [INFO] [SpoutBackpack] Est maintenant désactivé.
    2011-10-20 16:24:46 [INFO] WorldBorder version 1.4.4 shutting down
    2011-10-20 16:24:46 [INFO] [WorldBorder] [CONFIG] Border-checking timed task stopped.
    2011-10-20 16:24:46 [INFO] Saving chunks
    2011-10-20 16:24:50 [INFO] Starting minecraft server version Beta 1.8.1
    2011-10-20 16:24:50 [INFO] Loading properties
    2011-10-20 16:24:50 [INFO] Starting Minecraft server on *:25565
    2011-10-20 16:24:50 [INFO] This server is running Craftbukkit version git-Bukkit-0.0.0-1131-g86b7fa8-b1337jnks (MC: 1.8.1)
    2011-10-20 16:24:50 [INFO] [PermissionsEx] sql backend registered!
    2011-10-20 16:24:50 [INFO] [PermissionsEx] file backend registered!
    2011-10-20 16:24:50 [INFO] [PermissionsEx] PermissionEx plugin initialized.
    2011-10-20 16:24:50 [INFO] [PermissionsEx] p2compat backend registered!
    2011-10-20 16:24:50 [INFO] [PermissionsCompat] Compatibility Layer Initalized!
    2011-10-20 16:24:50 [INFO] [DirectBankX] Preferred method [null] not found, using first found.
    2011-10-20 16:24:50 [INFO] [DirectBankX] version 0.9 is enabled.
    2011-10-20 16:24:50 [INFO] MLog clients using java 1.4+ standard logging.
    2011-10-20 16:24:50 [INFO] [PermissionsEx] Initializing file backend
    2011-10-20 16:24:50 [INFO] NoFloatingTrees 0.4.3: Enabled.
    2011-10-20 16:24:51 [INFO] Spout 1.0.6.449 has been initialized
    2011-10-20 16:24:51 [INFO] Preparing level "Servergame"
    2011-10-20 16:24:51 [INFO] Default game type: 0
    2011-10-20 16:24:51 [INFO] Preparing start region for level 0 (Seed: 135174176)
    2011-10-20 16:24:51 [INFO] Preparing start region for level 1 (Seed: 5070363125758805235)
    2011-10-20 16:24:51 [INFO] BOSEconomy: Located Permissions 2.7.7.
    2011-10-20 16:24:51 [INFO] BOSEconomy v0.7.2 enabled.
    2011-10-20 16:24:51 [INFO] [CFBanner] Plugin has been enabled!
    2011-10-20 16:24:51 [INFO] [CFBanner] Permissions found. Using Permissions v2.7.7
    2011-10-20 16:24:51 [INFO] [CFBanner] 1.9.2 loaded!
    2011-10-20 16:24:51 [INFO] [BANK] succesfully loaded...
    2011-10-20 16:24:51 [INFO] [DirectBankX] Payment method found (BOSEconomy version: 0.7.0)
    2011-10-20 16:24:51 [INFO] EnderTP enabled.
    2011-10-20 16:24:51 [INFO] Using locale fr_FR
    2011-10-20 16:24:52 [INFO] Using locale fr_FR
    2011-10-20 16:24:52 [INFO] Essentials version 2.6.3 par Zenexer, ementalo, Aelux, Brettflan, KimKandor, snowleo, ceulemans, Xeology, KHobbits a été chargé
    2011-10-20 16:24:52 [INFO] Essentials: Using config based permissions. Enable superperms in config.
    2011-10-20 16:24:52 [INFO] [Essentials] Payment method found (BOSEconomy version: 0.7.0)
    2011-10-20 16:24:52 [INFO] EssentialsChat version 2.6.3 par essentials team a été chargé
    2011-10-20 16:24:52 [INFO] Initializing c3p0-0.9.1.2 [built 21-May-2007 15:04:56; debug? true; trace: 10]
    2011-10-20 16:24:52 [INFO] EssentialsProtect version 2.6.3 par essentials team a été chargé
    2011-10-20 16:24:52 [INFO] EssentialsSpawn version 2.6.3 par essentials team a été chargé
    2011-10-20 16:24:52 [INFO] [ItemLogger] ItemLogger v1.031 enabled
    2011-10-20 16:24:52 [INFO] [ItemLogger] ItemLogger config file found, loading config...
    2011-10-20 16:24:52 [INFO] [MCDocs] (Tazzernator/Andrew Tajsic) - v11 loaded.
    2011-10-20 16:24:52 [INFO] [MinecraftViewer] Query running on 0.0.0.0:25565
    2011-10-20 16:24:52 [INFO] [MinecraftViewer] v1.0d Plugin Enabled.
    2011-10-20 16:24:52 [INFO] MoneyDrop is up and running!
    2011-10-20 16:24:52 [INFO] [MoneyDrop] Economy found. Money pickup enabled.
    2011-10-20 16:24:52 [INFO] Version: 91
    2011-10-20 16:24:52 [INFO] [NarrowtuxLib] v0.8.11 by [narrowtux] enabled.
    2011-10-20 16:24:52 [INFO] [NarrowtuxLib] Payment method found (BOSEconomy version: 0.7.0)
    2011-10-20 16:24:52 [INFO] [NoCheat] This version is for CB #1240 and CB #1317. It may break at any time and for any other version.
    2011-10-20 16:24:52 [INFO] [NoCheat] version [2.11a] is enabled.
    2011-10-20 16:24:52 [INFO] [PermissionsEx] Superperms support enabled.
    2011-10-20 16:24:52 [INFO] [PermissionsEx] v1.15 enabled
    2011-10-20 16:24:52 [INFO] Essentials: Using PermissionsEx based permissions.
    2011-10-20 16:24:52 [INFO] == [RevverChat] ==
    2011-10-20 16:24:52 [INFO] == v1.0 ==
    2011-10-20 16:24:52 [INFO] == Is now Enabled! ==
    2011-10-20 16:24:52 [INFO] == [RevverChat] Using color 'yellow' for RevverAdmin ==
    2011-10-20 16:24:52 [INFO] == [RevverChat] Using channel name 'prive' for RevverAdmin ==
    2011-10-20 16:24:52 [INFO] == [RevverChat] Successfully Found Permissions! ==
    2011-10-20 16:24:52 [INFO] Sheepfeed: Permissions plugin detected.
    2011-10-20 16:24:52 [INFO] SheepFeed version 1.4 by ArmEagle is enabled!
    2011-10-20 16:24:52 [INFO] SpoutEssentials v3.7.1 is enabled!
    2011-10-20 16:24:52 [INFO] SpoutEssentials: WorldGuard Module enabled
    2011-10-20 16:24:52 [INFO] SpoutEssentials: MobDisguise module disabled
    2011-10-20 16:24:52 [INFO] Found and will use plugin Permissions v2.7.7
    2011-10-20 16:24:52 [INFO] [SpoutPlayers] by nil0bject version 1.9.1 enabled.
    2011-10-20 16:24:52 [INFO] [TotallyOrbSome] v1.1 final Enabled!
    2011-10-20 16:24:52 [INFO] WorldEdit 4.7 enabled.
    2011-10-20 16:24:52 [INFO] WorldEdit: PermissionsEx detected! Using PermissionsEx for permissions.
    2011-10-20 16:24:52 [INFO] WorldGuard: PermissionsEx detected! Using PermissionsEx for permissions.
    2011-10-20 16:24:52 [INFO] WorldGuard: (Servergame) Single session is enforced.
    2011-10-20 16:24:52 [INFO] WorldGuard: (Servergame) TNT ignition is PERMITTED.
    2011-10-20 16:24:52 [INFO] WorldGuard: (Servergame) Lighters are PERMITTED.
    2011-10-20 16:24:52 [INFO] WorldGuard: (Servergame) Lava fire is blocked.
    2011-10-20 16:24:52 [INFO] WorldGuard: (Servergame) Fire spread is UNRESTRICTED.
    2011-10-20 16:24:52 [INFO] WorldGuard: Loaded configuration for world 'Servergame"
    2011-10-20 16:24:52 [INFO] WorldGuard: (Servergame_nether) Single session is enforced.
    2011-10-20 16:24:52 [INFO] WorldGuard: (Servergame_nether) TNT ignition is PERMITTED.
    2011-10-20 16:24:52 [INFO] WorldGuard: (Servergame_nether) Lighters are PERMITTED.
    2011-10-20 16:24:52 [INFO] WorldGuard: (Servergame_nether) Lava fire is blocked.
    2011-10-20 16:24:52 [INFO] WorldGuard: (Servergame_nether) Fire spread is UNRESTRICTED.
    2011-10-20 16:24:52 [INFO] WorldGuard: Loaded configuration for world 'Servergame_nether"
    2011-10-20 16:24:52 [INFO] WorldGuard: 13 regions loaded for 'Servergame'
    2011-10-20 16:24:52 [INFO] WorldGuard: 2 regions loaded for 'Servergame_nether'
    2011-10-20 16:24:52 [INFO] WorldGuard 5.3 enabled.
    2011-10-20 16:24:52 [INFO] [Modifyworld] Modifyworld enabled!
    2011-10-20 16:24:52 [INFO] [PermissionsCompat] Compatibility layer enabled.
    2011-10-20 16:24:52 [INFO] WorldEdit: PermissionsEx detected! Using PermissionsEx for permissions.
    2011-10-20 16:24:52 [INFO] WorldGuard: PermissionsEx detected! Using PermissionsEx for permissions.
    2011-10-20 16:24:52 [INFO] [Showcase] Registered type [basic] (38 items loaded)
    2011-10-20 16:24:52 [INFO] [Showcase] Registered type [finite] (0 items loaded)
    2011-10-20 16:24:52 [INFO] [Showcase] Registered type [infinite] (0 items loaded)
    2011-10-20 16:24:52 [INFO] [Showcase] Registered type [exchange] (0 items loaded)
    2011-10-20 16:24:52 [INFO] [Showcase] Registered type [tutorial] (0 items loaded)
    2011-10-20 16:24:52 [INFO] [Showcase] version 0.7.7.11 has been enabled.
    2011-10-20 16:24:52 [INFO] [SortInventory] Permissions3/SuperpermBridge is detected. Permissions v2.7.7
    2011-10-20 16:24:52 [INFO] [SortInventory] PermissionsEx is detected.
    2011-10-20 16:24:52 [INFO] [SortInventory] OBS. More than one permission system detected. The test sequence is: PermissionsBukkit, Permissions/PermissionsBridges, PermissionsEx
    2011-10-20 16:24:52 [INFO] [SortInventory] Spout is detected.
    2011-10-20 16:24:52 [INFO] [SortInventory] SpoutBackpack is detected.
    2011-10-20 16:24:52 [WARNING] [SortInventory] SortInventory is Outdated.
    2011-10-20 16:24:52 [WARNING] [SortInventory] SortInventory should be replaced by BukkitInventoryTools
    2011-10-20 16:24:52 [INFO] [SortInventory] SortInventory version 1.4.1 is enabled!
    2011-10-20 16:24:52 [INFO] [ChestShop] Permissions version 2.7.7 loaded.
    2011-10-20 16:24:52 [INFO] [ChestShop] WorldGuard version 5.3 loaded.
    2011-10-20 16:24:52 [INFO] [ChestShop] version 3.24 initialized!
    2011-10-20 16:24:52 [INFO] [ChestShop] BOSEconomy 0.7.0 loaded.
    2011-10-20 16:24:52 [INFO] [Jail] Loaded 0 jail zones.
    2011-10-20 16:24:52 [INFO] [Jail] Loaded 0 prisoners.
    2011-10-20 16:24:52 [INFO] [Jail] Loaded 0 cells.
    2011-10-20 16:24:52 [INFO] [Jail] Jail v2.0.3 loaded!
    2011-10-20 16:24:52 [INFO] PC: Loading PluginControl Version 1.2.0
    2011-10-20 16:24:52 [INFO] PC: Using Nijikokun's Permission plugin (new detection system)
    2011-10-20 16:24:52 [INFO] Read level-name: Servergame
    2011-10-20 16:24:52 [INFO] PW: Starting initialization of PrivateWarp 1.6.0
    2011-10-20 16:24:52 [INFO] PW: Copyright: Wrecker Technologies
    2011-10-20 16:24:52 [INFO] PW: PrivateWarp 1.6.0 initialized
    2011-10-20 16:24:52 [INFO] PW: Just got enabled
    2011-10-20 16:24:52 [INFO] properTime reading from config at C:\Users\Bonobo\Desktop\minecraft\plugins\properTime\properTime.conf
    2011-10-20 16:24:52 [INFO] properTime 1.9.0 initialized
    2011-10-20 16:24:52 [INFO] [SpoutBackpack] PermissionsEx détecté.
    2011-10-20 16:24:52 [INFO] [SpoutBackpack] Jail détecté.
    2011-10-20 16:24:52 [INFO] [SpoutBackpack] Version 2.3.6 is now enabled.
    2011-10-20 16:24:52 [INFO] [SpoutBackpack] Inventaires chargés.
    2011-10-20 16:24:52 [INFO] [SpoutBackpack] Méthode de paiement détectée (BOSEconomy v0.7.0).
    2011-10-20 16:24:52 [INFO] WorldBorder version 1.4.4 loading
    2011-10-20 16:24:52 [INFO] [WorldBorder] [CONFIG] Using round border, knockback of 3.0 blocks, and timer delay of 5.
    2011-10-20 16:24:52 [INFO] [WorldBorder] [CONFIG] Border-checking timed task started.
    2011-10-20 16:24:52 [INFO] [WorldBorder] [CONFIG] World "Servergame" has border radius 1000 at X: -303,7 Z: 31,4
    2011-10-20 16:24:52 [INFO] [WorldBorder] [CONFIG] World "Servergame_nether" has border radius 500 at X: 36,1 Z: 4,0
    2011-10-20 16:24:52 [INFO] [WorldBorder] [CONFIG] Will use plugin for permissions: Permissions v2.7.7
    2011-10-20 16:24:52 [INFO] For reference, the main world's spawn location is at X: -305 Y: 64 Z: 30
    2011-10-20 16:24:53 [INFO] Server permissions file permissions.yml is empty, ignoring it
    2011-10-20 16:24:53 [INFO] Done (0,200s)! For help, type "help" or "?"
    2011-10-20 16:24:57 [INFO] nicquehen [/127.0.0.1:64748] logged in with entity id 153 at ([Servergame] -759.78125, 77.0, -319.3125)
    2011-10-20 16:24:58 [INFO] New max size: 484
    2011-10-20 16:24:58 [INFO] New max size: 784
    2011-10-20 16:24:58 [INFO] Reading data
    2011-10-20 16:24:58 [INFO] [Spout] Successfully authenticated nicquehen's Spoutcraft client. Running client version: 1.0.6.564
    2011-10-20 16:25:08 [INFO] [ChestShop] Couldn't generate statistics page!
    2011-10-20 16:25:09 [INFO] Vous utilisez PermissionsEx.
    2011-10-20 16:25:09 [INFO] Système économique détecté.
    2011-10-20 16:25:09 [INFO] Vos permissions vous autorisent à avoir 54 places dans votre Backpack.
    2011-10-20 16:25:09 [INFO] Votre fichier personel vous autorise à avoir 54 places dans votre Backpack.
    2011-10-20 16:25:09 [INFO] Vos permissions vous autorisent à améliorer jusqu'à avoir 54 places dans votre Backpack.
    J'adore ce plugin en esperant trouve une solution.

    Nicolas
     
  24. Offline

    NeatMonster

    I'm sorry but I don't have much time for each of my projects. School, etc. take me a lot of time. Now I want to focus on my server and on the SpaceBukkit project. Thanks for your comprehension.

    If any dev' want to take care of my plugin, just PM me.
     
  25. Offline

    Brentnauer

    Hopefully someone takes this over, there's a few bugs with not saving inventory and such.
     
  26. Offline

    NotYetRated

    I agree... I love this plugin and hope not to totally lose its functionality!
     
  27. Offline

    Brentnauer

    Does anyone know of an alternative inventory expansion plugin? Doesn't necessarily have to be SpoutBackpack.
     
  28. Offline

    NeatMonster

    There are still bugs in my last version?
     
  29. Offline

    Darcion

    we have massive probs with backpacks, there are many dupebugs in.

    i took a item out and put it in my inventory. i go throw a portal and back (differents worlds). now i got the item from backpack and inventory. i tried to use different nodes in my bukkitpermissions with :false but i have the backpack in this world active...

    and if i use the "sharing" option i dont get different backpacks, all world with this option has a empty backpack and it diddnt save the items. btw the dupe bug isnt gone with all options...
     
  30. Offline

    NeatMonster

    I'll try to fix issues, but you know I hates new Bukkit's configuration. I promise I'll do my best.
     
  31. Offline

    Brentnauer

    • Backpack inventory does not save between reboots and/or player logouts
    • The "no drop on death" permission does not work
    I'm on Bukkit 1337 running Spout 1.06 (or whatever the current version is).
     

Share This Page