Minecraft RaspberryJuice mod 2024 download
logo
minecraft mod RaspberryJuice

RaspberryJuice

Game Version: 1.12
Total Downloads: 25,104
Updated: Nov 1, 2017
Created: Jan 8, 2013
Download RaspberryJuiceDownload Earlier Versions

Earlier Versions

Name Size Uploaded Game Version Downloads
RaspberryJuice v1.11 release 25.44 KB Nov 1, 2017 1.12 8,530 download RaspberryJuice RaspberryJuice v1.11 releaseDownload
RaspberryJuice v1.10 release 23.65 KB Aug 10, 2017 1.12 792 download RaspberryJuice RaspberryJuice v1.10 releaseDownload
RaspberryJuice v1.9.1 release 21.95 KB Jun 23, 2017 1.12 655 download RaspberryJuice RaspberryJuice v1.9.1 releaseDownload
RaspberryJuice v1.9 release 21.91 KB Jan 19, 2017 1.11 1,492 download RaspberryJuice RaspberryJuice v1.9 releaseDownload
RaspberryJuice v1.8 release 17.67 KB May 2, 2016 1.9 2,908 download RaspberryJuice RaspberryJuice v1.8 releaseDownload
RaspberryJuice v1.7 release 17.63 KB Apr 19, 2015 1.8.1 3,012 download RaspberryJuice RaspberryJuice v1.7 releaseDownload
RaspberryJuice v1.6 release 17.00 KB Jan 11, 2015 1.8 959 download RaspberryJuice RaspberryJuice v1.6 releaseDownload
Raspberry Juice v1.5 release 16.55 KB Nov 25, 2014 CB 1.7.9-R0.2 769 download RaspberryJuice Raspberry Juice v1.5 releaseDownload
RaspberryJuice v1.4.2 release 15.95 KB Nov 21, 2014 CB 1.7.9-R0.2 317 download RaspberryJuice RaspberryJuice v1.4.2 releaseDownload
RaspberryJuice v1.4 release 15.16 KB Sep 16, 2014 CB 1.6.4-R2.0 824 download RaspberryJuice RaspberryJuice v1.4 releaseDownload
RaspberryJuice v1.3 release 14.82 KB Mar 27, 2014 CB 1.6.4-R2.0 819 download RaspberryJuice RaspberryJuice v1.3 releaseDownload
RaspberryJuice v1.2 release 15.70 KB Feb 25, 2013 CB 1.4.7-R1.0 2,422 download RaspberryJuice RaspberryJuice v1.2 releaseDownload
RaspberryJuice v1.1.1 release 15.00 KB Jan 9, 2013 CB 1.4.6-R0.3 887 download RaspberryJuice RaspberryJuice v1.1.1 releaseDownload
RaspberryJuice v1.1 release 14.98 KB Jan 8, 2013 CB 1.4.6-R0.3 718 download RaspberryJuice RaspberryJuice v1.1 releaseDownload

Description

Share this:

Want to try to program with the Minecraft Pi API but with the full version of Minecraft? RaspberryJuice implements the Minecraft Pi modding API for Bukkit servers.

The plugin listens on port 4711, and accept most of the Minecraft Pi commands, which are documented at http://wiki.vg/Minecraft_Pi_Protocol .

The plugin supports the majority of the api's supplied with the Pi edition and most examples will work.

Minecraft Forums thread

 

Currently implemented commands:
world.getBlock
world.getBlockWithData
world.setBlock
world.setBlocks
world.getPlayerIds
chat.post
events.clear
events.block.hits
player.getTile
player.setTile
player.getPos
player.setPos
world.getHeight
entity.getTile
entity.setTile
entity.getPos
entity.setPos

 

Extra features(^):

getBlocks(x1,y1,z1,x2,y2,z2) has been implemented
getDirection, getRotation, getPitch functions – get the 'direction' players and entities are facing
getPlayerId(playerName) – get the entity of a player by name
pollChatPosts() – get events back for posts to the chat
 

Config (in config.yml):
– port: 4711 – the default tcp port can be changed in config.yml
– location: RELATIVE – determine whether locations are RELATIVE to the spawn point (default like pi) or ABSOLUTE

–  hitclick: RIGHT – determine whether hit events are triggered by LEFT clicks, RIGHT clicks or BOTH

 

^ to use the extra features an modded version of the java and python libraries that were originally supplied by Mojang with the Pi is required, https:github.com/zhuowei/RaspberryJuice/tree/master/src/main/resources/mcpi. You only need the modded libraries to use the extra features, the original libraries still work, you just wont be able to use the extra features

 

Example:

This Python script builds a rainbow near the spawn. Place this example in the api/python directory of the Minecraft Pi prerelease, start the server on the same computer, and run python name.py to run, replacing name.py with the actual name of the script.

import mcpi.minecraft as minecraft
import mcpi.block as block
from math import *

colors = [14, 1, 4, 5, 3, 11, 10]

mc = minecraft.Minecraft.create()
height = 60

mc.setBlocks(-64,0,0,64,height + len(colors),0,0)
for x in range(0, 128):
        for colourindex in range(0, len(colors)):
                y = sin((x / 128.0) * pi) * height + colourindex
                mc.setBlock(x - 64, y, 0, block.WOOL.id, colors[len(colors) - 1 - colourindex])

Result: http://i.imgur.com/3SFrE.png

Further examples can be found at http:www.stuffaboutcode.com/p/minecraft.html

Comments

Add a comment