Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 1.12 KB

README.md

File metadata and controls

22 lines (18 loc) · 1.12 KB

Calculatus: Math In Minecraft Chat

What it does

Calculatus is a Forge mod for Minecraft 1.8.9 that enabled you to evaluate mathematical expressions in chat. It supports basic arithmetic operations, parentheses, and modulo. Your player position is stored in the variables x,y,z which correspond to the player's coordinates. Short hands for larger values including "k, m, b, t" are supported.

  • /calc <expression>: Evaluate a mathematical expression.
    • Example usage: /calc 2 + 2 * 3 evaluates to 8.
    • Example usage: /calc 1/2 evaluates to 0.5. (note: rounds to the nearest hundredths digit)
    • Example usage: /calc z+10 (where the player's position is at z = -10) evaluates to 0.
    • Example usage: /calc 1k evaluates to 1,000.
  • /calc history: View the history of expressions you have evaluated.
  • /calc clear: Clear the history of expressions you have evaluated.

Why this is better

  • It is unit tested.

How to install

  • Click on latest releases and drag the jar file into your mods folder

Alternative Installation