Posted 25 September 2017 - 08:38 AM
I always was frustrated when I coded with the MC commands, because they are so difficult to program with. First, they were only commands that were two words long, and then they started to add (BAD) syntax for more complex code.
Would you like the MC command syntax replaced with lua syntax?
Here is a code snippet of how a command would look like:
MC syntax:
Why do you like the old syntax/prefer the lua syntax? What would you like to have as MC command syntax?
Would you like the MC command syntax replaced with lua syntax?
Here is a code snippet of how a command would look like:
MC syntax:
time set day
LUA syntax:
time.set(day)
-- day is a variable
time.set(1000)
-- time needs a number
say word
time set 1000
command argument argument […]
would mean
say(word)
time.set(1000)
command.argument(argument)
If the command requires more then one argument it change does that automaticallyWhy do you like the old syntax/prefer the lua syntax? What would you like to have as MC command syntax?
Edited on 27 September 2017 - 04:51 AM