[ADMN] GiveTo v0.8 - Give Items / Kits to Others or Self, Permissions/Economy - /gto | /gme [1597]

Discussion in 'Inactive/Unsupported Plugins' started by ltguide, Mar 29, 2011.

  1. Offline

    ltguide

    GiveTo - Give Items (& Kits) to Others or Self, Permissions/Economy Support
    Version: v0.8
    CraftBukkit: 1000, 1060, 1185, 1240, 1337

    GiveTo is an easy way to give items to other players or yourself. Using Permissions or EssentialsGroupManager (w/ EssentialsGroupBridge) allows fine administrative control. GiveTo supports iConomy 4/5/6, BOSEconomy 7, MultiCurrency, and Essentials Economy via Register.

    You can give an item by ID or NAME. If no item matches directly, GiveTo attempts to search for a matching item. If there is more than one result, you are presented a list of matches.

    You can also specify an amount to give. Each item can have its own default and max amounts. Or GiveTo will use the global amounts configured.

    Features:
    • Item ID or Name with searching & results
    • Global/Item-specific default and max amounts
    • Global/Item-specific costs
    • Global/Item-specific delays (cooldown)
    • Quick self-give command
    • Items can have multiple aliases and also act as a kit
    • Customizable messages
    • Configurable command names (with plugin.yml change)
    • Permissions Support (else OPs): command use, reload, specific items/kits, delay/cost exemptions
    Commands:

    GiveTo adds two commands: /giveto (/gto /give) and /giveme (/gme). Both accept "reload" as the first argument to trigger a reload of the config.yml. /gto has full functionality from the console.
    • /gto <player> <item> [count]
    • /gme <item> [count]
    The player can be a player name or "me." As long as there is only one match, you can enter part of a player name. Entering /gto ltg ... will give items to "ltguide."


    The item can be an ID number or text that includes spaces or * as a wildcard. For example, assume you have two items: cobblestone and cobblestone stairs. Entering /gme co st 3 will display the two items. However, /gme co sta 3 will give you 3 cobblestone stairs. You could also use c a, but it actually matching would depend on what other items you have added.

    You can also specify a "durability" that will override the one set in config. For example, /gme sapling:1 will give you a Spruce Sapling. This is useful for Maps since there are too many to conveniently list in the config.

    If you want to change the commands, then you need to change them in plugin.yml inside the .jar. (7-zip: open jar, right-click plugin.yml, "Edit")

    Configuration
    Show Spoiler
    Code:
    count:
        max: 512
        def: 64
    delay: 0
    cost: 0
    updateinventory: ['someclientmoduser','anothersuchuser']
    messages:
        arglength: '&5Syntax: &f%s'
        permission: '&cYou do not have permission.'
    items:
        stone:
            alias: rock
            id: '1'
        kit:
            def: 1
            max: 1
            permission: beginnerset
            delay: 600
            cost: 5
            id:
            - '276'
            - '277'
            - '278'
            - '279'
            - '259'
            - '288'
    
    That is a sample configuration. The full config.yml will be created in the plugins/GiveTo folder when you start the server. You can also download the full config.yml below. YML files requires spaces instead of tabs and the level of indention matters.

    Count:
    If no amount is specified to /gto or /gme then the "def" value is used. The "max" value is the maximum amount that can be given per item.

    Delay:
    If no delay (cooldown) is specified in the item, then the global delay is used. The delay on a specific item can be less than the global.

    Cost:
    If a cost is specified in the config, then Register.jar will be created in the lib/ folder when you start the server. You will need to reload/restart the server or no money will be deducted from a player's account. The cost on a specific item can be less than the global.

    Update Inventory:
    Client mods for inventory (TooManyItems) require updateInventory() to visually update. However, this API method is deprecated so it shouldn't be used because a future update may remove it. Using this call resends the entire inventory to the player, so it requires more bandwidth from the server. By default the GiveTo plugin will not use it, but it can be enabled for certain users or globally with '*' if a lot of users request it.

    Messages:
    You can use Color Codes to control the colors in messages. You can flip the order of replacements by using %2$s and %1$s instead of %s. You don't have to use every replacement either, i.e. not showing balance.

    Items:
    item name - can contain spaces, i.e. glowstone block
    • id - required - ID as string: '1' or ID as string list: ['276','277'] (or in long form; see above config); for durability values use a colon: '35:4'
    • alias - optional - another common name, i.e. netherstone for netherrack (can also be a list, see 'id' above)
    • def - optional - default amount
    • max - optional - maximum amount
    • delay - optional - delay seconds before giving item again(cooldown)
    • cost - optional - money amount
    • permission - optional - if specified, the user needs to have giveto.item.PERMISSION to give
    Permissions:
    • giveto.others - /gto
    • giveto.self - /gme
    • giveto.reload - /g* reload
    • giveto.item.PERMISSION - required if you set an item specific permission
    • giveto.exempt.delay - exempt from delay period
    • giveto.exempt.cost - exempt from cost (all items FREE)
    You can assign the same permission to multiple items (i.e., permission: builder) then assign a user or group 'giveto.item.builder' It's probably a good idea to add a permission to lava, bedrock, etc.

    If any Permissions-like plugins are not available then Bukkit Permissions (SuperPerms) is used which, by default, will grant all access to OPs only.


    Download GiveTo Plugin (Static)
    Download GiveTo Plugin (version in filename)
    View Full Items List
    Source Code

    Changelog:
    Version 0.8
    • added new items
    • updated Register support (no longer needed in /lib)
    • uses Bukkit Permissions (SuperPerms) if no Permissions-like plugin
    Version 0.7
    • added configurable updateInventory() for client mod fix
    • updated Register support (iConomy 6, MultiCurrency, BOSE7)
    • fix cost message showing previous balance
    Version 0.62
    • add new items
    Version 0.61
    • remove need for utf-8 encoded config.yml (now uses & for color instead of unicode)
    • updated economy support
    • fix default durability (fixes unable to craft with some spawned items)
    • fix name lookup with specified durability (yellow wool:5 is really Light Green Wool)
    Show Spoiler
    Version 0.6
    • customizable messages
    Version 0.5
    • able to specify custom durability on item (map:2)
    • economy support (cost)
    • delay periods/cooldown (delay)
    • permissions for cost/delay exemptions
    • multiple aliases per item
    Version 0.4
    • properly use command aliases in plugin.yml
    • remove unnecessary if from onCommand
    • override /give
    • inventory full message
    Version 0.3
    • No longer requires target as exact player name, will search
    Version 0.2
    • Displays loaded items onEnable and reload
    • Minor cleanup from pre-release
    Version 0.1
    • Initial release
     
    ElectrON and AS1LV3RN1NJA like this.
  2. Offline

    ltguide

    Yeah, you can get it from the PermissionsBukkit page. It's used for plugins that haven't updated to Super Perms. I'm at work now or I would update GiveTo.
     
  3. Offline

    ArtooHD


    So all I'll have to do is add "superpermbridge." to all the GiveTo things? Im not going to open my server until sometime tomorrow so ive got time.

    Okay.. Just a tiny update, I got it to work with superpermbridge but now for some reason the "Admin", "Guest", "Member" tags I had before the name disappeared.. Now all there is is [] ArtooHD .. Is this normal?

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

    ltguide

    Do you mean the label in front of your in chat? If so, I would suspect your chat plugin uses two different config settings. One for Super Perms and one for the old Permissions plugins.
     
  5. Offline

    darkwarriors

    support for PEX or superperms plugins?
     
    Bigun likes this.
  6. Offline

    ArtooHD

    Yeah, the labels disappeared when I added the superpermbridge.whatever to all the giveto permissions.

    Now I just get "You don't have permissions", im OP and ive added the permissions to all of the groups.
     
  7. Offline

    ltguide

    You still use it as just 'giveto.self: true'

    You only need superpermbridge.whatever if you are using wildcards.

    I'm gonna update later today.
     
  8. Offline

    ArtooHD

    Yes, it worked yesterday for a split second but now I cant get it to work.
     
  9. Offline

    ltguide

    Version 0.8
    • added new items
    • updated Register support (no longer needed in /lib)
    • uses Bukkit Permissions (SuperPerms) if no Permissions-like plugin

    The config.yml that is automatically created contains the new items for 1.8 as well as 1.9. Be aware that giving items from 1.9 before the client is updated will crash it.

    You can see the changes I made to config.yml here. It's hard to copy off that page so if you are manually changing your config file, try from here.
     
  10. Offline

    ALLix

    cool plugin. One question, i need "war" kit - 1-276, 1-261, 64-262 - ONLY NEED KIT

    how to make?

    Code:
        kitkill:
            def: 1
            max: 1
            permission: all
            delay: 0
            id:
            - '276'
            - '261'
            - '262' - need 64 arrow
    thx!
     
  11. Offline

    ltguide

    I'll have to make some changes so that you can do that.
     
  12. Offline

    ALLix

    Thank you so much, I'll wait, good luck!
     
  13. Offline

    Bigun

    --^

    This, can you add support for it?
     
  14. Offline

    ltguide

    I added support in the last update. If you don't have a Permissions-like plugin (bridge or such) it will use SuperPerms.
     
  15. Offline

    Bigun

    Then I am having an issue. I am using PEX Permissions and my console spits out this message upon server start:

    *edit*

    Correction, when the first player joins.

    *edit*

    Also odd, just tested with another player and the permissions seem to be working regardless of the message.... meh...
     
  16. Offline

    ltguide

    It will say that the first time one of its commands is used. It's normal. It just means that the old style permissions wasn't found so it'll use whatever the built in Bukkit Permissions (via PEX) says. Some people still use the old Permissions, so the message is telling you which the plugin is using so you can troubleshoot.
     
  17. Offline

    Bigun

    Thank you for the plugin and please keep it up to date. We were able to enjoy a creative world and a survival world on the same server thanks to this plugin and PEX.
     
  18. Offline

    xxxkilldogxxx

    anybody know how to make a item in a kit spawn more than just once
     
  19. Offline

    jacobrubio

    Great thanx :D
     
  20. Offline

    skinnydude

    Does anyone have an updated list that they are willing to share? :D
     
  21. Offline

    jsschmitt

    Kinda sorta? I added the potions and splash potions...

    Code:
    count:
        max: 512
        def: 64
    delay: 0
    cost: 0
    updateinventory: []
    messages:
        arglength: '&5Syntax: &f%s'
        permission: '&cYou do not have permission.'
        notarget: '&cUnable to find target user.'
        toomanytarget: '&5Matching users: &f%s'
        console: 'This functionality does not work from the console.'
        nomatches: '&cNo matching items.'
        toomanymatches: '&5Matching results: &f%s'
        badsearch: '&cSearch term invalid.'
        delay: '&cYou must wait %s before giving %s.'
        noaccount: '&cYou do not have an account.'
        nomoney: '&cThis will cost %s. You are %s short.'
        reloadable: '&5Syntax: &f/%s reload'
        reloaddone: '&aReloaded items (%s).'
        inventoryfull: '&cYour inventory is full.'
        givefrom: '&a%s is placing ''%s'' in your inventory.'
        giveto: '&aPlacing ''%s'' in %s inventory. %s'
        subtractmoney: ' (-%s; balance is now %s)'
    items:
        kit:
            def: 1
            max: 1
            permission: beginnerset
            delay: 600
            id:
            - '276'
            - '277'
            - '278'
            - '279'
            - '259'
            - '288'
        Stone:
            id: '1'
        Grass:
            id: '2'
        Dirt:
            id: '3'
        Cobblestone:
            id: '4'
        Wooden Plank:
            id: '5'
        Sapling:
            id: '6'
        Spruce Sapling:
            id: '6:1'
        Birch Sapling:
            id: '6:2'
        Bedrock:
            id: '7'
        Water:
            id: '8'
        Stationary Water:
            alias: Source Water
            id: '9'
        Lava:
            id: '10'
        Stationary Lava:
            alias: Source Lava
            id: '11'
        Sand:
            id: '12'
        Gravel:
            id: '13'
        Gold Ore:
            id: '14'
        Iron Ore:
            id: '15'
        Coal Ore:
            id: '16'
        Wood:
            id: '17'
        Spruce Wood:
            id: '17:1'
        Birch Wood:
            id: '17:2'
        Leaves:
            id: '18'
        Sponge:
            id: '19'
        Glass:
            id: '20'
        Lapis Lazuli Ore:
            id: '21'
        Lapis Lazuli Block:
            id: '22'
        Dispenser:
            id: '23'
        Sandstone:
            id: '24'
        Note Block:
            id: '25'
        Powered Rail:
            id: '27'
        Detector Rail:
            id: '28'
        Sticky Piston:
            id: '29'
        Cobweb:
            id: '30'
        Tall Grass:
            id: '31'
        Dead Bush:
            id: '32'
        Piston:
            id: '33'
        Piston Extension:
            id: '34'
        Wool:
            id: '35'
        White Wool:
            id: '35:0'
        Orange Wool:
            id: '35:1'
        Magenta Wool:
            id: '35:2'
        Light Blue Wool:
            id: '35:3'
        Yellow Wool:
            id: '35:4'
        Light Green Wool:
            id: '35:5'
        Pink Wool:
            id: '35:6'
        Gray Wool:
            id: '35:7'
        Light Gray Wool:
            id: '35:8'
        Cyan Wool:
            id: '35:9'
        Purple Wool:
            id: '35:10'
        Blue Wool:
            id: '35:11'
        Brown Wool:
            id: '35:12'
        Dark Green Wool:
            id: '35:13'
        Red Wool:
            id: '35:14'
        Black Wool:
            id: '35:15'
        Dandelion:
            alias: Yellow Flower
            id: '37'
        Rose:
            alias: Red Flower
            id: '38'
        Brown Mushroom:
            id: '39'
        Red Mushroom:
            id: '40'
        Gold Block:
            id: '41'
        Iron Block:
            id: '42'
        Stone Double Slab:
            id: '43'
        Sandstone Double Slab:
            id: '43:1'
        Wooden Double Slab:
            id: '43:2'
        Cobblestone Double Slab:
            id: '43:3'
        Stone Slab:
            id: '44'
        Sandstone Slab:
            id: '44:1'
        Wooden Slab:
            id: '44:2'
        Cobblestone Slab:
            id: '44:3'
        Brick Block:
            id: '45'
        TNT:
            id: '46'
        Bookshelf:
            id: '47'
        Moss Stone:
            id: '48'
        Obsidian:
            id: '49'
        Torch:
            id: '50'
        Fire:
            id: '51'
        Monster Spawner:
            id: '52'
        Wooden Stairs:
            id: '53'
        Chest:
            id: '54'
        Diamond Ore:
            id: '56'
        Diamond Block:
            id: '57'
        Crafting Table:
            alias: Workbench
            id: '58'
        Crops:
            id: '59'
        Farmland:
            alias: Soil
            id: '60'
        Furnace:
            id: '61'
        Burning Furnace:
            alias: Lit Furnace
            id: '62'
        Ladder:
            id: '65'
        Rails:
            alias: Track
            id: '66'
        Cobblestone Stairs:
            id: '67'
        Lever:
            alias: Switch
            id: '69'
        Stone Pressure Plate:
            id: '70'
        Wooden Pressure Plate:
            id: '72'
        Redstone Ore:
            id: '73'
        Glowing Redstone Ore:
            id: '74'
        Redstone Torch:
            id: '76'
        Stone Button:
            id: '77'
        Snow:
            id: '78'
        Ice:
            id: '79'
        Snow Block:
            id: '80'
        Cactus:
            id: '81'
        Clay Block:
            id: '82'
        Jukebox:
            id: '84'
        Fence:
            id: '85'
        Pumpkin:
            id: '86'
        Netherrack:
            alias: Netherstone
            id: '87'
        Soul Sand:
            id: '88'
        Glowstone Block:
            alias: Lightstone
            id: '89'
        Portal:
            id: '90'
        Jack-O-Lantern:
            id: '91'
        Cake Block:
            id: '92'
        Locked Chest:
            id: '95'
        Trapdoor:
            id: '96'
        Hidden Silverfish:
            id: '97'
        Stone Bricks:
            id: '98'
        Huge Brown Mushroom:
            id: '99'
        Huge Red Mushroom:
            id: '100'
        Iron Bars:
            id: '101'
        Glass Pane:
            id: '102'
        Melon:
            id: '103'
        Pumpkin Stem:
            id: '104'
        Melon Stem:
            id: '105'
        Vines:
            id: '106'
        Fence Gate:
            id: '107'
        Brick Stairs:
            id: '108'
        Stone Brick Stairs:
            id: '109'
        Mycelium:
            id: '110'
        Lily Pad:
            id: '111'
        Nether Brick:
            id: '112'
        Nether Brick Fence:
            id: '113'
        Nether Brick Stairs:
            id: '114'
        Nether Wart:
            id: '115'
        Iron Shovel:
            def: 1
            id: '256'
        Iron Pickaxe:
            def: 1
            id: '257'
        Iron Axe:
            def: 1
            id: '258'
        Flint and Steel:
            def: 1
            id: '259'
        Red Apple:
            id: '260'
        Bow:
            id: '261'
        Arrow:
            id: '262'
        Coal:
            id: '263'
        Charcoal:
            id: '263:1'
        Diamond:
            id: '264'
        Iron Ingot:
            id: '265'
        Gold Ingot:
            id: '266'
        Iron Sword:
            id: '267'
        Wooden Sword:
            def: 1
            id: '268'
        Wooden Shovel:
            def: 1
            id: '269'
        Wooden Pickaxe:
            def: 1
            id: '270'
        Wooden Axe:
            def: 1
            id: '271'
        Stone Sword:
            def: 1
            id: '272'
        Stone Shovel:
            def: 1
            id: '273'
        Stone Pickaxe:
            def: 1
            id: '274'
        Stone Axe:
            def: 1
            id: '275'
        Diamond Sword:
            def: 1
            id: '276'
        Diamond Shovel:
            def: 1
            id: '277'
        Diamond Pickaxe:
            def: 1
            id: '278'
        Diamond Axe:
            def: 1
            id: '279'
        Stick:
            id: '280'
        Bowl:
            id: '281'
        Mushroom Soup:
            id: '282'
        Gold Sword:
            def: 1
            id: '283'
        Gold Shovel:
            def: 1
            id: '284'
        Gold Pickaxe:
            def: 1
            id: '285'
        Gold Axe:
            def: 1
            id: '286'
        String:
            id: '287'
        Feather:
            id: '288'
        Gunpowder:
            id: '289'
        Wooden Hoe:
            def: 1
            id: '290'
        Stone Hoe:
            def: 1
            id: '291'
        Iron Hoe:
            def: 1
            id: '292'
        Diamond Hoe:
            def: 1
            id: '293'
        Gold Hoe:
            def: 1
            id: '294'
        Seeds:
            id: '295'
        Wheat:
            id: '296'
        Bread:
            id: '297'
        Leather Helmet:
            def: 1
            id: '298'
        Leather Chestplate:
            def: 1
            id: '299'
        Leather Leggings:
            def: 1
            id: '300'
        Leather Boots:
            def: 1
            id: '301'
        Chain Helmet:
            def: 1
            id: '302'
        Chain Chestplate:
            def: 1
            id: '303'
        Chain Leggings:
            def: 1
            id: '304'
        Chain Boots:
            def: 1
            id: '305'
        Iron Helmet:
            def: 1
            id: '306'
        Iron Chestplate:
            def: 1
            id: '307'
        Iron Leggings:
            def: 1
            id: '308'
        Iron Boots:
            def: 1
            id: '309'
        Diamond Helmet:
            def: 1
            id: '310'
        Diamond Chestplate:
            def: 1
            id: '311'
        Diamond Leggings:
            def: 1
            id: '312'
        Diamond Boots:
            def: 1
            id: '313'
        Gold Helmet:
            def: 1
            id: '314'
        Gold Chestplate:
            def: 1
            id: '315'
        Gold Leggings:
            def: 1
            id: '316'
        Gold Boots:
            def: 1
            id: '317'
        Flint:
            id: '318'
        Raw Porkchop:
            id: '319'
        Cooked Porkchop:
            id: '320'
        Paintings:
            id: '321'
        Golden Apple:
            id: '322'
        Sign:
            id: '323'
        Wooden Door:
            id: '324'
        Bucket:
            id: '325'
        Water bucket:
            id: '326'
        Lava bucket:
            id: '327'
        Minecart:
            id: '328'
        Saddle:
            id: '329'
        Iron door:
            id: '330'
        Redstone:
            id: '331'
        Snowball:
            id: '332'
        Boat:
            id: '333'
        Leather:
            id: '334'
        Milk:
            id: '335'
        Clay Brick:
            id: '336'
        Clay:
            alias: Clay Balls
            id: '337'
        Sugar Cane:
            id: '338'
        Paper:
            id: '339'
        Book:
            id: '340'
        Slimeball:
            id: '341'
        Storage Minecart:
            id: '342'
        Powered Minecart:
            id: '343'
        Egg:
            id: '344'
        Compass:
            id: '345'
        Fishing Rod:
            id: '346'
        Clock:
            alias: Watch
            id: '347'
        Glowstone Dust:
            id: '348'
        Raw Fish:
            id: '349'
        Cooked Fish:
            id: '350'
        Dye:
            id: '351'
        Ink Sac:
            alias: Black Dye
            id: '351:0'
        Rose Red:
            alias: Red Dye
            id: '351:1'
        Cactus Green:
            alias: Green Dye
            id: '351:2'
        Cocoa Beans:
            alias: Brown Dye
            id: '351:3'
        Lapis Lazuli:
            alias: Blue Dye
            id: '351:4'
        Purple Dye:
            id: '351:5'
        Cyan Dye:
            id: '351:6'
        Light Gray Dye:
            id: '351:7'
        Gray Dye:
            id: '351:8'
        Pink Dye:
            id: '351:9'
        Lime Dye:
            id: '351:10'
        Dandelion Yellow:
            alias: Yellow Dye
            id: '351:11'
        Light Blue Dye:
            id: '351:12'
        Magenta Dye:
            id: '351:13'
        Orange Dye:
            id: '351:14'
        Bone Meal:
            alias: White Dye
            id: '351:15'
        Bone:
            id: '352'
        Sugar:
            id: '353'
        Cake:
            id: '354'
        Bed:
            id: '355'
        Redstone Repeater:
            id: '356'
        Cookie:
            id: '357'
        Map:
            id: '358'
            def: 1
        Shears:
            id: '359'
        Melon Slice:
            id: '360'
        Pumpkin Seeds:
            id: '361'
        Melon Seeds:
            id: '362'
        Raw Beef:
            id: '363'
        Steak:
            id: '364'
        Raw Chicken:
            id: '365'
        Cooked Chicken:
            id: '366'
        Rotten Flesh:
            id: '367'
        Ender Pearl:
            id: '368'
        Blaze Rod:
            id: '369'
        Ghast Tear:
            id: '370'
        Gold Nugget:
            id: '371'
        Gold Music Disc:
            alias: Gold Record
            id: '2256'
        Green Music Disc:
            alias: Green Record
            id: '2257'
        Potion:
            alias: Potions
            id: '373'
        Regen Potion:
            id: '373:8225'
        Speed Potion:
            id: '373:8226'
        Fire Potion:
            id: '373:8227'
        Poison Potion:
            id: '373:8212'
        Healing Potion:
            id: '373:8229'
        Weakness Potion:
            id: '373:8216'
        Strength Potion:
            id: '373:8233'
        Slow Potion:
            id: '373:8218'
        Harm Potion:
            id: '373:8236'
        Splash Regen:
            id: '373:16417'
        Splash Speed:
            id: '373:16418'
        Splash Fire:
            id: '373:16419'
        Splash Poison:
            id: '373:16404'
        Splash Heal:
            id: '373:16421'
        Splash Weak:
            id: '373:16408'
        Splash Strength:
            id: '373:16425'
        Splash Slow:
            id: '373:16410'
        Splash Harm:
            id: '373:16428'
            
     
  22. Offline

    Zombiemold

    Any chance of a switch from Register to Vault? Vault is the new way developers are hooking into permission and economy systems, and seems to be regularly updated.
     
  23. Offline

    skinnydude

    Hey thanks!
     
  24. Can you possibly make it so that a user doesn't have to have the node "giveto.self" in order to use a specific giveto item? (or restrict it?).
    I'm trying to make kits, that a user has to have permission for, which is great, but having ALL the other items is a bit crazy
    (on the other hand, you can probably just make a default permission for all other items to make them non-accessible)
     
    AS1LV3RN1NJA likes this.
  25. Offline

    Don Redhorse

    hi, any idea if you will update to vault? register is causing more and more issues nowadays..
     
    AS1LV3RN1NJA likes this.
  26. Offline

    Darth009

    Code:
        Potion:
            alias: Potions
            id: '373'
        Regen Potion:
            id: '373:8225'
        Speed Potion:
            id: '373:8226'
        Fire Potion:
            id: '373:8227'
        Poison Potion:
            id: '373:8212'
        Healing Potion:
            id: '373:8229'
        Weakness Potion:
            id: '373:8216'
        Strength Potion:
            id: '373:8233'
        Slow Potion:
            id: '373:8218'
        Harm Potion:
            id: '373:8236'
        Splash Regen:
            id: '373:16417'
        Splash Speed:
            id: '373:16418'
        Splash Fire:
            id: '373:16419'
        Splash Poison:
            id: '373:16404'
        Splash Heal:
            id: '373:16421'
        Splash Weak:
            id: '373:16408'
        Splash Strength:
            id: '373:16425'
        Splash Slow:
            id: '373:16410'
        Splash Harm:
            id: '373:16428'
        Cauldron:
            id: '380'
        Brewing Stand:
            id: '379'
        Enchantment Table:
            id: '116'
        End Stone:
            id: '121'
        Dragon Egg:
            id: '122'
        End Portal Frame:
            id: '120'
        Netherward:
            id: '372'
        Bottle:
            id: '374'
        Spidereye:
            id: '375'
        Ferminated Spidereye:
            id: '376'
        Glowing Powder:
            id: '377'
        Magmacreme:
            id: '378'
        Eye of Ender:
            id: '381'
        Glistering Melon:
            id: '382'
        Spawn Mushcow:
            id: '383:96'
        Spawn Skeleton:
            id: '383:51'
        Spawn Creeper:
            id: '383:50'
        Spawn Slime:
            id: '383:55'
        Spawn Zombie:
            id: '383:54'
        Spawn Spider:
            id: '383:52'
        Spawn Chicken:
            id: '383:93'
        Spawn Cavespider:
            id: '383:59'
        Spawn Cow:
            id: '383:92'
        Spawn Enderman:
            id: '383:58'
        Spawn Wolf:
            id: '383:95'
        Spawn Zombiepig:
            id: '383:57'
        Spawn Squid:
            id: '383:94'
        Spawn Ghast:
            id: '383:56'
        Spawn Magmaslime:
            id: '383:62'
        Spawn Sheep:
            id: '383:91'
        Spawn Blaze:
            id: '383:61'
        Spawn Villager:
            id: '383:120'
        Spawn Silverfish:
            id: '383:60'
        Spawn Pig:
            id: '383:90'
        blocks Disc:
            id: '2258'
        chirp Disc:
            id: '2259'
        far Disc:
            id: '2260'
        mall Disc:
            id: '2261'
        mellohi Disc:
            id: '2262'
        stal Disc:
            id: '2263'
        strad Disc:
            id: '2264'
        ward Disc:
            id: '2265'
        11 Disc:
            id: '2266'
    
    I added the new Eggs and some missing Items

    Credits for Potions to: jsschmitt
     
  27. Offline

    Physikbuddha

    UPDATE GiveTo v0.9.2 (now with Vault support for economy plugins)
    Fixed by me to work with latest CB #2034 (Beta Build MC 1.2.3)
    Download JAR
    [Old link, just for safety, not available 24/7]

    Download Source
    [Old link, just for safety, not available 24/7]

    Changelog:

    Version 0.9.2
    - FIX: Re-added support for the /gto command from the console.

    Version 0.9.1
    - FIX: Reload-command didn't reload the config.yml from the disc
    - FIX: Reload-command wasn't accessible from the console
    - Updated config.yml to include all new blocks and items from MC 1.2 (you'll have to rename your existing config.yml in order to let GiveTo create the new one)

    Version 0.9
    - Economy-API changed from Register to Vault
    - Uses new config- and event-system
    - Code cleanup
    - Compiled against CB #2034
    - Added new items (Thanks to jsschmitt and Darth009)
     

    Attached Files:

    AS1LV3RN1NJA likes this.
  28. You removed console functionality :O
     
  29. Offline

    Physikbuddha

    Sorry, didn't know that this was a feature in 0.8
    Fixed in 0.9.2 :)
     
    AS1LV3RN1NJA likes this.
  30. Offline

    md_5

    Long time no see ltguide. You will notice that this thread has now been placed into the Inactive Plugin subforum.
    If you wish to revive this plugin, please ensure that you update and test compatibility with the latest recommended Bukkit build before reporting your original post, asking for it to be moved back to the release forum.

    Thanks for your time.
    md_5
     

Share This Page