
Re: PatchCraft?
The licence for 1.0.0 is THE SAME as 1.1.0! Good news for us. 

I'm happy to help.
https://www.raspberrypi.org/forums/viewtopic.php?f=78&t=51794 - List of games that work on the Pi.
https://www.raspberrypi.org/forums/viewtopic.php?f=78&t=51794 - List of games that work on the Pi.
-
- Posts: 142
- Joined: Mon Dec 03, 2012 4:26 pm
- Location: Deep in the mines of Moria
Re: PatchCraft?
I must get round to decompiling it then. I don't actually know C++, but it looks like this will be the place to start (I need motivation, and what more motivation is there than being able to mod minecraft). 1st on the list - redstone.
Edit: Unfortunately my pi is currently out of action - X not responding
Edit: Unfortunately my pi is currently out of action - X not responding
Re: PatchCraft?
hehehe. why not just say the licence was in plain elvish? it would have made no difference!
I'm happy to help.
https://www.raspberrypi.org/forums/viewtopic.php?f=78&t=51794 - List of games that work on the Pi.
https://www.raspberrypi.org/forums/viewtopic.php?f=78&t=51794 - List of games that work on the Pi.
Re: PatchCraft?
Posted a new update for Hacking MCPI: The Guide! see gaming forum (it's there somewhere!)
I'm happy to help.
https://www.raspberrypi.org/forums/viewtopic.php?f=78&t=51794 - List of games that work on the Pi.
https://www.raspberrypi.org/forums/viewtopic.php?f=78&t=51794 - List of games that work on the Pi.
Re: PatchCraft?
Definetly Feed The Beast!picrafter wrote:I was playing on mcpi one day and suddenly I thought, " This game could be modded a lot". Then it came to me. Wouldn't be cool to make a kind 'tekkit' or 'FTB' equivalent for mcpi! (a heavily modded version of the game)
I've already nearly finished on the textures. I'm going to use sphax. The next stage of development is going to be making the patches. I can code, but I may need some help making the patches. The patches need to be in .mod format to work. Please feel free to leave any ideas( name maybe? ) help or anything in reply!
I'm happy to help.
https://www.raspberrypi.org/forums/viewtopic.php?f=78&t=51794 - List of games that work on the Pi.
https://www.raspberrypi.org/forums/viewtopic.php?f=78&t=51794 - List of games that work on the Pi.
Re: PatchCraft?
Hold up everyone, new patch might be coming soon; UNLOCK SURVIVAL MODE!!! WOOHOO!!!
I'm happy to help.
https://www.raspberrypi.org/forums/viewtopic.php?f=78&t=51794 - List of games that work on the Pi.
https://www.raspberrypi.org/forums/viewtopic.php?f=78&t=51794 - List of games that work on the Pi.
Re: PatchCraft?
What? Found the key?mrpi64 wrote:Hold up everyone, new patch might be coming soon; UNLOCK SURVIVAL MODE!!! WOOHOO!!!
Re: PatchCraft?
Not me, but someone lese. I have found many things to do with survival, but only suceeded in crashing mcpi. 

I'm happy to help.
https://www.raspberrypi.org/forums/viewtopic.php?f=78&t=51794 - List of games that work on the Pi.
https://www.raspberrypi.org/forums/viewtopic.php?f=78&t=51794 - List of games that work on the Pi.
-
- Posts: 142
- Joined: Mon Dec 03, 2012 4:26 pm
- Location: Deep in the mines of Moria
Re: PatchCraft?
After seeing your new guide I feel a huge session of experimenting - once my keyboard arrives. I will have... something in a few weeks. I might try a crude form of redstone using wool.
Re: PatchCraft?
Ok, I'm having a chat with BluDragon, and he says that using assembly code, we might be able to add in spaces using a hex editor. That will be very useful for connecting to non-local PE servers (AKA servers that are not connected to your internet hub)4thdwarflord wrote:After seeing your new guide I feel a huge session of experimenting - once my keyboard arrives. I will have... something in a few weeks. I might try a crude form of redstone using wool.
I'm happy to help.
https://www.raspberrypi.org/forums/viewtopic.php?f=78&t=51794 - List of games that work on the Pi.
https://www.raspberrypi.org/forums/viewtopic.php?f=78&t=51794 - List of games that work on the Pi.
Re: PatchCraft?
Bum that, when's the NEXT version of MCPI coming out? I'M WAITING, and loosing my patience, too!
I'm happy to help.
https://www.raspberrypi.org/forums/viewtopic.php?f=78&t=51794 - List of games that work on the Pi.
https://www.raspberrypi.org/forums/viewtopic.php?f=78&t=51794 - List of games that work on the Pi.
Re: PatchCraft?
PLEASE when you found the key to open survival mode tell me or pm me
-
- Posts: 142
- Joined: Mon Dec 03, 2012 4:26 pm
- Location: Deep in the mines of Moria
Re: PatchCraft?
That would be useful - the mechanics of redstone could be done with a python script (probably the easiest way), but I would want to be able to add in a few blocks and have the binary fire up the script when the world launches. Just remember not to distribute any modded binaries! And with non-local PE servers - why not a VPN?mrpi64 wrote:Ok, I'm having a chat with BluDragon, and he says that using assembly code, we might be able to add in spaces using a hex editor. That will be very useful for connecting to non-local PE servers (AKA servers that are not connected to your internet hub)
Re: PatchCraft?
Well, about the redstone thing; That would be very hard. Instead of 'mdistributing' modded binaries, we could create an executable file that 'automatically' mods in the right places!
I'm happy to help.
https://www.raspberrypi.org/forums/viewtopic.php?f=78&t=51794 - List of games that work on the Pi.
https://www.raspberrypi.org/forums/viewtopic.php?f=78&t=51794 - List of games that work on the Pi.
Re: PatchCraft?
redstone logic: every redstone block corresponds with an object containing a bool for on/off and 4 pointers, one for each possible attached redstone wire. it would also have a method (or function) to change its state and call the same function for all the attached wires. could also have a parameter for signal it could decrement every time so you have distance limits like in the PC version. repeaters would be the same, but with only one out put, wait for a sec in the function, and increase the signal var.
pseudo code:
pseudo code:
Code: Select all
class redstone_wire():
bool on;
array_of_pointers(1 to 4);
int change_value(signal, value);
{
if value == false;
{
on = false
for i in array_of_pointers():
{
current_pointer.change_value(0, false)
}
}
else:
{
on = true
signal = signal - 1
if signal >= 1:
{
for i in array_of_pointers:
{
current_pointer.change_value(signal, true)
}
}
}
}
function for repeaters
int change_value(value)
{
on = value
output.change_value(15, value) //the pointer to a repeaters one output, 15 is for the signal because repeaters boost signals.
}
Re: PatchCraft?
I guess that torches or snow covers would do for wires.
I'm happy to help.
https://www.raspberrypi.org/forums/viewtopic.php?f=78&t=51794 - List of games that work on the Pi.
https://www.raspberrypi.org/forums/viewtopic.php?f=78&t=51794 - List of games that work on the Pi.
-
- Posts: 3
- Joined: Thu Oct 31, 2013 9:44 am
Re: PatchCraft?
Id love to help, this sounds great. Not to be dumb but ive edited the hex. How do i then make it so people don't have the edit the hex. The installer changes it for them?
-
- Posts: 3
- Joined: Thu Oct 31, 2013 9:44 am
Re: PatchCraft?
I'd be happy to help you if needed. However does anyone know how to make a program that adds in the changes make in the hex editor. So if I changed something in the hex editor I could get people to download a patch or program that would change it on their version of mcpi?
-
- Posts: 142
- Joined: Mon Dec 03, 2012 4:26 pm
- Location: Deep in the mines of Moria
Re: PatchCraft?
Over on the minecraft.net forums that had a tool for 1.0.0 (the leaked version) that did exactly that.
-
- Posts: 3
- Joined: Thu Oct 31, 2013 9:44 am
Re: PatchCraft?
right ok ill take a look
Re: PatchCraft?
Put up a link please once you have found what you are looking for
I'm happy to help.
https://www.raspberrypi.org/forums/viewtopic.php?f=78&t=51794 - List of games that work on the Pi.
https://www.raspberrypi.org/forums/viewtopic.php?f=78&t=51794 - List of games that work on the Pi.
-
- Posts: 142
- Joined: Mon Dec 03, 2012 4:26 pm
- Location: Deep in the mines of Moria
Re: PatchCraft?
Bsdiff and PTPatch is what I had found, the ones used in the Survival patch!
SurvivalMode
I put up a post for Survival Mode.
I'm happy to help.
https://www.raspberrypi.org/forums/viewtopic.php?f=78&t=51794 - List of games that work on the Pi.
https://www.raspberrypi.org/forums/viewtopic.php?f=78&t=51794 - List of games that work on the Pi.
-
- Posts: 1
- Joined: Thu Aug 07, 2014 4:06 am
Re: PatchCraft?
Can you try to find a version of Minecraft pi that is just redstone: dust, torch, and repeater plus all of the wool blocks so I can build a computer in Minecraft pi? And I would like it to be super flat and a little bigger world. Or maybe explain the steps it would take to do this?
Re: PatchCraft?
Well, I'm afraid that the only possible thing of the above to do is a superflat world - look up some Python+MCPI tutorials, then you can find out how to loop, and therefore loop over the different layers that you may want.
Also, you could try finding a Minecraft Pocket Edition superflat world - try the MCPE maps+modding forum on the official Minecraft forums.
Also, you could try finding a Minecraft Pocket Edition superflat world - try the MCPE maps+modding forum on the official Minecraft forums.
I'm happy to help.
https://www.raspberrypi.org/forums/viewtopic.php?f=78&t=51794 - List of games that work on the Pi.
https://www.raspberrypi.org/forums/viewtopic.php?f=78&t=51794 - List of games that work on the Pi.