All Projects → M4GNV5 → Mooncraft

M4GNV5 / Mooncraft

Licence: other
Lua to Commandblock compiler

Programming Languages

javascript
184084 projects - #8 most used programming language
lua
6591 projects
language
365 projects

Projects that are alternatives of or similar to Mooncraft

Mcscript
A programming language for Minecraft Vanilla
Stars: ✭ 124 (+275.76%)
Mutual labels:  compiler, minecraft
Command Block Assembly
Compile high-level code into Minecraft commands
Stars: ✭ 175 (+430.3%)
Mutual labels:  compiler, minecraft
Langcraft
Compiler from LLVM IR to Minecraft datapacks.
Stars: ✭ 495 (+1400%)
Mutual labels:  compiler, minecraft
Asl
Arma Scripting Language - a clean scripting language compiling to Arma 3 SQF scripts.
Stars: ✭ 20 (-39.39%)
Mutual labels:  compiler
Emc
The EMC Framework (Easy Minecraft Client) - An easy to use Minecraft modding framework
Stars: ✭ 21 (-36.36%)
Mutual labels:  minecraft
Powernbt
Minecraft PowerNBT plugin
Stars: ✭ 29 (-12.12%)
Mutual labels:  minecraft
Unlisp Llvm
Compiler for a toy Lisp language
Stars: ✭ 33 (+0%)
Mutual labels:  compiler
Zenscript Highlighter
Sublime Text highlighting for ZenScript used in MineTweaker, CraftTweaker and ModTweaker
Stars: ✭ 15 (-54.55%)
Mutual labels:  minecraft
Essentials
The essential plugin suite for Minecraft servers.
Stars: ✭ 957 (+2800%)
Mutual labels:  minecraft
Wasp
A programming language that understands what a web app is.
Stars: ✭ 940 (+2748.48%)
Mutual labels:  compiler
Feedthebeast Docker Servers
FTB Minecraft servers dockerized
Stars: ✭ 27 (-18.18%)
Mutual labels:  minecraft
Transport Pipes
Buildcraft without mods!
Stars: ✭ 21 (-36.36%)
Mutual labels:  minecraft
Unifiedmetrics
Fully-featured metrics collection agent for Minecraft servers. Supports Prometheus and InfluxDB. Dashboard included out-of-box.
Stars: ✭ 29 (-12.12%)
Mutual labels:  minecraft
Factory Rise
Factory Rise is a 2D sandbox game, focused on building, developing industries and handling resources. The game is based on Oxygen Not Included, Terraria, Factorio and some Minecraft mods (EnderIO, Industrial Craft, BuildCraft, GregTech and Thermal Expansion), it also have a game progress similar to StarBound.
Stars: ✭ 21 (-36.36%)
Mutual labels:  minecraft
Mineflayer Statemachine
A state machine plugin for Mineflayer to aid in designing more complex behavior trees.
Stars: ✭ 32 (-3.03%)
Mutual labels:  minecraft
Realistictorches
A Minecraft mod that increases the difficulty of the early game by adding realism mechanics to torches.
Stars: ✭ 15 (-54.55%)
Mutual labels:  minecraft
Holovid
Stream videos from websites, all in-game!
Stars: ✭ 31 (-6.06%)
Mutual labels:  minecraft
Sml Compiler
A compiler for Standard ML, somewhat
Stars: ✭ 22 (-33.33%)
Mutual labels:  compiler
Blur
Minecraft Game Engine written in Java & Kotlin
Stars: ✭ 21 (-36.36%)
Mutual labels:  minecraft
Write A Programming Language
How to make a new language(and why we shouldn't?)
Stars: ✭ 29 (-12.12%)
Mutual labels:  compiler

#MoonCraft Lua to commandblock compiler ###Try it in your browser

##Example

import("chat")

radius = 1
pi = 3.14

tellraw("Circle circumference and area for radius 1 to 19")
for radius = 1, 19 do
    area = pi * radius * radius
    circumference = pi * 2 * radius

    tellraw("r = ", radius, " C = ", circumference, " A = ", area)
end

screenshot

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].