Simple ShopGUI
This plugin allows you to make a ShopGUI that is fully customizable through the config.yml
Quick challenge
How far can you run before the mobs catch you?
Minecraft check
Confirm your run
Complete the quick check to get your code.
Simple ShopGUI
SimpleShop
- An easily customizable shop plugin - It does NOT contain a sell module (good for users who already have a plugin for selling) - Super lightweight!
Dependencies
Vault(Spigot)
Config
``` main_menu: title: "&0Server Shop" size: 27 items: weapon_category: material: REDSTONE slot: 11 name: "&c&lRedstone" lore: - "&7Click to buy redstone," - "&7repeaters, comparators and more!" opens_shop: "redstone" # <--- MUST match the key in 'shops' below
food_category: material: COOKED_BEEF slot: 15 name: "&a&lFood" lore: - "&7Don't starve!" opens_shop: "food"
The Actual Shops
shops: redstone: title: "&8Redstone Shop" size: 27 items: redstone_dust: material: REDSTONE slot: 9 name: "&bRedstone Dust" cost: 14.0 lore: - "&7Cost: $14" repeater: material: REPEATER slot: 10 name: "&bRepeater" cost: 79.0 lore: - "&7Cost: $79" comparator: material: COMPARATOR slot: 11 name: "&bComparator" cost: 79.0 lore: - "&7Cost: $79" lever: material: LEVER slot: 12 name: "&bLever" cost: 15.0 lore: - "&7Cost: $15" redstone_block: material: REDSTONE_BLOCK slot: 13 name: "&bRedstone Block" cost: 100.0 lore: - "&7Cost: $100" redstone_torch: material: REDSTONE_TORCH slot: 14 name: "&bRedstone Torch" cost: 20.0 lore: - "&7Cost: $20" crafter: material: CRAFTER slot: 15 name: "&bCrafter" cost: 300 lore: - "&7Cost: $300" dispenser: material: DISPENSER slot: 16 name: "&bDispenser" cost: 150 lore: - "&7Cost: $150" dropper: material: DROPPER slot: 17 name: "&bDropper" cost: 75 lore: - "&7Cost: $75" food: title: "&8Food Shop" size: 27 items: steak: material: COOKED_BEEF slot: 9 name: "&6Steak" cost: 50.0 lore: - "&7Cost: $50" golden_carrot: material: GOLDEN_CARROT slot: 10 name: "&6Golden Carrot" cost: 180.0 lore: - "&7Cost: $180" golden_apple: material: GOLDEN_APPLE slot: 11 name: "&6Golden Apple" cost: 1500.0 lore: - "&7Cost: $1,500" melon: material: MELON_SLICE slot: 12 name: "&6Melon Slice" cost: 10.0 lore: - "&7Cost: $10" potato: material: POTATO slot: 13 name: "&6Potato" cost: 20.0 lore: - "&7Cost: $20" bread: material: BREAD slot: 14 name: "&6Bread" cost: 35.0 lore: - "&7Cost: $35" cooked_mutton: material: COOKED_MUTTON slot: 15 name: "&6Cooked Mutton" cost: 45.0 lore: - "&7Cost: $45" cake: material: CAKE slot: 16 name: "&6Cake" cost: 120.0 lore: - "&7Cost: $120" cooked_porkchop: material: COOKED_PORKCHOP slot: 17 name: "&6Cooked Porkchop" cost: 50.0 lore: - "&7Cost: $50" ```