Added backup files
This commit is contained in:
commit
b2ad01be76
7 changed files with 3489 additions and 0 deletions
12
.classpath
Executable file
12
.classpath
Executable file
|
|
@ -0,0 +1,12 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<classpath>
|
||||||
|
<classpathentry kind="src" path="src"/>
|
||||||
|
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER">
|
||||||
|
<attributes>
|
||||||
|
<attribute name="module" value="true"/>
|
||||||
|
</attributes>
|
||||||
|
</classpathentry>
|
||||||
|
<classpathentry kind="lib" path="C:/Users/netbenix/Downloads/spigot-1.16.3.jar"/>
|
||||||
|
<classpathentry kind="lib" path="E:/Programming/APIs/Vault.jar"/>
|
||||||
|
<classpathentry kind="output" path="bin"/>
|
||||||
|
</classpath>
|
||||||
17
.project
Executable file
17
.project
Executable file
|
|
@ -0,0 +1,17 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<projectDescription>
|
||||||
|
<name>Inventory AdminShop</name>
|
||||||
|
<comment></comment>
|
||||||
|
<projects>
|
||||||
|
</projects>
|
||||||
|
<buildSpec>
|
||||||
|
<buildCommand>
|
||||||
|
<name>org.eclipse.jdt.core.javabuilder</name>
|
||||||
|
<arguments>
|
||||||
|
</arguments>
|
||||||
|
</buildCommand>
|
||||||
|
</buildSpec>
|
||||||
|
<natures>
|
||||||
|
<nature>org.eclipse.jdt.core.javanature</nature>
|
||||||
|
</natures>
|
||||||
|
</projectDescription>
|
||||||
8
README.md
Executable file
8
README.md
Executable file
|
|
@ -0,0 +1,8 @@
|
||||||
|
# inventory-admin-shop
|
||||||
|
Minecraft server plugin for Minecraft 1.8.7 and newer
|
||||||
|
|
||||||
|
Used APIs:
|
||||||
|
- Spigot 1.12
|
||||||
|
- Vault
|
||||||
|
|
||||||
|
Plugin version: 1.0
|
||||||
BIN
bin/v01d/dev/ias/Main.class
Executable file
BIN
bin/v01d/dev/ias/Main.class
Executable file
Binary file not shown.
222
config.yml
Executable file
222
config.yml
Executable file
|
|
@ -0,0 +1,222 @@
|
||||||
|
#########################
|
||||||
|
# Inventory AdminShop #
|
||||||
|
# Made by: V01D #
|
||||||
|
# Version: 1.0 #
|
||||||
|
#########################
|
||||||
|
|
||||||
|
#BUILDING BLOCKS ITEM AMOUNT
|
||||||
|
Amount:
|
||||||
|
stone: 32
|
||||||
|
granite: 16
|
||||||
|
polished-granite: 16
|
||||||
|
diorite: 16
|
||||||
|
polished-diorite: 16
|
||||||
|
andesite: 16
|
||||||
|
polished-andesite: 16
|
||||||
|
grass: 16
|
||||||
|
dirt: 64
|
||||||
|
coarse-dirt: 16
|
||||||
|
podzol: 16
|
||||||
|
cobblestone: 32
|
||||||
|
oak-wood-planks: 32
|
||||||
|
spruce-wood-planks: 32
|
||||||
|
birch-wood-planks: 32
|
||||||
|
jungle-wood-planks: 32
|
||||||
|
acacia-wood-planks: 32
|
||||||
|
dark-oak-wood-planks: 32
|
||||||
|
sand: 32
|
||||||
|
red-sand: 16
|
||||||
|
gravel: 16
|
||||||
|
oak-wood: 16
|
||||||
|
spruce-wood: 16
|
||||||
|
birch-wood: 16
|
||||||
|
jungle-wood: 16
|
||||||
|
glass: 32
|
||||||
|
lapis-lazuli-block: 8
|
||||||
|
sandstone: 16
|
||||||
|
chiseled-sandstone: 8
|
||||||
|
smooth-sandstone: 16
|
||||||
|
white-wool: 8
|
||||||
|
orange-wool: 8
|
||||||
|
magenta-wool: 8
|
||||||
|
light-blue-wool: 8
|
||||||
|
yellow-wool: 8
|
||||||
|
lime-wool: 8
|
||||||
|
pink-wool: 8
|
||||||
|
gray-wool: 8
|
||||||
|
light-gray-wool: 8
|
||||||
|
cyan-wool: 8
|
||||||
|
purple-wool: 8
|
||||||
|
blue-wool: 8
|
||||||
|
brown-wool: 8
|
||||||
|
green-wool: 8
|
||||||
|
red-wool: 8
|
||||||
|
black-wool: 8
|
||||||
|
gold-block: 5
|
||||||
|
iron-block: 5
|
||||||
|
stone-slab: 16
|
||||||
|
sandstone-slab: 16
|
||||||
|
cobblestone-slab: 16
|
||||||
|
brick-slab: 16
|
||||||
|
stone-brick-slab: 16
|
||||||
|
nether-brick-slab: 16
|
||||||
|
quartz-slab: 16
|
||||||
|
BRICK: 32
|
||||||
|
BOOKSHELF: 2
|
||||||
|
MOSSY_COBBLESTONE: 8
|
||||||
|
OBSIDIAN: 4
|
||||||
|
WOOD_STAIRS: 16
|
||||||
|
DIAMOND_BLOCK: 1
|
||||||
|
COBBLESTONE_STAIRS: 8
|
||||||
|
ICE: 6
|
||||||
|
SNOW: 12
|
||||||
|
CLAY: 12
|
||||||
|
PUMPKIN: 1
|
||||||
|
NETHERRACK: 16
|
||||||
|
SOUL_SAND: 16
|
||||||
|
GLOWSTONE: 4
|
||||||
|
JACK_O_LANTERN: 1
|
||||||
|
STAINED_GLASS_0: 8
|
||||||
|
STAINED_GLASS_1: 8
|
||||||
|
STAINED_GLASS_2: 8
|
||||||
|
STAINED_GLASS_3: 8
|
||||||
|
STAINED_GLASS_4: 8
|
||||||
|
STAINED_GLASS_5: 8
|
||||||
|
STAINED_GLASS_6: 8
|
||||||
|
STAINED_GLASS_7: 8
|
||||||
|
STAINED_GLASS_8: 8
|
||||||
|
STAINED_GLASS_9: 8
|
||||||
|
STAINED_GLASS_10: 8
|
||||||
|
STAINED_GLASS_11: 8
|
||||||
|
STAINED_GLASS_12: 8
|
||||||
|
STAINED_GLASS_13: 8
|
||||||
|
STAINED_GLASS_14: 8
|
||||||
|
STAINED_GLASS_15: 8
|
||||||
|
SMOOTH_BRICK_0: 16
|
||||||
|
SMOOTH_BRICK_1: 16
|
||||||
|
SMOOTH_BRICK_2: 16
|
||||||
|
SMOOTH_BRICK_3: 16
|
||||||
|
MELON_BLOCK: 1
|
||||||
|
BRICK_STAIRS: 32
|
||||||
|
SMOOTH_STAIRS: 32
|
||||||
|
MYCEL: 8
|
||||||
|
NETHER_BRICK: 24
|
||||||
|
NETHER_BRICK_STAIRS: 24
|
||||||
|
ENDER_STONE: 16
|
||||||
|
WOOD_STEP_0: 24
|
||||||
|
WOOD_STEP_1: 24
|
||||||
|
WOOD_STEP_2: 24
|
||||||
|
WOOD_STEP_3: 24
|
||||||
|
|
||||||
|
|
||||||
|
#DECORATION BLOCKS PRICES
|
||||||
|
oak-sapling: 8
|
||||||
|
|
||||||
|
|
||||||
|
#BUILDING BLOCKS ITEM PRICES
|
||||||
|
Price:
|
||||||
|
stone: 5
|
||||||
|
granite: 3
|
||||||
|
polished-granite: 3
|
||||||
|
diorite: 3
|
||||||
|
polished-diorite: 3
|
||||||
|
andesite: 3
|
||||||
|
polished-andesite: 3
|
||||||
|
grass: 5
|
||||||
|
dirt: 2
|
||||||
|
coarse-dirt: 4
|
||||||
|
podzol: 5
|
||||||
|
cobblestone: 2
|
||||||
|
oak-wood-planks: 3
|
||||||
|
spruce-wood-planks: 3
|
||||||
|
birch-wood-planks: 3
|
||||||
|
jungle-wood-planks: 3
|
||||||
|
acacia-wood-planks: 3
|
||||||
|
dark-oak-wood-planks: 3
|
||||||
|
sand: 5
|
||||||
|
red-sand: 6
|
||||||
|
gravel: 3
|
||||||
|
oak-wood: 12
|
||||||
|
spruce-wood: 12
|
||||||
|
birch-wood: 12
|
||||||
|
jungle-wood: 12
|
||||||
|
glass: 8
|
||||||
|
lapis-lazuli-block: 14
|
||||||
|
sandstone: 10
|
||||||
|
chiseled-sandstone: 10
|
||||||
|
smooth-sandstone: 10
|
||||||
|
white-wool: 10
|
||||||
|
orange-wool: 15
|
||||||
|
magenta-wool: 15
|
||||||
|
light-blue-wool: 12
|
||||||
|
yellow-wool: 11
|
||||||
|
lime-wool: 12
|
||||||
|
pink-wool: 11
|
||||||
|
gray-wool: 12
|
||||||
|
light-gray-wool: 12
|
||||||
|
cyan-wool: 12
|
||||||
|
purple-wool: 12
|
||||||
|
blue-wool: 12
|
||||||
|
brown-wool: 12
|
||||||
|
green-wool: 12
|
||||||
|
red-wool: 12
|
||||||
|
black-wool: 12
|
||||||
|
gold-block: 25
|
||||||
|
iron-block: 20
|
||||||
|
stone-slab: 10
|
||||||
|
sandstone-slab: 12
|
||||||
|
cobblestone-slab: 12
|
||||||
|
brick-slab: 12
|
||||||
|
stone-brick-slab: 12
|
||||||
|
nether-brick-slab: 12
|
||||||
|
quartz-slab: 20
|
||||||
|
BRICK: 15
|
||||||
|
BOOKSHELF: 10
|
||||||
|
MOSSY_COBBLESTONE: 12
|
||||||
|
OBSIDIAN: 15
|
||||||
|
WOOD_STAIRS: 6
|
||||||
|
DIAMOND_BLOCK: 90
|
||||||
|
COBBLESTONE_STAIRS: 4
|
||||||
|
ICE: 12
|
||||||
|
SNOW: 5
|
||||||
|
CLAY: 5
|
||||||
|
PUMKPIN: 5
|
||||||
|
NETHERRACK: 4
|
||||||
|
SOUL_SAND: 8
|
||||||
|
GLOWSTONE: 8
|
||||||
|
JACK_O_LANTERN: 2
|
||||||
|
STAINED_GLASS_0: 20
|
||||||
|
STAINED_GLASS_1: 20
|
||||||
|
STAINED_GLASS_2: 20
|
||||||
|
STAINED_GLASS_3: 20
|
||||||
|
STAINED_GLASS_4: 20
|
||||||
|
STAINED_GLASS_5: 20
|
||||||
|
STAINED_GLASS_6: 20
|
||||||
|
STAINED_GLASS_7: 20
|
||||||
|
STAINED_GLASS_8: 20
|
||||||
|
STAINED_GLASS_9: 20
|
||||||
|
STAINED_GLASS_10: 20
|
||||||
|
STAINED_GLASS_11: 20
|
||||||
|
STAINED_GLASS_12: 20
|
||||||
|
STAINED_GLASS_13: 20
|
||||||
|
STAINED_GLASS_14: 20
|
||||||
|
STAINED_GLASS_15: 20
|
||||||
|
SMOOTH_BRICK_0: 10
|
||||||
|
SMOOTH_BRICK_1: 10
|
||||||
|
SMOOTH_BRICK_2: 10
|
||||||
|
SMOOTH_BRICK_3: 10
|
||||||
|
MELON_BLOCK: 2
|
||||||
|
BRICK_STAIRS: 16
|
||||||
|
SMOOTH_STAIRS: 16
|
||||||
|
MYCEL: 32
|
||||||
|
NETHER_BRICK: 16
|
||||||
|
NETHER_BRICK_STAIRS: 16
|
||||||
|
ENDER_STONE: 12
|
||||||
|
WOOD_STEP_0: 6
|
||||||
|
WOOD_STEP_1: 6
|
||||||
|
WOOD_STEP_2: 6
|
||||||
|
WOOD_STEP_3: 6
|
||||||
|
|
||||||
|
|
||||||
|
#DECORATION BLOCKS AMOUNT
|
||||||
|
oak-sapling: 5
|
||||||
23
plugin.yml
Executable file
23
plugin.yml
Executable file
|
|
@ -0,0 +1,23 @@
|
||||||
|
name: InventoryAdminShop
|
||||||
|
main: v01d.dev.ias.Main
|
||||||
|
author: V01D
|
||||||
|
version: 1.0
|
||||||
|
commands:
|
||||||
|
invadminshop:
|
||||||
|
usage: /<command>
|
||||||
|
description: Views the Plugin Infos
|
||||||
|
invadminshop-help:
|
||||||
|
usage: /<command>
|
||||||
|
description: Views the Plugin Help
|
||||||
|
permission: invadminshop.help
|
||||||
|
permission-message: You have not enough permissions to open the Plugin Help
|
||||||
|
invadminshop-reload:
|
||||||
|
usage: /<command>
|
||||||
|
description: Reloads the Plugin Config
|
||||||
|
permission: invadminshop.reload
|
||||||
|
permission-message: You have not enough permissions to reload the Plugin Config
|
||||||
|
adminshop:
|
||||||
|
usage: /<command>
|
||||||
|
description: Opens the AdminShop Inventory
|
||||||
|
permission: invadminshop.open
|
||||||
|
permission-message: You have not enough permissions to open the AdminShop
|
||||||
3207
src/v01d/dev/ias/Main.java
Executable file
3207
src/v01d/dev/ias/Main.java
Executable file
File diff suppressed because it is too large
Load diff
Reference in a new issue