[MECH/RPG] CraftGroup v0.3.1 - Prevent crafting of specific items and blocks [1000]

Discussion in 'Inactive/Unsupported Plugins' started by FrozenBrain, Jul 10, 2011.

  1. Offline

    FrozenBrain

    CraftGroup - Prevent crafting of specific items and blocks
    Version: v0.3.1
    CraftBukkit Build: 1000

    CraftGroup lets you assign so-called CraftGroups to the players of your server via Permissions. Those CraftGroups can be used to prevent crafting, smelting, using, placing or breaking of specific items and blocks. This is propably most useful for RPG servers.

    How to use:
    Show Spoiler

    Download the plugin and drop it in your plugins folder. After the first run, BukkitContrib will be downloaded (if it's not installed already) and a file called "config.yml" will be created inside the plugins/CraftGroup directory.

    You can now create new CraftGroups by simply adding a new node to this file.

    Example:
    Code:
    version: 13
    
    global-blacklist:
        break:
    # Don't break TNT
        - -TNT
        craft:
    # Don't craft orange wool
        - -WOOL:1
        use:
    # Don't use golden apples
        - -GOLDEN_APPLE
        place:
    Blaster:
        break:
        craft:
    # Even though the global-blacklist prevents everyone from crafting TNT,
    # we can whitelist it here again.
        - TNT
        use:
        place:
    Note: The 'use' rules are quite buggy. That's not my fault, CraftBukkit fails at this point. Maybe I'll find a workaround soon.

    As you can see, you can use either the name or the id of the item or block. If you want to prevent someone from crafting, placing, breaking or using something, put a "-" in front of the item (this blacklists the item). You can also whitelist an item by not putting a "-" there. This overwrites the blacklist rules.

    After setting up the CraftGroups, open up your Permissions configuration files and assign the CraftGroups to your groups or players by giving them the
    Code:
    craftgroup.group.GROUPNAME
    permission (replace GROUPNAME with the actual name of the CraftGroup).

    Remember that the CraftGroups and the "craftgroup.group.GROUPNAME" permission are case-sensitive!

    Permissions:
    PermissionNeeded to...
    craftgroup.addUse /cg add
    craftgroup.removeUse /cg remove
    craftgroup.listUse /cg list
    craftgroup.reloadUse /cg reload
    craftgroup.bypassBypass all restrictions
    craftgroup.group.GROUPNAMEAssign a CraftGroup (replace GROUPNAME with the name of the CraftGroup)


    Commands:
    CommandDescriptionUsage
    /cg addAdd an item or block to a group/cg add <list> <allow/deny> <type> <item>
    /cg remove <list> <allow/deny> <type> <item>Remove an item or block from a group/cg remove <list> <item>
    /cg listShow all lists or items in a group/cg list [list ] [type/*] [page]
    /cg reloadReload the configuration file/cg reload

    You can also use /craftgroup instead of /cg.

    Features:
    • Prevent crafting, smelting, using, placing or breaking of items and blocks
    • Assign CraftGroups to players and groups via Permissions
    • Multi-World (not with Permissions 2)
    • Ingame-Editing of CraftGroups
    • bypass-permission for Admins
    • Global Black-/Whitelist
    • Support for data values
    • Support for ItemCraft

    Download CraftGroup-dev (.jar; Minecraft 1.8; Spout)
    Download CraftGroup v0.3.1 (.jar)
    Source on GitHub
    [​IMG]

    Changelog:
    Version 0.3.1
    • Fixed 2 NPEs
    Version 0.3.0
    • Support for data values
    • Support for ItemCraft (requires testing)
    Show Spoiler
    Version 0.2.2
    • Fixed a problem with the different permission types
    Version 0.2.1
    • Fixed global-blacklist
    Version 0.2.0
    • Added support for permissions 2 and groupmanager (untested)
    • You can now prevent people from placing, destroying and using items/blocks
    Version 0.1.2
    • Forgot that HashMaps are case-sensitive
    Version 0.1.1
    • Never try casting an integer to a string!
    Version 0.1
    • Initial release
     
    Nomanoclass likes this.
  2. Offline

    Williamsson

    Since this plugin's sadly isn't updated anymore, it seems, my fellow co-administrators and I have decided to switch to BanRecipe. It's not as good, but at least it is up to date and working.
     
  3. Offline

    MarekZet

    Code:
    version: 13
    global-blacklist:
        break:
        - -MOSSY_COBBLESTONE
        - -CROPS
        - -CACTUS
        - -SUGAR_CANE_BLOCK
        - -PUMPKIN
        - -SEEDS
        craft:
        - -STONE
        - -GRASS
        - -DIRT
        - -COBBLESTONE
        - -WOOD
        - -SAPLING
        - -BEDROCK
        - -WATER
        - -STATIONARY_WATER
        - -LAVA
        - -STATIONARY_LAVA
        - -SAND
        - -GRAVEL
        - -GOLD_ORE
        - -IRON_ORE
        - -COAL_ORE
        - -LOG
        - -LEAVES
        - -SPONGE
        - -GLASS
        - -LAPIS_ORE
        - -LAPIS_BLOCK
        - -DISPENSER
        - -SANDSTONE
        - -NOTE_BLOCK
        - -BED_BLOCK
        - -POWERED_RAIL
        - -DETECTOR_RAIL
        - -PISTON_STICKY_BASE
        - -WEB
        - -LONG_GRASS
        - -DEAD_BUSH
        - -PISTON_BASE
        - -PISTON_EXTENSION
        - -WOOL
        - -PISTON_MOVING_PIECE
        - -YELLOW_FLOWER
        - -RED_ROSE
        - -BROWN_MUSHROOM
        - -RED_MUSHROOM
        - -GOLD_BLOCK
        - -IRON_BLOCK
        - -DOUBLE_STEP
        - -STEP
        - -BRICK
        - -TNT
        - -BOOKSHELF
        - -MOSSY_COBBLESTONE
        - -OBSIDIAN
        - -TORCH
        - -FIRE
        - -MOB_SPAWNER
        - -WOOD_STAIRS
        - -CHEST
        - -REDSTONE_WIRE
        - -DIAMOND_ORE
        - -DIAMOND_BLOCK
        - -WORKBENCH
        - -CROPS
        - -SOIL
        - -FURNACE
        - -BURNING_FURNACE
        - -SIGN_POST
        - -WOODEN_DOOR
        - -LADDER
        - -RAILS
        - -COBBLESTONE_STAIRS
        - -WALL_SIGN
        - -LEVER
        - -STONE_PLATE
        - -IRON_DOOR_BLOCK
        - -WOOD_PLATE
        - -REDSTONE_ORE
        - -GLOWING_REDSTONE_ORE
        - -REDSTONE_TORCH_OFF
        - -REDSTONE_TORCH_ON
        - -STONE_BUTTON
        - -SNOW
        - -ICE
        - -SNOW_BLOCK
        - -CACTUS
        - -CLAY
        - -SUGAR_CANE_BLOCK
        - -JUKEBOX
        - -FENCE
        - -PUMPKIN
        - -NETHERRACK
        - -SOUL_SAND
        - -GLOWSTONE
        - -PORTAL
        - -JACK_O_LANTERN
        - -CAKE_BLOCK
        - -DIODE_BLOCK_OFF
        - -DIODE_BLOCK_ON
        - -LOCKED_CHEST
        - -TRAP_DOOR
        - -IRON_SPADE
        - -IRON_PICKAXE
        - -IRON_AXE
        - -FLINT_AND_STEEL
        - -APPLE
        - -BOW
        - -ARROW
        - -DIAMOND
        - -IRON_INGOT
        - -GOLD_INGOT
        - -IRON_SWORD
        - -WOOD_SWORD
        - -WOOD_SPADE
        - -WOOD_PICKAXE
        - -WOOD_AXE
        - -STONE_SWORD
        - -STONE_SPADE
        - -STONE_PICKAXE
        - -STONE_AXE
        - -DIAMOND_SWORD
        - -DIAMOND_SPADE
        - -DIAMOND_PICKAXE
        - -DIAMOND_AXE
        - -STICK
        - -BOWL
        - -MUSHROOM_SOUP
        - -GOLD_SWORD
        - -GOLD_SPADE
        - -GOLD_PICKAXE
        - -GOLD_AXE
        - -STRING
        - -FEATHER
        - -SULPHUR
        - -WOOD_HOE
        - -STONE_HOE
        - -IRON_HOE
        - -DIAMOND_HOE
        - -GOLD_HOE
        - -SEEDS
        - -WHEAT
        - -BREAD
        - -LEATHER_HELMET
        - -LEATHER_CHESTPLATE
        - -LEATHER_LEGGINGS
        - -LEATHER_BOOTS
        - -CHAINMAIL_HELMET
        - -CHAINMAIL_CHESTPLATE
        - -CHAINMAIL_LEGGINGS
        - -CHAINMAIL_BOOTS
        - -IRON_HELMET
        - -IRON_CHESTPLATE
        - -IRON_LEGGINGS
        - -IRON_BOOTS
        - -DIAMOND_HELMET
        - -DIAMOND_CHESTPLATE
        - -DIAMOND_LEGGINGS
        - -DIAMOND_BOOTS
        - -GOLD_HELMET
        - -GOLD_CHESTPLATE
        - -GOLD_LEGGINGS
        - -GOLD_BOOTS
        - -FLINT
        - -PORK
        - -GRILLED_PORK
        - -PAINTING
        - -GOLDEN_APPLE
        - -BOAT
        - -LEATHER
        - -MILK_BUCKET
        - -CLAY_BRICK
        - -CLAY_BALL
        - -SUGAR_CANE
        - -PAPER
        - -BOOK
        - -SLIME_BALL
        - -STORAGE_MINECART
        - -POWERED_MINECART
        - -EGG
        - -COMPASS
        - -FISHING_ROD
        - -WATCH
        - -GLOWSTONE_DUST
        - -RAW_FISH
        - -COOKED_FISH
        - -INK_SACK
        - -BONE
        - -SUGAR
        - -CAKE
        - -BED
        - -DIODE
        - -COOKIE
        - -MAP
        - -SHEARS
        - -GOLD_RECORD
        - -GREEN_RECORD
        use:
        - -IRON_PICKAXE
        - -IRON_AXE
        - -BOW
        - -ARROW
        - -IRON_SWORD
        - -DIAMOND_SWORD
        - -DIAMOND_AXE
        - -GOLD_SWORD
        - -GOLD_PICKAXE
        - -GOLD_AXE
        - -WOOD_HOE
        - -STONE_HOE
        - -IRON_HOE
        - -DIAMOND_HOE
        - -GOLD_HOE
        - -MINECART
        - -FISHING_ROD
        - -SHEARS
        - -BOAT
        - -MILK_BUCKET
        - -IRON_HELMET
        - -IRON_CHESTPLATE
        - -IRON_LEGGINGS
        - -IRON_BOOTS
        - -DIAMOND_HELMET
        - -DIAMOND_CHESTPLATE
        - -DIAMOND_LEGGINGS
        - -DIAMOND_BOOTS
        - -GOLD_HELMET
        - -GOLD_CHESTPLATE
        - -GOLD_LEGGINGS
        - -GOLD_BOOTS
        - -BONE
        place:
        - -SEEDS
        - -BRICK
        - -DOUBLE_STEP
        - -STEP
        - -GOLD_BLOCK
        - -IRON_BLOCK
        - -LAPIS_BLOCK
        - -DIAMOND_BLOCK
        - -MOSSY_COBBLESTONE
        - -SAPLING
    Gornik:
        break:
        - MOSSY_COBBLESTONE
        craft:
        - WOOD_SWORD
        - WOOD_SPADE
        - WOOD_PICKAXE
        - STONE_SWORD
        - STONE_SPADE
        - STONE_PICKAXE
        - LEATHER_HELMET
        - LEATHER_CHESTPLATE
        - LEATHER_LEGGINGS
        - LEATHER_BOOTS
        - WOOD_DOOR
        - IRON_DOOR
        - SIGN
        - WOOD
        - TORCH
        - CHEST
        - WORKBENCH
        - FURNACE
        - TRAP_DOOR
        - FLINT_AND_STEEL
        - MAP
        - PAPER
        - IRON_PICKAXE
        - DIAMOND_PICKAXE
        - GOLD_PICKAXE
        use:
        - IRON_PICKAXE
        - DIAMOND_PICKAXE
        - GOLD_PICKAXE
        - MINECART
        place:
    Drwal:
        break:
        craft:
        - WOOD_SWORD
        - WOOD_SPADE
        - WOOD_PICKAXE
        - WOOD_AXE
        - STONE_SWORD
        - STONE_SPADE
        - STONE_PICKAXE
        - STONE_AXE
        - LEATHER_HELMET
        - LEATHER_CHESTPLATE
        - LEATHER_LEGGINGS
        - LEATHER_BOOTS
        - WOOD_DOOR
        - IRON_DOOR
        - SIGN
        - WOOD
        - TORCH
        - CHEST
        - WORKBENCH
        - FURNACE
        - TRAP_DOOR
        - FLINT_AND_STEEL
        - MAP
        - PAPER
        - IRON_AXE
        - DIAMOND_AXE
        - GOLD_AXE
        use:
        - IRON_AXE
        - DIAMOND_AXE
        - GOLD_AXE
        place:
        - SAPLING
    Farmer:
        break:
        - CROPS
        - CACTUS
        - SUGAR_CANE_BLOCK
        - PUMPKIN
        - SEEDS
        craft:
        - WOOD_SWORD
        - WOOD_SPADE
        - WOOD_PICKAXE
        - STONE_SWORD
        - STONE_SPADE
        - STONE_PICKAXE
        - LEATHER_HELMET
        - LEATHER_CHESTPLATE
        - LEATHER_LEGGINGS
        - LEATHER_BOOTS
        - WOOD_DOOR
        - IRON_DOOR
        - SIGN
        - WOOD
        - TORCH
        - CHEST
        - WORKBENCH
        - FURNACE
        - TRAP_DOOR
        - FLINT_AND_STEEL
        - MAP
        - PAPER
        - WOOD_HOE
        - STONE_HOE
        - IRON_HOE
        - DIAMOND_HOE
        - GOLD_HOE
        use:
        - MILK_BUCKET
        - WOOD_HOE
        - STONE_HOE
        - IRON_HOE
        - DIAMOND_HOE
        - GOLD_HOE
        place:
        - SEEDS
    Mysliwy:
        break:
        craft:
        - WOOD_SWORD
        - WOOD_SPADE
        - WOOD_PICKAXE
        - STONE_SWORD
        - STONE_SPADE
        - STONE_PICKAXE
        - LEATHER_HELMET
        - LEATHER_CHESTPLATE
        - LEATHER_LEGGINGS
        - LEATHER_BOOTS
        - WOOD_DOOR
        - IRON_DOOR
        - SIGN
        - WOOD
        - TORCH
        - CHEST
        - WORKBENCH
        - FURNACE
        - TRAP_DOOR
        - FLINT_AND_STEEL
        - MAP
        - PAPER
        - SHEARS
        - BOW
        - ARROW
        use:
        - BOW
        - ARROW
        - BONE
        - SHEARS
        place:
    Budowniczy:
        break:
        craft:
        - WOOD_SWORD
        - WOOD_SPADE
        - WOOD_PICKAXE
        - STONE_SWORD
        - STONE_SPADE
        - STONE_PICKAXE
        - LEATHER_HELMET
        - LEATHER_CHESTPLATE
        - LEATHER_LEGGINGS
        - LEATHER_BOOTS
        - WOOD_DOOR
        - IRON_DOOR
        - SIGN
        - WOOD
        - TORCH
        - CHEST
        - WORKBENCH
        - FURNACE
        - TRAP_DOOR
        - FLINT_AND_STEEL
        - MAP
        - PAPER
        use:
        place:
        - BRICK
        - DOUBLE_STEP
        - STEP
        - GOLD_BLOCK
        - IRON_BLOCK
        - LAPIS_BLOCK
        - DIAMOND_BLOCK
        - MOSSY_COBBLESTONE
    Straznik:
        break:
        craft:
        - WOOD_SWORD
        - WOOD_SPADE
        - WOOD_PICKAXE
        - STONE_SWORD
        - STONE_SPADE
        - STONE_PICKAXE
        - LEATHER_HELMET
        - LEATHER_CHESTPLATE
        - LEATHER_LEGGINGS
        - LEATHER_BOOTS
        - WOOD_DOOR
        - IRON_DOOR
        - SIGN
        - WOOD
        - TORCH
        - CHEST
        - WORKBENCH
        - FURNACE
        - TRAP_DOOR
        - FLINT_AND_STEEL
        - MAP
        - PAPER
        - IRON_SWORD
        - DIAMOND_SWORD
        - GOLD_SWORD
        - IRON_HELMET
        - IRON_CHESTPLATE
        - IRON_LEGGINGS
        - IRON_BOOTS
        - DIAMOND_HELMET
        - DIAMOND_CHESTPLATE
        - DIAMOND_LEGGINGS
        - DIAMOND_BOOTS
        - GOLD_HELMET
        - GOLD_CHESTPLATE
        - GOLD_LEGGINGS
        - GOLD_BOOTS
        use:
        - IRON_SWORD
        - DIAMOND_SWORD
        - GOLD_SWORD
        - IRON_HELMET
        - IRON_CHESTPLATE
        - IRON_LEGGINGS
        - IRON_BOOTS
        - DIAMOND_HELMET
        - DIAMOND_CHESTPLATE
        - DIAMOND_LEGGINGS
        - DIAMOND_BOOTS
        - GOLD_HELMET
        - GOLD_CHESTPLATE
        - GOLD_LEGGINGS
        - GOLD_BOOTS
        place:
    Kucharz:
        break:
        craft:
        - WOOD_SWORD
        - WOOD_SPADE
        - WOOD_PICKAXE
        - STONE_SWORD
        - STONE_SPADE
        - STONE_PICKAXE
        - LEATHER_HELMET
        - LEATHER_CHESTPLATE
        - LEATHER_LEGGINGS
        - LEATHER_BOOTS
        - WOOD_DOOR
        - IRON_DOOR
        - SIGN
        - WOOD
        - TORCH
        - CHEST
        - WORKBENCH
        - FURNACE
        - TRAP_DOOR
        - FLINT_AND_STEEL
        - MAP
        - PAPER
        - BREAD
        - CAKE
        - COOKIE
        - SUGAR
        - MUSHROOM_SOUP
        - GRILLED_PORK
        - COOKED_FISH
        use:
        place:
    Wedkarz:
        break:
        craft:
        - WOOD_SWORD
        - WOOD_SPADE
        - WOOD_PICKAXE
        - STONE_SWORD
        - STONE_SPADE
        - STONE_PICKAXE
        - LEATHER_HELMET
        - LEATHER_CHESTPLATE
        - LEATHER_LEGGINGS
        - LEATHER_BOOTS
        - WOOD_DOOR
        - IRON_DOOR
        - SIGN
        - WOOD
        - TORCH
        - CHEST
        - WORKBENCH
        - FURNACE
        - TRAP_DOOR
        - FLINT_AND_STEEL
        - MAP
        - PAPER
        - FISHING_ROD
        - BOAT
        use:
        - FISHING_ROD
        - BOAT
        place:
    Inzynier:
        break:
        craft:
        - WOOD_SWORD
        - WOOD_SPADE
        - WOOD_PICKAXE
        - STONE_SWORD
        - STONE_SPADE
        - STONE_PICKAXE
        - LEATHER_HELMET
        - LEATHER_CHESTPLATE
        - LEATHER_LEGGINGS
        - LEATHER_BOOTS
        - WOOD_DOOR
        - IRON_DOOR
        - SIGN
        - WOOD
        - TORCH
        - CHEST
        - WORKBENCH
        - FURNACE
        - TRAP_DOOR
        - FLINT_AND_STEEL
        - MAP
        - PAPER
        - PISTON_STICKY_BASE
        - PISTON_BASE
        - POWERED_RAIL
        - DETECTOR_RAIL
        - DIODE
        - RAILS
        - MINECART
        - STORAGE_MINECART
        - POWERED_MINECART
        - COMPASS
        - WATCH
        - NOTE_BLOCK
        - DISPENSER
        use:
        - DIODE
        place:
    Rzemieslnik:
        break:
        craft:
        - WOOD_SWORD
        - WOOD_SPADE
        - WOOD_PICKAXE
        - STONE_SWORD
        - STONE_SPADE
        - STONE_PICKAXE
        - LEATHER_HELMET
        - LEATHER_CHESTPLATE
        - LEATHER_LEGGINGS
        - LEATHER_BOOTS
        - WOOD_DOOR
        - IRON_DOOR
        - SIGN
        - WOOD
        - TORCH
        - CHEST
        - WORKBENCH
        - FURNACE
        - TRAP_DOOR
        - FLINT_AND_STEEL
        - MAP
        - PAPER
        - PAINTING
        - BUCKET
        - LADDER
        - COBBLESTONE_STAIRS
        - BED
        - WOOD_STAIRS
        - FENCE
        - JUKEBOX
        - BOOKSHELF
        use:
        place:
    My configuration file. After uploading the plugin only admin can put the blocks to destroy and crafting. The rest can not do anything. My permission:
    - 'craftgroup.group.Drwal'
    (Drwal is my group, i'm from Poland.)

    A, and what is BukkitContrib?

    What did I do wrong in general?
     
  4. Offline

    Flenix

    @FrozenBrain- sadly I'm on the verge of switching too. Its always the best plugins that lose support... even after we as players spend hours on the configs for them too :(

    OK, I'm moving to this:
    http://forums.bukkit.org/threads/ad...-based-crafting-spout-1060.32204/#post-606465

    Still not quite as good, but "BanRecipe" seems totally unrelated to Craftgroup, its a "all or none" type of plugin, whereas Incraftible is the same as CraftGroup but without the use/place, which there are other plugins for
     
  5. @Flenix
    Which plugin can i use for place/break?
     
  6. Offline

    Iliath

    Hello FrozenBrain,
    maybe you can help me. may you post a tutorial or a how to install that everybody can understand? your plugin sounds good but it doesn't work at my server. need quick help.
    thank you.

    EDIT: I use permissions v.3 and world edit.
     
  7. Offline

    Flenix

    Don't know the exact name but I know there is one. I was only preventing farmables (reeds, wheat etc) so I just use LevelCraft for it now, but I did see one somewhere that lets you block more, and I think incraftible will have it fairly soon
     
  8. Offline

    Williamsson

    What, no? :p
    BanRecipe allows me to give a specific group a permission node that prevents them from crafting that item, haven't had the time to try it out yet, but that's how it works anyhow :)


    Incraftable looks fine though, but we're holding on to permissions 3 as long as possible :)
     
  9. Offline

    MarekZet

    And what does BukkitContrib? And whether Craftgroup working properly at all? Because I can not: (
     
  10. Offline

    Williamsson

    BukkitContrib basically extends bukkit, providing plugin developers with even more possibilities.
    I belive that CraftGroup uses bukkitcontrib for invenotry listening, but I am unsure however.

    I belive that what you are asking second is something about craftgroup not working, and the answer is:
    No. Craftgroup does not work together with the latest craftbukkit builds, eg 1000 or 1060, if you are using Spout (the new version of bukkitcontrib).
    Using craftbukkit 1000 and bukkitcontrib it does however work, and I am unsure of how bukkitcontrib works with 1060, or even craftgroup.

    For now I guess we can summarise this as: CraftGroup is not working.
    Everyone is encouraged to prove me wrong.
     
  11. No, you're true.
    It doesn't work correctly since update.
    And the missing support and lack of informations for more than a week now is bad :/
    Really nice plugin, but without updates..
     
  12. Offline

    MarekZet

    And what? We already know what is causing the error and when this will be fixed? I'm sorry that so many ask, but this plugin is essential for me.
     
  13. Offline

    Flenix

    There is sadly no such thing as a long-lasting item blacklist plugin. They always die after a month or two...

    Anyway, Incraftible does the actual crafting blocks, and from what I've seen you can actually use PEX for the block place/break @Terra-Network.org . There are plenty of plugins to block the use of weapons and armour too.
    Shame we lost an all in one solution though =/
     
  14. @Flenix
    Yeah i found the block-features in PEX, get still some problems, but it's very nice!
    Incraftible i will use for recipes, but i hope they will last for a longer time.
     
  15. Offline

    Flenix


    could you get Incrftible working with PEX? It doesn't work for me and noone is replying on either of those threads...
     
  16. @Flenix
    It works fine, just Furnace-Recipes don't work yet :(
    And you have to put negative permissions in front of positive!
    Code:
            - -incraftible.craft.wool
            - incraftible.craft.wood
    I hate it ... why is there no working plugin for recipes ... Maybe Levelcraft will work over his Permission-Nodes, then i don't need it anymore.
     
  17. Offline

    Flenix


    So wait, anything they can't craft has to have a negated node?

    This is gonna take tiiiime... :(
     
  18. No, you can just say - -incraftible.craft.* and then allow it.
    I just wanted to demonstrate the order of the nodes.
     
  19. Offline

    Flenix


    That doesn't work for our system. I made an annoying workaround but basically what I wanted is by default noone can craft, then if you add a group they can craft certain items (ie, jobs.)
    I put that negated node in our default group and normal nodes in the other groups, didn't work. Also the negated node with * didn't work on the other groups, I had to put each item negated except the ones they could use...

    I have a roughly working system now, but its a little annoying -_-
     
  20. Offline

    sbeex

    great ! Could you update it for cb 1060 please ?
     
  21. Offline

    MarekZet

    Is the 1.8 craftgroup will be repaired? Please ...
     
  22. Offline

    Shereis

    I have made CraftGroup compatible with bukkit 1060 !
    Enjoy !
    http://dl.dropbox.com/u/41205606/CraftGroup(shereis)_B1060.jar



    ChangeLog:
    No more compatible with permission3 (sorry... i don't have choice)
    But compatible with PermissionBukkit !
    I will try to make it compatible with 1.8 too !
     
  23. Offline

    OLIX

    I want to use it with Itemcraft, but where can I have the item's names? Because you said that we can't use ID in config file and when I make a test, in the console, it says me that the itemcraft's "ID" dosen't exist. It also remove line in the config file.
     
  24. Offline

    Shereis

    I'm not the dev of this plugin, I just keep it updated , but i think it's not compatible with itemCraft because Craftgroup need Spout... and Spout is actually not compatible with ItemCraft ...
     
  25. Offline

    OLIX

    Bug it says
    "Version 0.3.0
    - Support for ItemCraft (requires testing)"
     
  26. Offline

    Shereis

    it was when CraftGroup used BukkitContrib instead of Spout... Anyway i'm looking for a solution to get CraftGroup works without Spout to get it compatible with ItemCraft, but actually I failed ...
     
  27. Offline

    FrozenBrain

    I'm not going to let this die. Update coming soon if everything works as expected.
     
  28. Offline

    Shereis

    nice ! I'm waiting for it !
     
  29. Offline

    Pedroboy16

    Hello,

    I'm a french player, and i use your plugin. Thank you, it's a very good job !
    But i wonder if it's possible to obstructing, someone to equim him with an armor ?
     
  30. Offline

    IronPython

    is there a way to set it were you can craft an item but you have a chance that it will fail? trying to see if i can use that for my server but i dont want to stop people completely from crafting items i just want it so some "jobs" have a 100% chance of crafting items were other items for that job are less likely hoping that will spur the want to sell items in shops
     
  31. Offline

    Jakeob22

    FrozenBrain. I REALLY hope this gets updated soon. I have people waiting for my server to go up, and it can't go up without this plugin! :(
     

Share This Page