You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I use mcscript watch in the terminal, after defining a variable, it tells me that the variable has already been defined, when it’s the only line of code. However, when I use mcscript compile instead, it gives me no error.
Apart from that, when I put a Boolean into an if,it doesn’t parse well the command. But when I negate it, it works correctly, here’s an example:
Mcscript code: If(ready @s){ Run say hi }
The output is: Execute if ready run say hi
when it should be: Execute if entity @s[tag=ready] run say hi. But when negated, it gives the proper unless statement
The text was updated successfully, but these errors were encountered:
When I use mcscript watch in the terminal, after defining a variable, it tells me that the variable has already been defined, when it’s the only line of code. However, when I use mcscript compile instead, it gives me no error.
Apart from that, when I put a Boolean into an if,it doesn’t parse well the command. But when I negate it, it works correctly, here’s an example:
Mcscript code:
If(ready @s){ Run say hi }
The output is:
Execute if ready run say hi
when it should be:
Execute if entity @s[tag=ready] run say hi
. But when negated, it gives the proper unless statementThe text was updated successfully, but these errors were encountered: