- Home
- Downloads
-
Addons & Mods
Featured
World of Warcraft
4,842 Addons
-
Popular Downloads
- Top World of Warcraft Addons
- Top Rift Addons
- Top Skyrim Mods
- Top Minecraft Server Mods
- Top Terraria Maps
- Top Starcraft II Maps
- Top Runes of Magic Addons
- Top Warhammer Online Addons
- Top Age of Conan Addons
-
- Curse Client
- Premium
- News
- Giveaways
- Forums
SimpleCalc - A simple mathematical calculator
- 1 Like
- World of Warcraft
- 6 Downloads
- Supports: 4.3
- 0 Average Daily Downloads
- Comments
- Created 7/3/2008 7:49:13 AM
- Updated 1/24/2012 12:36:29 PM
- 32 Favorites
- Project Site
- License: MIT License
- Release Type: Release
- Newest File: Simplecalc v0.6a
About SimpleCalc - A simple mathematical calculator
SimpleCalc is a simple mathematical calculator addon for World of Warcraft. In essence, it's a slash-based utility which allows you to do maths!
Example usage and response:
/calc 10415 - 9843 + 12
[SimpleCalc] 10415 - 9843 + 12 = 584
A selection of in-game values has been added to make life easier when doing certain calculations. You can use keywords in place of numbers for the following values:
- honour or honor - Total honour points available to spend
- justice or jp - Total justice points available to spend
- valor or vp - Total valor points available to spend
- conquest or cp - Total conquest points available to spend
- vpcap - Amount of valor that can be earned that week
- cpcap - Amount of conquest that can be earned that week
- achieves or ap - Your total achieve points
- health - Your maximum Health points
- mana - Your maximum Mana points
- gold - Total gold (1g 50s would be displayed as 1.5 gold)
- silver - Total silver (1g 50s would be displayed as 150 silver)
- copper - Total copper (1g 50s would be displayed as 15,000 copper)
For example:
/calc 1650 + 2200 - honour
[SimpleCalc] 1650 + 2200 - honour = 3078
Support for user defined variables was added in version 0.4. Variables persist across sessions, so you can save values for later use really easily. To save a value or calculation:
/calc x = 1024
-or-
/calc x = 32 * 2 + 64
SimpleCalc works on equations left to right, so '10 * 3 + 2' would be broken down into two sums: '10 * 3', then '30 + 2'. Support for brackets is not yet in place, but this shouldn't affect every day calculations.
Comments, suggestions and bug reports are most welcome!
- Removed /gamesleft until I can get it mathed out properly
| File Name | Release Type | Game Version | Downloads | Date |
|---|---|---|---|---|
| Simplecalc v0.6a | Release | 4.3 | 10 | 1/24/2012 12:36:29 PM |
| SimpleCalc v0.6 | Release | 4.3 | 5 | 1/14/2012 11:51:17 PM |
| SimpleCalc v0.5 (Cata) | Release | 4.3 | 5 | 1/14/2012 2:02:01 PM |
| SimpleCalc v0.4b | Release | 3.3.3 | 1,770 | 5/10/2010 2:31:14 PM |
| SimpleCalc v0.4 | Release | 3.2.0 | 1,478 | 10/12/2009 5:50:21 PM |
| SimpleCalc v0.3c | Release | 3.2.0 | 1,116 | 8/8/2009 9:02:01 AM |
| SimpleCalc v0.3b | Release | 3.1.0 | 664 | 7/13/2009 2:11:34 AM |
| SimpleCalc v0.3 | Release | 3.0.2 | 2,234 | 10/21/2008 7:24:59 AM |
| SimpleCalc v0.2 | Release | 2.4.3 | 405 | 7/30/2008 4:11:20 AM |
| SimpleCalc v0.1 | Release | 2.4.2 | 196 | 7/4/2008 6:59:14 AM |

Comments
Not requiring a space would be really really nice. Another feature request:
Could you make x (if it is not used as a variable) be the latest result ?
For example:
/calc 5+5 = 10
/calc x+5 = 15
And maybe a shorter /cmd like /c or /ci ?
not requiring a space would be nice... you could do a string replace for all the common math functions with the function with spaces and then do a search for double spaces.
gsub(input, '+', ' + ');
gsub(input, '-', ' - ');
gsub(input, '*', ' * ');
gsub(input, '/', ' / ');
gsub(input, ' ', ' ');
the /gamesleft seams a little erelvent to the addon but can we get a /rdfleft also that takes into account lfr if its been done say '2 LFR + 3 RDF or 1 LFR + 5 RDF or 7 RDF'
--
find me on twitter @scotepi
Not requiring a space is actually a good idea and I'll be looking into implementing that.
The gamesleft feature was something simple I threw together and actually needs some more work.
My intention is to eventually make it into it's own addon, complete with RBG caps and Valor caps.
--
find me on twitter @scotepi
I'd also like an GUI ;-) Just like Windows Calculator but in WoW style or something:P
Rated 5/5
/calc 5+5
[calc] 5+5 = 10
and now the result is stored as a variable for future use (eg: x):
/calc x+5
[calc] x+5 = 15
would be very cool.
I often use percentage values, so it would be nice to be able to use "Var_Name" in pace of 0.87 as an example