Minecraft Easy Build mod 2026 download
logo
minecraft mod Easy Build

Easy Build

Game Version: 1.6.2
Total Downloads: 908
Updated: Jul 15, 2013
Created: Jul 15, 2013
Download Easy BuildDownload Earlier Versions

Earlier Versions

Name Size Uploaded Game Version Downloads
easyBuild-1.0.3.jar beta 5.06 KB Jul 15, 2013 1.6.2 569 download Easy Build easyBuild-1.0.3.jar betaDownload
easyBuild-FINAL1.jar beta 4.85 KB Jul 15, 2013 1.6.2 140 download Easy Build easyBuild-FINAL1.jar betaDownload
easyBuild-BETA2.jar beta 4.85 KB Jul 15, 2013 1.6.2 199 download Easy Build easyBuild-BETA2.jar betaDownload

Description

Share this:

This is a simple plugin that enables you to establish a socket connection (as with minecraft:pi edition) and build structures remotely!
here's an example python script to show you the basics:

import socket
#import the socket module

s = socket.socket()
#make the socket variable

s.connect(("localhost", 4444))
#substitute localhost with your server's IP.

s.send("0_90_5_1_")
#Tells the server to place a block of stone(1) at X: 0 Y: 90 Z: 5

s.close()
#Closes the socket, and finalizes the instructions (AKA it actually places the blocks now.)

If you want to simplify using sockets to place blocks, and make it appear to happen when you tell it to, use this example function:

import socket
s = socket.socket()
s.connect((IP, 4444))
def placeBlock(socket, x, y, z, ID):
  socket.send("{}_{}_{}_{}_".format(x, y, z, ID)
for i in range(0, 200):
  placeBlock(s, i, 90, 50, 57)
s.close()

(Note, i use python in these examples because i only know python and java :P)
linebreak
Here's the list of permissions:
easyBuild.placeCommand
easyBuild.enableServer

The names should be fairly self-explanatory.

Here's the list of commands:
/placeBlock <x> <y> <z> <ID>
/enableServer

Again, fairly self-explanatory. (ID's MUST be The numerical block ID's!)

NOTE: MUST close socket to finalize changes.
NOTE: MUST type /enableServer every time you want to make a change with sockets (To prevent hackers from griefing)

If you are the generous type, i could really use some money for pizza, coffee, etc..
Donate
Check it out on github!
Github Repository

Comments

Add a comment