Skip to content

Commit a5d94e1

Browse files
chore: update changelogs
1 parent 3cef89f commit a5d94e1

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

changelog/2025-10/1.35.0.mdx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: 1.35.0 Changelog
3+
---
4+
5+
## Additions
6+
7+
- Updated to 1.21.9/10

changelog/2025-11/1.37.0.mdx

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
title: 1.37.0 Changelog
3+
---
4+
5+
## Additions
6+
7+
#### Added set variable action
8+
> With these you can set a decimal number to a name which can be used for other actions.
9+
> This action unlike others use the Molang expression language so instead of being provided buttons with add, sub, and set
10+
> you get to use an expression to set the variable, for example if you have a variable named`result` and you have the expression as `variable.result + 1` it will increment it by one each time its ran, but maybe you want more than just addition, you can use other variables to effect `result` for example `variable.one + variable.two`
11+
> will make it so the `result` variable will be the sum of variable `one` and `two`.
12+
13+
#### Added action requirements
14+
> With variables alone its not much, but now you can set a requirement for a plate or region.
15+
> Like the new set variable action this is also a Molang expression but instead of resolving to a number it must resolve to a true or false, you can use the variables set in the new action for the requirements.
16+
>
17+
> An example of this is if you set the requirement to `variable.result > 5` this will require to activate the plate/region the player must have a variable in their state this is greater than 5.
18+
>
19+
> You can also optionally set a requirement message or by default it will have its own, you can also disable such a message as well for more complex maps.
20+
21+
#### Added variable placeholders to chat action
22+
> You can also use the variables in chat actions as such you can do `<variable:name/>` and it will insert the variable into the chat message.
23+
> You can also use the additional arguments like `<variable:name:percent:100/>` which will format the inserted text as a percentage with the last argument `100` being what its out of.
24+
25+
> You can find out more about Molang and what you can do with it on Microsoft's documentation <https://learn.microsoft.com/en-us/minecraft/creator/documents/molang/syntax-guide>
26+
> Do note some more advanced stuff is unsupported

0 commit comments

Comments
 (0)