Machines - automated drills, turrets, conveyer belts, and more!

NULLED Machines - automated drills, turrets, conveyer belts, and more! 1.1.2

No permission to download
Tested Minecraft Versions:
  • 1.7
  • 1.8
  • 1.9
  • 1.10
  • 1.11
  • 1.12

Drill

  • Drills will mine blocks in the direction they are facing and fill their inventory with the mined blocks until they run out of fuel.
  • To rotate a drill, simply click the drill head (piston).
  • Drills can be rotated UP, DOWN, NORTH, EAST, SOUTH, WEST
  • When they drill through water or lava, drills will fill empty buckets if they are present in their inventory. (configurable)
  • When drills hit a block that cannot be drilled through (configurable) the machine stops.
Spoiler: Default Crafting




Paver
  • Pavers will place blocks from their inventory in the direction they are facing until they run out of fuel.
  • To rotate a paver, simply click the paver head (dispenser).
  • Pavers can be rotated UP, DOWN, NORTH, EAST, SOUTH, WEST
  • When pavers hit a block that cannot be paved over (configurable), the machine stops.
  • Great for building bridges or placing long railways behind a drill!
Spoiler: Default Crafting




Turret
  • Turrets will fire projectiles from their inventory at entities that are in the direction the machine is facing until they run out of fuel.
  • To rotate a turret, simply click the turret head (furnace).
  • When actively scanning for enemies, turrets will be bright and lit up (furnace will be on).
  • Turrets can be rotated NORTH, EAST, SOUTH, WEST
  • Turrets will fire at all entities that are not in the entity blacklist. (configurable)
  • Great for setting up in bases or on castle walls!
Spoiler: Default Crafting



Conveyer
  • Conveyers will move entities along their conveyer belts in the direction they are facing.
  • To rotate a conveyer, simply click the conveyer head (stairs).
  • Conveyers can be rotated NORTH, EAST, SOUTH, WEST
  • Conveyers will move any entity on it's belt that is not in the entity blacklist. (configurable)
  • Great for mob traps and for moving around items!
  • **NOTE: This machine is still in beta and may have a few issues
Spoiler: Default Crafting



Plugin Features:
  • Change the options for each machine via its own config file.
  • Change crafting recipes for each machine.
  • Change fuel types each machine accepts.
  • All messages are translatable!
  • Full permission support.
  • World protection for machines.
  • Plug and Play.
Spoiler: Commands
/machines give - gives the user all of the enabled machines on the server
/machines list- lists how many machines are registered on the server and how many you own out of those
/machines save - saves the machines to the data file.
(This is done automatically on server shutdown but this command is great for servers who wish to do periodic backups)
Spoiler: Permissions
machines.drill.use - Allows player to use drill machines
machines.drill.craft - Allows player to craft drill machines

machines.paver.use - Allows player to use paver machines
machines.paver.craft - Allows player to craft paver machines

machines.turret.use - Allows player to use turret machines
machines.turret.craft - Allows player to craft turret machines

machines.conveyer.use - Allows player to use conveyer machines
machines.conveyer.craft - Allows player to craft conveyer machines

machines.operator - Allows all operator functionality within the plugin
Spoiler: Configuration
Spoiler: config.yml
Code (yml):

# Thanks for downloading Machines! #

usePermissions: false

# This controls whether other people/explosions are able to destroy machines #
protection: true

messages:
availableCommands:
- "[Machines] Available Commands"
- " /machines list"
- " /machines give"
machinesOwned: "&7You own [amount owned] of the [amount total] machines registered on this server."

Spoiler: drillConfig.yml
Code (yml):

# This is the configuration file for the Drill machine. #
# A full list of materials can be found here: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html #
# ================================================================== #
# &b : AQUA
# &0 : BLACK
# &9 : BLUE
# &l : BOLD
# &3 : DARK_AQUA
# &1 : DARK_BLUE
# &8 : DARK_GRAY
# &2 : DARK_GREEN
# &5 : DARK_PURPLE
# &4 : DARK_RED
# &6 : GOLD
# &7 : GRAY
# &a : GREEN
# &o : ITALIC
# &d : LIGHT_PURPLE
# &k : MAGIC
# &c : RED
# &r : RESET
# &m : STRIKETHROUGH
# &n : UNDERLINE
# &f : WHITE
# &e : YELLOW

machine:
# This controls whether drills will be allowed on the server at all #
enabled: true
# These control how drills inventories are created #
inventory:
name: 'Drill'
rows: 1
# This is used to set the drill item information #
item:
type: 'PISTON_BASE'
name: '&6Drill'
lore:
1: "&f&o'It looks very old and heavy'"
2: "&7Requires fuel"
# This controls the recipe to craft drills #
crafting:
shape: ['RPR', 'RFR', 'IOI']
mapping:
R: 'BLAZE_ROD'
P: 'PISTON_BASE'
F: 'FURNACE'
I: 'IRON_PICKAXE'
O: 'OBSIDIAN'
# This controls how fast drills operate. (20 ticks = 1 second) Larger numbers make drills operate slower #
speedInTicks: 10
# This controls whether the drill will fill empty buckets in its inventory when encountering water/lava #
fillBuckets: true
# The number represents how many blocks the machine will mine per fuel #
fuelTypes:
COAL: 10
LAVA_BUCKET: 100
BLAZE_ROD: 30
LOG: 4
WOOD: 1
# This is the message that is sent to players who try to start machines that do not have fuel #
fuelMessage: "&7The drill needs fuel in order to start."
# These are the materials that drills cannot break, and will halt when running into them #
blockBlacklist:
- ARMOR_STAND
- BANNER
- BARRIER
- BEACON
- BED_BLOCK
- BREWING_STAND
- BEDROCK
- BURNING_FURNACE
- COMMAND
- CHEST
- DISPENSER
- DROPPER
- ENCHANTMENT_TABLE
- ENDER_CHEST
- FURNACE
- PISTON_BASE
- PISTON_EXTENSION
- PISTON_MOVING_PIECE
- PISTON_STICKY_BASE
- SIGN
- SIGN_POST
- SKULL
- STANDING_BANNER
- TRAPPED_CHEST
- WALL_BANNER
- WALL_SIGN

Spoiler: paverConfig.yml
Code (yml):

# This is the configuration file for the Paver machine. #
# A full list of materials can be found here: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html #
# ================================================================== #
# &b : AQUA
# &0 : BLACK
# &9 : BLUE
# &l : BOLD
# &3 : DARK_AQUA
# &1 : DARK_BLUE
# &8 : DARK_GRAY
# &2 : DARK_GREEN
# &5 : DARK_PURPLE
# &4 : DARK_RED
# &6 : GOLD
# &7 : GRAY
# &a : GREEN
# &o : ITALIC
# &d : LIGHT_PURPLE
# &k : MAGIC
# &c : RED
# &r : RESET
# &m : STRIKETHROUGH
# &n : UNDERLINE
# &f : WHITE
# &e : YELLOW

machine:
# This controls whether pavers will be allowed on the server at all #
enabled: true
# These control how pavers inventories are created #
inventory:
name: 'Paver'
rows: 1
# This is used to set the paver item information #
item:
type: 'DISPENSER'
name: '&6Paver'
lore:
1: "&f&o'Very rusty with loose parts'"
2: "&7Requires fuel"
# This controls the recipe to craft pavers #
crafting:
shape: ['RDR', 'RFR', 'BOB']
mapping:
R: 'BLAZE_ROD'
D: 'DISPENSER'
F: 'FURNACE'
B: 'REDSTONE_BLOCK'
O: 'OBSIDIAN'
# This controls how fast pavers operate. (20 ticks = 1 second) Larger numbers make pavers operate slower #
speedInTicks: 10
# The number represents how many blocks the machine will place down per fuel #
fuelTypes:
COAL: 10
LAVA_BUCKET: 100
BLAZE_ROD: 30
LOG: 4
WOOD: 1
# This is the message that is sent to players who try to start machines that do not have fuel #
fuelMessage: "&7The paving machine needs fuel in order to start."
# These are the materials that pavers will pave over #
blockWhitelist:
- AIR
- BROWN_MUSHROOM
- DEAD_BUSH
- DOUBLE_PLANT
- FIRE
- LAVA
- LONG_GRASS
- RED_MUSHROOM
- RED_ROSE
- SAPLING
- SNOW
- STATIONARY_LAVA
- STATIONARY_WATER
- VINE
- WATER
- YELLOW_FLOWER

Spoiler: turretConfig.yml
Code (yml):

# This is the configuration file for the Turret machine. #
# A full list of materials can be found here: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html #
# ================================================================== #
# &b : AQUA
# &0 : BLACK
# &9 : BLUE
# &l : BOLD
# &3 : DARK_AQUA
# &1 : DARK_BLUE
# &8 : DARK_GRAY
# &2 : DARK_GREEN
# &5 : DARK_PURPLE
# &4 : DARK_RED
# &6 : GOLD
# &7 : GRAY
# &a : GREEN
# &o : ITALIC
# &d : LIGHT_PURPLE
# &k : MAGIC
# &c : RED
# &r : RESET
# &m : STRIKETHROUGH
# &n : UNDERLINE
# &f : WHITE
# &e : YELLOW

machine:
# This controls whether turrets will be allowed on the server at all #
enabled: true
# These control how turrets inventories are created #
inventory:
name: 'Turret'
rows: 1
# This is used to set the turret item information #
item:
type: 'FURNACE'
name: '&6Turret'
lore:
1: "&f&o'A decrepit auto-sentry with a faint glow'"
2: "&7Requires fuel"
# This controls the recipe to craft turrets #
crafting:
shape: ['RDR', 'RFR', 'BOB']
mapping:
R: 'BLAZE_ROD'
D: 'DISPENSER'
F: 'FURNACE'
B: 'BOW'
O: 'OBSIDIAN'
# This controls how fast turrets shoot. (20 ticks = 1 second) Larger numbers make turrets shoot slower #
speedInTicks: 20
# Distance (in blocks) that turrets will scan for targets (higher numbers will cause more lag) #
scanDistance: 15
# The number represents how many seconds the turret will stay active per fuel #
fuelTypes:
COAL: 60
LAVA_BUCKET: 600
BLAZE_ROD: 120
LOG: 20
WOOD: 10
# This is the message that is sent to players who try to start machines that do not have fuel #
fuelMessage: "&7The turret needs fuel in order to start."
# This is a list of (living) entity types that turrets will not target #
entityBlacklist:
- ARMOR_STAND
- CHICKEN
- COW
- HORSE
- IRON_GOLEM
- OCELOT
- PIG
- RABBIT
- SHEEP
- SLIME
- SNOWMAN
- VILLAGER
- WOLF

And more machines to come!

Also be sure to check out my other Premium plugins!
,
Author
Direct-Leaks.com
Downloads
45
Views
265
First release
Last update
Rating
5.00 star(s) 1 ratings

More resources from Direct-Leaks.com

Latest reviews

Keep updating it! =)
Top