Skip to content

Releases: revonzev/minecraft-python-mcpy

v2.5.0

Choose a tag to compare

@revonzev revonzev released this 17 Apr 00:40

Feature: for $i in range(x,y):

for $i in range(1,4):
    say $i

Output:

say 1
say 2
say 3

v2.4.0

Choose a tag to compare

@revonzev revonzev released this 18 Mar 09:28

Feature: A way to disable auto obfuscation for scoreboard objectives #12 #13

v2.3.0

Choose a tag to compare

@revonzev revonzev released this 17 Mar 06:15

Feature: For loop

For $i in [x, y, z, ...]:
    say $i

# Compile into:
say x
say y
say z
...

v2.2.0

Choose a tag to compare

@revonzev revonzev released this 14 Mar 03:47

Feature: Reset scoreboard shorthand #9

v2.1.2

Choose a tag to compare

@revonzev revonzev released this 13 Mar 10:50

Bugfix: Set scoreboard doesn't support negative value #5

v2.1.1

Choose a tag to compare

@revonzev revonzev released this 11 Mar 09:56
1614c7a

Nested function call
Nested function call as variables

v2.1.0

Choose a tag to compare

@revonzev revonzev released this 27 Jan 05:11
b4e93b5

Added define function
Added call function

v2.0.0

Choose a tag to compare

@revonzev revonzev released this 21 Jan 00:50
91ce1e2
  • Refactor the codes
  • Auto-generate user_settings.json if it is not the latest version of the user_settings.json.
  • Multi-match can now use "," (coma) and ", " (coma space).
  • Default base path is now "./mcpy/" (where the mcpy.exe is > mcpy > your_fuction.mcpy).
  • Added nested multi-match.
  • Added score set, add, subtract, operation with self (@s) (score_name = 10).
  • Removed "//" for comments.