cRPG > Beginner's Help and Guides

Damage calc / character builder updated

(1/9) > >>

San:
Website added, no need to download: http://tinyurl.com/crpgcalc

Longer version:
(click to show/hide)https://googledrive.com/host/0Bzs1vJv0tQLHZ3AwLUQ0Tkt0djg/calc.html

If you want to download for yourself so you can edit the layout:
(click to show/hide)
--- Quote from: San on March 05, 2014, 01:21:39 am ---Forked the repo and updated it with the new formulae that we have.

Download, unzip, and open the calc.htm. I believe you do need to have java installed / cookies enabled. Tested only a little bit, post any problems you come across, please.

Github page:
https://github.com/smj72/cRPG-Toolkit

Direct download: https://codeload.github.com/smj72/cRPG-Toolkit/zip/master

--- End quote ---

Original Calc thread: http://forum.melee.org/beginner%27s-help-and-guides/min-maxer-toolkit-character-builder-damage-calculator/

Thranduil:
At first testing it seems to be working fine and accurate. I'll let you know if something breaks.  :wink:


*EDIT* I do like how I can modify the HTML to have my own personalized cRPG Calc page.  :mrgreen:

And now my own personalized Calculator! (click to show/hide)visitors can't see pics , please register or login


And in case anyone is interested, here's how I did it:

(click to show/hide)
* Download the folder from one of San's links.
* Extract folder anywhere as long as the files are in one folder.
* Copy your favorite image file to this folder an rename it something simple like m.jpg. (*Note* It is best if the image is close to your screen resolution, otherwise you will have a lot of repeating images.)
* Open calc.htm in Notepad++. (Regular old Notepad or Wordpad will work as well for changing the code.)
* Scroll to the bottom to where you see the following code:
--- Code: ---<body>
<div id="charCalc" class="application"></div>
<div id="dmgCalc" class="application"></div>
<div id="xpDisplay" class="application"></div>



</body>
--- End code ---

* Change it to this:
--- Code: ---<body background="m.jpg">
<div id="charCalc" class="application"></div>
<div id="dmgCalc" class="application"></div>
<div id="xpDisplay" class="application"></div>



</body>
--- End code ---

* Save the changes.
* Open style.css in a text editor as before.
* Scroll down until you see the following code:
--- Code: ---div.application {
background: #333;
background: -webkit-gradient(linear, left top, left bottom, from(#444444), to(#333333));
background: -moz-linear-gradient(top,  #444444,  #333333);

border: solid #999 1px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
padding: 1em;
margin: 1em 0;

max-width: 900px;
}
--- End code ---

* Replace it with:
--- Code: ---div.application {
background: #333;
background: -webkit-gradient(linear, left top, left bottom, from(rgba(68, 68, 68, 0)), to(rgba(51, 51, 51, 0)));
background: -moz-linear-gradient(top,  #444444,  #333333);

border: solid #999 1px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
padding: 1em;
margin: 1em 0;

max-width: 900px;
}
--- End code ---

* This causes the interactive applications (the three boxes) backgrounds to be transparent. If you don't want them transparent, don't edit style.css.
* Save the changes.
Optionally, you can edit the background color while you're in style.css.

* At the start of the code you will see this:
--- Code: ---html {
background: #000;
color: #eee;
font-family: Calibri, Arial;
}
--- End code ---

* Replace #000 with whatever hex code color you prefer. Don't know what a hex code is or how to get the color you want? Check this out: http://www.w3schools.com/tags/ref_colorpicker.asp
* And of course, save the changes.
* Double click calc.htm to open in your web browser and enjoy your personalized cRPG Calculator!
With the exception of changing the background color in style.css, all you have to do to get a new background is replace the m.jpg image in the folder with another image of the exact same name (and extension). Now how easy is that?! ... Well, easier to do than to read about.  :lol:

HappyPhantom:
Comment so I can find this later  :mrgreen:

WITCHCRAFT:
Thanks for the link. My bookmarked character builder hadn't been patched since before the AGI rework, and getting inaccurate WPF was driving me crazy.

Working like a charm so far.

BlueKnight:
Can we stick it somewhere?

Navigation

[0] Message Index

[#] Next page

Go to full version