
Minecraft 服务端插件
CalcMod
A calculator in your chat with shortcuts designed for Minecraft
- 版本范围
- 1.12.2–26.2
- 下载量
- 280.1 万
插件介绍
Bring the power of calculation to your Minecraft chat with CalcMod! Enjoy features from simple calculations to advanced tools for optimizing gameplay.
| /calc 3+(28/8)^2 |
|---|
| /calc craft piston 3 sb |
|---|
| /calc nether ~ ~ ~ |
|---|
🔄 Compatibility
CalcMod supports Fabric, Forge, Quilt, Paper, and NeoForge mod loaders, down to Minecraft version 1.12.
CalcMod can be installed on both the client and server, and also works on clients without requiring servers to have the mod (and vice versa.)
✅ Features:
See a few examples in gallery
An intuitive calculator with some handy variables. To see a list of variables run /calc variables.
| Symbol(s) | Syntax | Operation |
|---|---|---|
| + | a+b | Addition |
| – | a–b | Subtraction |
| * , × , ∙ | a*b | Multiplication |
| / , : , ÷ | a/b | Division |
| ^ | a^b | Exponentiation (power) |
| ! | n! | Factorial |
| # | a#b | Modulo |
| % | x% | Percentage |
| ^^ | a^^b | Tetration |
| √ | √x | Square root |
| ∛ | ∛x | Cube root |
| ∜ | ∜x | Fourth root |
CalcMod has some more advanced functions and variables that can be used within expressions in this spreadsheet.
Usage:
/calc <expression>
When given a rate of items per hour (expressions allowed), returns the minimum number of item sorters needed to sort in time.
Additional input for multiple times hopper speed sorters, and a separate command for Allay based non stackable sorters.
Usage:
/calc storage <itemsPerHour>
Usage:/calc storage <timesHopperSpeed> <numberOfItems>
Usage:/calc allaystorage <itemsPerHour>
When given an amount of a recipe to craft (expressions allowed), returns all the items required to craft that quantity of the recipe.
(CalcMod 1.3.2+) The optional depth argument specifies how many levels of recursive crafting to perform on the recipe. Default depth is 1.
Usage:
/calc craft <item> <amount>
Usage:/calc craft <item> <depth> <amount>
(New!) When the craftinv command is given an item, it returns the maximum number of that item the player can craft using their current inventory (including items in shulker boxes).
Usage:
/calc craftinv <item>
(Minecraft 1.21.3+) Due to Minecraft's crafting system updates, CalcMod's craft command can now only use recipes unlocked in the user's recipe book in single player mode.
When given a block position, returns the dimension in the command's corresponding coordinates. If no coordinates are given, command assumes current player position.
Usage:
/calc nether <x> <y> <z>
Usage:/calc overworld <x> <y> <z>
When given an amount of items and a farm run time in seconds (expressions allowed), returns the items per hour of the farm.
Usage:
/calc rates <numberOfItems> <seconds>
When given a maximum and/or minimum value, returns a random number between those values (inclusive). If just a maximum value is entered, picks a random number from 0 to the max value (inclusive).
Usage:
/calc random <max>
Usage:/calc random minmax <min> <max>
When given a container and a desired comparator power level (expressions allowed), returns the number of items needed to achieve that power level.
Usage:
/calc signaltoitems <container> <powerLevel>
Calculates the average number of gold ingots needed to barter for a specific quantity of a desired item (togold), or the average number of a desired item received when bartering a specific number of gold ingots (toitem).
Usage:
/calc barter togold <numberOfItems> <item>
Usage:/calc barter toitem <amountOfGold> <item>
When given two block positions, returns the distance between them. If only one position is given, uses player's location. The 3D mode provides distance including height (y coord).
Usage:
/calc dist <x1> <y1> <z1>
Usage:/calc dist <x1> <y1> <z1> <x2> <y2> <z2>
Usage:/calc dist 3d <x1> <y1> <z1>
Usage:/calc dist 3d <x1> <y1> <z1> <x2> <y2> <z2>
Custom functions are reusable commands that perform a specific computation. Custom functions can be run in any number field formatted with the function name and its parameters in parentheses functionName(<param1>, ...,<paramN>).
Creating a Function:
Custom functions can have any number of parameters, specified in [square] brackets when adding a function.
| ⚠️ Using any numbers, special characters, or variables in a parameter may result in a broken function. |
|---|
e.g. /calc custom add blockstoingots [numBlocks]*9
| /calc blockstoingots(72) |
|---|
![]() |
Usage:
/calc custom add <functionName> <function>
Usage:/calc custom run <functionName> <input>
Usage:/calc <functionName>(<parameters>)
Usage:/calc custom list
Usage:/calc custom remove <functionName>
➡️ Converters:
When given an amount of full shulker boxes (expressions allowed), returns the number of items they contain, or vice versa.
Usage:
/calc itemtosb <numberOfItems>
Usage:/calc sbtoitem <numberOfSbs>
When given an amount of stacks (expressions allowed), returns the number of items in those stacks, or vice versa.
Usage:
/calc itemtostack <numberOfItems>
Usage:/calc stacktoitem <numberOfStacks>
When given a time in seconds (expressions allowed) returns the number of items to put in a hopper clock to achieve that time.
Uses formula and hopper clock from hoppertimer.net.

Usage:
/calc secondstohopperclock <seconds>
When given a time in seconds (expressions allowed), returns the number of repeaters and their delays to achieve that time.
Usage:
/calc secondstorepeater <seconds>
❎ Variables
Variables can be used inside commands in any number field. They act as shortcuts instead of having to remember that "a double chest full of 16 stackable items is 864." If no stack size is given, variables default to the contextualized stack size in each command.
| Name | Value |
|---|---|
| dub | 3456 (default) |
| dub64 | 3456 |
| dub16 | 864 |
| dub1 | 54 |
| sb | 1728 (default) |
| sb64 | 1728 |
| sb16 | 432 |
| sb1 | 27 |
| stack | 64 (default) |
| stack64 | 64 |
| stack16 | 16 |
| stack1 | 1 |
| min | 60 |
| h | 3600 |
There are some extra less Minecraft specific variables listed in this spreadsheet
| Name | Value |
|---|---|
| x | player x coord |
| y | player y coord |
| z | player z coord |
| health | player health |
| Symbol(s) | Syntax | Operation |
|---|---|---|
| + | a+b | Addition |
| – | a–b | Subtraction |
| * , × , ∙ | a*b | Multiplication |
| / , : , ÷ | a/b | Division |
| ^ | a^b | Exponentiation (power) |
| ! | n! | Factorial |
| # | a#b | Modulo |
| % | x% | Percentage |
| ^^ | a^^b | Tetration |
| √ | √x | Square root |
| ∛ | ∛x | Cube root |
| ∜ | ∜x | Fourth root |
CalcMod has some more advanced functions and variables that can be used within expressions in this spreadsheet.
Usage:
/calc <expression>
When given a rate of items per hour (expressions allowed), returns the minimum number of item sorters needed to sort in time.
Additional input for multiple times hopper speed sorters, and a separate command for Allay based non stackable sorters.
Usage:
/calc storage <itemsPerHour>
Usage:/calc storage <timesHopperSpeed> <numberOfItems>
Usage:/calc allaystorage <itemsPerHour>
When given an amount of a recipe to craft (expressions allowed), returns all the items required to craft that quantity of the recipe.
(CalcMod 1.3.2+) The optional depth argument specifies how many levels of recursive crafting to perform on the recipe. Default depth is 1.
(Minecraft 1.21.3+) Due to Minecraft's crafting system updates, CalcMod's craft command can now only use recipes unlocked in the user's recipe book in single player mode.
Usage:
/calc craft <item> <amount>
Usage:/calc craft <item> <depth> <amount>
When given a block position, returns the dimension in the command's corresponding coordinates. If no coordinates are given, command assumes current player position.
Usage:
/calc nether <x> <y> <z>
Usage:/calc overworld <x> <y> <z>
When given an amount of items and a farm run time in seconds (expressions allowed), returns the items per hour of the farm.
Usage:
/calc rates <numberOfItems> <seconds>
When given a maximum and/or minimum value, returns a random number between those values (inclusive). If just a maximum value is entered, picks a random number from 0 to the max value (inclusive).
Usage:
/calc random <max>
Usage:/calc random minmax <min> <max>
When given a container and a desired comparator power level (expressions allowed), returns the number of items needed to achieve that power level.
Usage:
/calc signaltoitems <container> <powerLevel>
Calculates the average number of gold ingots needed to barter for a specific quantity of a desired item (togold), or the average number of a desired item received when bartering a specific number of gold ingots (toitem).
Usage:
/calc barter togold <numberOfItems> <item>
Usage:/calc barter toitem <amountOfGold> <item>
When given two block positions, returns the distance between them. If only one position is given, uses player's location. The 3D mode provides distance including height (y coord).
Usage:
/calc dist <x1> <y1> <z1>
Usage:/calc dist <x1> <y1> <z1> <x2> <y2> <z2>
Usage:/calc dist 3d <x1> <y1> <z1>
Usage:/calc dist 3d <x1> <y1> <z1> <x2> <y2> <z2>
Custom functions are reusable commands that perform a specific computation. Custom functions can be run in any number field formatted with the function name and its parameters in parentheses functionName(<param1>, ...,<paramN>).
Creating a Function:
Custom functions can have any number of parameters, specified in [square] brackets when adding a function.
| ⚠️ Using any numbers, special characters, or variables in a parameter may result in a broken function. |
|---|
e.g. /calc custom add blockstoingots [numBlocks]*9
| /calc blockstoingots(72) |
|---|
![]() |
Usage:
/calc custom add <functionName> <function>
Usage:/calc custom run <functionName> <input>
Usage:/calc <functionName>(<parameters>)
Usage:/calc custom list
Usage:/calc custom remove <functionName>
➡️ Converters:
When given an amount of full shulker boxes (expressions allowed), returns the number of items they contain, or vice versa.
Usage:
/calc itemtosb <numberOfItems>
Usage:/calc sbtoitem <numberOfSbs>
When given an amount of stacks (expressions allowed), returns the number of items in those stacks, or vice versa.
Usage:
/calc itemtostack <numberOfItems>
Usage:/calc stacktoitem <numberOfStacks>
When given a time in seconds (expressions allowed) returns the number of items to put in a hopper clock to achieve that time.
Uses formula and hopper clock from hoppertimer.net.

Usage:
/calc secondstohopperclock <seconds>
When given a time in seconds (expressions allowed), returns the number of repeaters and their delays to achieve that time.
Usage:
/calc secondstorepeater <seconds>
❎ Variables
Variables can be used inside commands in any number field. They act as shortcuts instead of having to remember that "a double chest full of 16 stackable items is 864." If no stack size is given, variables default to the contextualized stack size in each command.
| Name | Value |
|---|---|
| dub | 3456 (default) |
| dub64 | 3456 |
| dub16 | 864 |
| dub1 | 54 |
| sb | 1728 (default) |
| sb64 | 1728 |
| sb16 | 432 |
| sb1 | 27 |
| stack | 64 (default) |
| stack64 | 64 |
| stack16 | 16 |
| stack1 | 1 |
| min | 60 |
| h | 3600 |
There are some extra less Minecraft specific variables listed in this spreadsheet
| Name | Value |
|---|---|
| x | player x coord |
| y | player y coord |
| z | player z coord |
| health | player health |
展示图集








版本与下载
推荐下载
calcmod-1.4.3+fabric.1.21.9.jar版本 1.4.3+fabric.1.21.9+ · 615.1 KBSHA-1 a55ae2911cb9c4c56b466e47867ad615a743437a下载 calcmod-1.4.3+fabric.1.21.9.jar1.5.2+neoforge.26.2
正式版- 加载器
- neoforge
- MC 版本
- 26.2
SHA-1 5f1a8d7671988ba7de3ecb8caea0e32f82994570获取文件 calcmod-1.5.2+neoforge.26.2.jar展开更新日志
- Updated to Neoforge 26.2!
1.5.2+forge.26.2
正式版- 加载器
- forge
- MC 版本
- 26.2
SHA-1 c73bad3bee6a754717bba74ea560ebf75a14cbbb获取文件 calcmod-1.5.2+forge.26.2.jar展开更新日志
- Updated to Forge 26.2
1.5.2+fabric.26.2
正式版- 加载器
- fabric · quilt
- MC 版本
- 26.2
SHA-1 17e89ccdf999cafc420b726d94ef23377f4c6eb7获取文件 calcmod-1.5.2+fabric.26.2.jar展开更新日志
-Updated to 26.2
- Other loaders coming soon!
1.5.1+paper.26.1
正式版- 加载器
- paper
- MC 版本
- 26.1 · 26.1.1 · 26.1.2
SHA-1 085d4ab2010e233fcdc73d1a750ad820270c6bb0获取文件 calcmod-1.5.1+paper.26.1.2.jar展开更新日志
Updated to Minecraft 26.1
1.5.1+neoforge.26.1
正式版- 加载器
- neoforge
- MC 版本
- 26.1 · 26.1.1 · 26.1.2
SHA-1 07ce06f438b8e2c13fe9209f32daa7ccfa1e2659获取文件 calcmod-1.5.1+neoforge.26.1.2.jar展开更新日志
- Ported to Neoforge
1.5.1+forge.26.1
正式版- 加载器
- forge
- MC 版本
- 26.1.2
SHA-1 54fa22d1d7ca5f6814f17edbd439439535f10ab6获取文件 calcmod-1.5.1+forge.26.1.2.jar展开更新日志
- Updated to 26.1.2
1.5.1+fabric.26.1
正式版- 加载器
- fabric · quilt
- MC 版本
- 26.1 · 26.1.1 · 26.1.2
SHA-1 ebfec708de0d1a801a1f0d4039d0a5c3b7f1a880获取文件 calcmod-1.5.1+fabric.26.1.jar展开更新日志
- Fixes server crash on launch.
1.5.0+fabric.26.1
正式版- 加载器
- fabric
- MC 版本
- 26.1 · 26.1.1 · 26.1.2
SHA-1 b6ff4bb555368d526767093a3f3acb9a775c49f3获取文件 calcmod-1.5.0+fabric.26.1.jar展开更新日志
- Updated to 26.1
1.5.0+paper.1.21.9+
正式版- 加载器
- paper
- MC 版本
- 1.21.9 · 1.21.10 · 1.21.11
SHA-1 e434ca2d0ca88e49ebdca4b436da027dc488f0ed获取文件 calcmod-1.5.0+paper.1.21.10.jar展开更新日志
- Added craftinv command - tells how many of a given item you can craft with whats in your inventory.
- Fixed a glitch that allowed recursive custom functions.
1.5.0+fabric.1.21.9+
正式版- 加载器
- fabric · quilt
- MC 版本
- 1.21.9 · 1.21.10 · 1.21.11
SHA-1 d31bfe779e5069a7c28b1d4b020566352f2bf6d8获取文件 calcmod-1.5.0+fabric.1.21.9.jar展开更新日志
- Added craftinv command - tells how many of a given item you can craft with whats in your inventory.
- Fixed a glitch that allowed recursive custom functions.
1.4.3
正式版- 加载器
- paper
- MC 版本
- 1.21.9 · 1.21.10
SHA-1 0463b2e0538c3f8ab66fc42078b28d4e9bb36b94获取文件 calcmod-1.4.3+paper.1.21.10.jar展开更新日志
- Updated to 1.21.9 & 1.21.10.
- Fixed issues with Craft.
1.4.3+fabric.1.21.9+
正式版推荐- 加载器
- fabric
- MC 版本
- 1.21.9 · 1.21.10 · 1.21.11
SHA-1 a55ae2911cb9c4c56b466e47867ad615a743437a获取文件 calcmod-1.4.3+fabric.1.21.9.jar展开更新日志
- Updated to 1.21.9 & 1.21.10.
- Fixed issues with crafting.
1.4.2
正式版- 加载器
- forge
- MC 版本
- 1.21.6
SHA-1 1d8bac4ff936dc1d8ca44cb26673d84be8722779获取文件 calcmod-1.4.2+forge.1.21.6.jar展开更新日志
Ported to Forge 1.21.6
1.4.2+fabric.1.21.6-1.21.8
正式版推荐- 加载器
- fabric · quilt
- MC 版本
- 1.21.6 · 1.21.7 · 1.21.8
SHA-1 ec9dbf64ece5cbb097b5faa1b2d3c471a3f3e75a获取文件 calcmod-1.4.2+fabric.1.21.6.jar展开更新日志
Updated to 1.21.6
1.4.2
正式版- 加载器
- paper
- MC 版本
- 1.21.5 · 1.21.6 · 1.21.7
SHA-1 d228501d4cc9a7f0d4106139f9bcaf2f63816e87获取文件 calcmod-1.4.2+paper.1.21.5.jar展开更新日志
Ported to Paper 1.21.5
1.4.2
正式版- 加载器
- forge
- MC 版本
- 1.21.5
SHA-1 d06d8aa91f5820c69e14afa5350a3c60f8b3ddb9获取文件 calcmod-1.4.2+forge.1.21.5.jar展开更新日志
Ported to Forge 1.21.5
1.4.2
正式版- 加载器
- forge
- MC 版本
- 1.21.4
SHA-1 9bc5ffffe18c8374d0806fbfc7b093e793615578获取文件 calcmod-1.4.2+forge.1.21.4.jar展开更新日志
Ported to Forge 1.21.4
1.4.2+fabric.1.21.5
正式版推荐- 加载器
- fabric · quilt
- MC 版本
- 1.21.5
SHA-1 f4d0f8f6bb70fe12d7a3ff0d981959e27d5fba0d获取文件 calcmod-1.4.2+fabric.1.21.5.jar展开更新日志
Fixed an issue where recipes showed wrong variant.
1.4.1+fabric.1.21.5
正式版推荐- 加载器
- fabric · quilt
- MC 版本
- 1.21.5
SHA-1 4e6261723fbaa9870b68a1ab5823b111147a01f1获取文件 calcmod-1.4.1+fabric.1.21.5.jar展开更新日志
- Updated to 1.21.5
- Added Distance Command
- Updated Help Menu
- Fixed issue with Craft
- Fixed issue with Custom Functions
1.3.3+fabric.1.21.3-1.21.4
正式版推荐- 加载器
- fabric · quilt
- MC 版本
- 1.21.3 · 1.21.4
SHA-1 caca7599fe540873fa7eb98c6c2440f0d75789b4获取文件 calcmod-1.3.3+fabric.1.21.4.jar展开更新日志
Updated to 1.20.3 and 1.20.4
Due to Minecraft's crafting system updates, CalcMod's craft command can now only use recipes unlocked in the user's recipe book in single player mode.
1.3.2+fabric.1.21.1-1.21.2
正式版- 加载器
- fabric · quilt
- MC 版本
- 1.21 · 1.21.1 · 1.21.2
SHA-1 b7c173e3b9bee5fb76f8d3d8f8d2a2bbdae24442获取文件 calcmod-1.3.2+fabric.1.21.jar展开更新日志
- Updated to 1.21.
1.3.2-beta+fabric.1.20.6
测试版- 加载器
- fabric
- MC 版本
- 1.20.6
SHA-1 a29ef8f4688b3d578e2f92e84930d263900379c8获取文件 calcmod-1.3.2-beta+fabric.1.20.6.jar展开更新日志
- Fixed compatability with Client Commands
- Fixed versioning scheming
- Added depth argument to crafting command to get ingredients of base resources.
fabric-1.20.2-1.3.1
正式版- 加载器
- fabric · quilt
- MC 版本
- 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5
SHA-1 0516e50f63839e045445254cc3f0413f267374c3获取文件 calcmod-fabric-1.20.2-1.3.1.jar展开更新日志
- Fixed /calc craft command
- Made mod 0.00350273797% smaller
1.3.0
正式版- 加载器
- forge
- MC 版本
- 1.12.2
SHA-1 55bc101926cbe31af144942e47245ed84332b62e获取文件 calcmod-forge-1.12.2-1.3.0.jar展开更新日志
- Added ability to create and run custom functions
- Added Piglin bartering utils
- Added x, y, z coordinate variables
- Added player health variable
- Ported to Forge mod loader
- Backported to all major Forge and Fabric versions
- Crafting feature supports custom recipe datapacks
- Changed responses to be more user friendly
1.3.0
正式版- 加载器
- forge
- MC 版本
- 1.13 · 1.13.1 · 1.13.2
SHA-1 913e400882fd48ee9b4d5074c88c1764b5fb0a2d获取文件 calcmod-forge-1.13.2-1.3.0.jar展开更新日志
- Added ability to create and run custom functions
- Added Piglin bartering utils
- Added x, y, z coordinate variables
- Added player health variable
- Ported to Forge mod loader
- Backported to all major Forge and Fabric versions
- Crafting feature supports custom recipe datapacks
- Changed responses to be more user friendly
1.3.0
正式版- 加载器
- forge
- MC 版本
- 1.14 · 1.14.1 · 1.14.2 · 1.14.3 · 1.14.4
SHA-1 b5c1e763f1f7e5a06861c2db5b5d24c04dffe4a5获取文件 calcmod-forge-1.14.4-1.3.0.jar展开更新日志
- Added ability to create and run custom functions
- Added Piglin bartering utils
- Added x, y, z coordinate variables
- Added player health variable
- Ported to Forge mod loader
- Backported to all major Forge and Fabric versions
- Crafting feature supports custom recipe datapacks
- Changed responses to be more user friendly
1.3.0
正式版- 加载器
- forge
- MC 版本
- 1.15 · 1.15.1 · 1.15.2
SHA-1 1a80cdff2bf9e7a86a7cf16d55f1034dd9eee0d5获取文件 calcmod-forge-1.15.2-1.3.0.jar展开更新日志
- Added ability to create and run custom functions
- Added Piglin bartering utils
- Added x, y, z coordinate variables
- Added player health variable
- Ported to Forge mod loader
- Backported to all major Forge and Fabric versions
- Crafting feature supports custom recipe datapacks
- Changed responses to be more user friendly
1.3.0
正式版- 加载器
- forge
- MC 版本
- 1.16 · 1.16.1 · 1.16.2 · 1.16.3 · 1.16.4 · 1.16.5
SHA-1 2979d26f5974f9a9586023d2ed01890e47789cab获取文件 calcmod-forge-1.16.5-1.3.0.jar展开更新日志
- Added ability to create and run custom functions
- Added Piglin bartering utils
- Added x, y, z coordinate variables
- Added player health variable
- Ported to Forge mod loader
- Backported to all major Forge and Fabric versions
- Crafting feature supports custom recipe datapacks
- Changed responses to be more user friendly
1.3.0
正式版- 加载器
- forge
- MC 版本
- 1.17 · 1.17.1
SHA-1 ce039ccbf8d88f7fce19135375ca6a715f20c8d5获取文件 calcmod-forge-1.17.1-1.3.0.jar展开更新日志
- Added ability to create and run custom functions
- Added Piglin bartering utils
- Added x, y, z coordinate variables
- Added player health variable
- Ported to Forge mod loader
- Backported to all major Forge and Fabric versions
- Crafting feature supports custom recipe datapacks
- Changed responses to be more user friendly
1.3.0
正式版- 加载器
- forge
- MC 版本
- 1.18 · 1.18.1 · 1.18.2
SHA-1 059388f04184ef8ac15454ecfc942790b5855c16获取文件 calcmod-forge-1.18.2-1.3.0.jar展开更新日志
- Added ability to create and run custom functions
- Added Piglin bartering utils
- Added x, y, z coordinate variables
- Added player health variable
- Ported to Forge mod loader
- Backported to all major Forge and Fabric versions
- Crafting feature supports custom recipe datapacks
- Changed responses to be more user friendly
1.3.0
正式版- 加载器
- forge
- MC 版本
- 1.19 · 1.19.1 · 1.19.3 · 1.19.4
SHA-1 6115362e96a3202b7570a9f87a2d5f0966ccf769获取文件 calcmod-forge-1.19.4-1.3.0.jar展开更新日志
- Added ability to create and run custom functions
- Added Piglin bartering utils
- Added x, y, z coordinate variables
- Added player health variable
- Ported to Forge mod loader
- Backported to all major Forge and Fabric versions
- Crafting feature supports custom recipe datapacks
- Changed responses to be more user friendly
1.3.0
正式版推荐- 加载器
- forge
- MC 版本
- 1.20 · 1.20.1 · 1.20.2 · 1.20.3 · 1.20.4 · 1.20.5 · 1.20.6
SHA-1 2a8a3d7678573fed1bf3296f42e9cadd36e6178d获取文件 calcmod-forge-1.20.1-1.3.0.jar展开更新日志
- Added ability to create and run custom functions
- Added Piglin bartering utils
- Added x, y, z coordinate variables
- Added player health variable
- Ported to Forge mod loader
- Backported to all major Forge and Fabric versions
- Crafting feature supports custom recipe datapacks
- Changed responses to be more user friendly
fabric-1.14.4-1.3.0
正式版- 加载器
- fabric
- MC 版本
- 1.14 · 1.14.1 · 1.14.2 · 1.14.3 · 1.14.4
SHA-1 a6f530e9bbd7214d38433fdd37dd1bbd99669a79获取文件 calcmod-fabric-1.14.4-1.3.0.jar展开更新日志
- Added ability to create and run custom functions
- Added Piglin bartering utils
- Added x, y, z coordinate variables
- Added player health variable
- Ported to Forge mod loader
- Backported to all major Forge and Fabric versions
- Crafting feature supports custom recipe datapacks
- Changed responses to be more user friendly
fabric-1.15.2-1.3.0
正式版- 加载器
- fabric
- MC 版本
- 1.15 · 1.15.1 · 1.15.2
SHA-1 d06cbd9226e23e082c6eda2d38e83c25022a1ee0获取文件 calcmod-fabric-1.15.2-1.3.0.jar展开更新日志
- Added ability to create and run custom functions
- Added Piglin bartering utils
- Added x, y, z coordinate variables
- Added player health variable
- Ported to Forge mod loader
- Backported to all major Forge and Fabric versions
- Crafting feature supports custom recipe datapacks
- Changed responses to be more user friendly
fabric-1.16.5-1.3.0
正式版- 加载器
- fabric
- MC 版本
- 1.16 · 1.16.1 · 1.16.2 · 1.16.3 · 1.16.4 · 1.16.5
SHA-1 f8069d08195cfbe8aec0db827d1f0bd55bea9f43获取文件 calcmod-fabric-1.16.5-1.3.0.jar展开更新日志
- Added ability to create and run custom functions
- Added Piglin bartering utils
- Added x, y, z coordinate variables
- Added player health variable
- Ported to Forge mod loader
- Backported to all major Forge and Fabric versions
- Crafting feature supports custom recipe datapacks
- Changed responses to be more user friendly
fabric-1.17.1-1.3.0
正式版- 加载器
- fabric
- MC 版本
- 1.17 · 1.17.1
SHA-1 746cf27bb03926d34d876c4ae69260e1a25b4bcb获取文件 calcmod-fabric-1.17.1-1.3.0.jar展开更新日志
- Added ability to create and run custom functions
- Added Piglin bartering utils
- Added x, y, z coordinate variables
- Added player health variable
- Ported to Forge mod loader
- Backported to all major Forge and Fabric versions
- Crafting feature supports custom recipe datapacks
- Changed responses to be more user friendly
fabric-1.18.2-1.3.0
正式版- 加载器
- fabric
- MC 版本
- 1.18 · 1.18.1 · 1.18.2
SHA-1 49f4173bd1f2627a52e55f29d369b3cd77d93beb获取文件 calcmod-fabric-1.18.2-1.3.0.jar展开更新日志
- Added ability to create and run custom functions
- Added Piglin bartering utils
- Added x, y, z coordinate variables
- Added player health variable
- Ported to Forge mod loader
- Backported to all major Forge and Fabric versions
- Crafting feature supports custom recipe datapacks
- Changed responses to be more user friendly
fabric-1.19.2-1.3.0
正式版- 加载器
- fabric
- MC 版本
- 1.19 · 1.19.1 · 1.19.2
SHA-1 0775894cb9bc0e7ef39015f14ca25bddcda264f5获取文件 calcmod-fabric-1.19.2-1.3.0.jar展开更新日志
- Added ability to create and run custom functions
- Added Piglin bartering utils
- Added x, y, z coordinate variables
- Added player health variable
- Ported to Forge mod loader
- Backported to all major Forge and Fabric versions
- Crafting feature supports custom recipe datapacks
- Changed responses to be more user friendly
fabric-1.19.4-1.3.0
正式版- 加载器
- fabric · quilt
- MC 版本
- 1.19.3 · 1.19.4
SHA-1 e46a424a1f12349dd74a67f19262371734d6e59a获取文件 calcmod-fabric-1.19.4-1.3.0.jar展开更新日志
- Added ability to create and run custom functions
- Added Piglin bartering utils
- Added x, y, z coordinate variables
- Added player health variable
- Ported to Forge mod loader
- Backported to all major Forge and Fabric versions
- Crafting feature supports custom recipe datapacks
- Changed responses to be more user friendly
fabric-1.20.x-1.3.0
正式版- 加载器
- fabric · quilt
- MC 版本
- 1.20 · 1.20.1
SHA-1 ed8cf7c8df8e90a206ee26eb41d867acc9460a30获取文件 calcmod-fabric-1.20-1.3.0.jar展开更新日志
- Added ability to create and run custom functions
- Added Piglin bartering utils
- Added x, y, z coordinate variables
- Added player health variable
- Ported to Forge mod loader
- Backported to all major Forge and Fabric versions
- Crafting feature supports custom recipe datapacks
- Changed responses to be more user friendly
1.19.2-1.2.0
正式版- 加载器
- fabric · quilt
- MC 版本
- 1.19 · 1.19.1 · 1.19.2 · 1.19.3
SHA-1 6c2eff0267767f3c8210283f4c2c07d9b4546461获取文件 calcmod-1.19.2-1.2.0.jar展开更新日志
Added Signal to Items Command.
1.2.0
正式版- 加载器
- fabric · quilt
- MC 版本
- 1.20 · 1.20.1
展开更新日志
Fixed some Craft command issues from 1.1.0. Added Signal to Items Command
1.1.0
正式版- 加载器
- fabric
- MC 版本
- 1.19 · 1.19.1 · 1.19.2
展开更新日志
V 1.1.0
- Made mod 2,327.63619687% smaller(Removed icu4j dependency)
- Restructured subcommands into separate class files.
- Added allaystorage (number of allays needed to sort nonstackable items)
- Added random
- Added craft (number of items needed to craft a certain recipe)
1.0.0
早期版- 加载器
- fabric
- MC 版本
- 1.19 · 1.19.1
展开更新日志
Made mod!
依赖关系
- 必需未命名依赖
