-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bedrock compatibility #4
Comments
just convert all the block ids to bedrock block ids. took me like 5 minutes for a small build |
Wouldn't it be nice if it were an option in the app? 😁 |
There are a few issues with Bedrock compatibility. The most obvious one is that there are blocks with different names. That actually should be too hard to solve, just keep separate list of block names for Java and Bedrock. However, there is another issue with Bedrock. While both Java and Bedrock allow using 'setblock' or 'fill' to place blocks, and both allow specifying of block properties (such as the direction that stair or other block face and other similar properties, Bedrock does now allow specifying of NBT data ( unless https://minecraft.fandom.com/wiki/Commands/setblock is wrong). This is a problem as I use the NBT data tags is a few ways, but the most important way allows me to pack multiple commands into one command block, but specifying that a falling sand block as multiple passengers ( like passengers of a boat ) each of which is a command block mine cart with its own command, that land on a powered activator rail (the last of which then deletes all the command block minecarts). There are a few other minor issues, such as different blocks being able to be waterlogged, but those would be relatively minor and the utility would be useful even if they weren't fixed. So, while I could support Bedrock, the actual use would be so tedious typing in every command (or even copy-pasting it) that I doubt that anyone would actually use it. |
Using the Horion hack client, you can get a beehive that spawns in command block minecarts with all the commands.
Bedrock edition does support .mcfunctions, you just need to bundle it in a behaviour pack. |
This would be nice, for simpler pixel art type of projects. Hope it can get implemented sometime in the future :) |
Would be neat if this were bedrock compatible.
The text was updated successfully, but these errors were encountered: