-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcalcs.html
2131 lines (2130 loc) · 99.4 KB
/
calcs.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<title>Ghast's Grotto - Calculators</title>
<meta name="description" content="Various Diablo Stat Calculators">
<meta name="keywords" content="Diablo, Diablo 1, Diablo One, ghast, ghastmaster, ghast's grotto, shrine list, multiplayer">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
<link rel="mask-icon" href="safari-pinned-tab.svg" color="#5bbad5">
<script type="text/javascript" src="js/ac.js"></script>
<script type="text/javascript" src="js/arm.js"></script>
<script type="text/javascript" src="js/block.js"></script>
<script type="text/javascript" src="js/char.js"></script>
<script type="text/javascript" src="js/cth.js"></script>
<script type="text/javascript" src="js/internals.js"></script>
<script type="text/javascript" src="js/itmchk.js"></script>
<!-- Must have jquery before qlvl.js -->
<script
src="https://code.jquery.com/jquery-3.6.0.js"
integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk="
crossorigin="anonymous"></script>
<script type="text/javascript" src="js/monster_data.js"></script>
<script type="text/javascript" src="js/morcalc.js"></script>
<script type="text/javascript" src="js/orkin.js"></script>
<script type="text/javascript" src="js/parse_funcs.js"></script>
<script type="text/javascript" src="js/price.js"></script>
<script type="text/javascript" src="js/qlvl.js"></script>
<script type="text/javascript" src="js/rare.js"></script>
<script type="text/javascript" src="js/tibbs.js"></script>
<script type="text/javascript" src="js/weapdam.js"></script>
<script type="text/javascript" src="js/dps.js"></script>
<style>
a:link {
text-decoration: none;
color: #ffffff;
}
a:visited {
text-decoration: none;
color: #ffffff;
}
a:hover {
background: none;
color: #ff8000;
}
.banner {
margin: 0;
font-size: 1em;
font-weight: none;
line-height: 1.1;
text-align: left;
position: fixed;
top: 2em;
left: 0em;
width: 10%;
right: auto;
}
.banner p {
margin: 0;
padding: 0.3em 0.4em;
border: none;
color: #ff8000;
}
.banner a, div.banner em {
display: block; margin: 0 0.5em;
}
.banner a, div.banner em {
border-top: 0px groove #CCC;
}
.banner a:first-child {
border-top: none;
}
.banner em {
color: #CFC;
}
.banner2 {
margin: 0;
font-size: 1em;
font-weight: none;
line-height: 1.1;
text-align: left;
position: fixed;
top: 2em;
left: auto;
width: 10%;
right: 0em;
}
.banner2 p {
margin: 0;
padding: 0.3em 0.4em;
border: none;
color: #ff8000;
}
.banner2 a, div.banner em {
display: block;
margin: 0 0.5em;
}
.banner2 a, div.banner em {
border-top: 0px groove #CCC;
}
.banner2 a:first-child {
border-top: none;
}
.banner2 em {
color: #CFC;
}
table.blog {
background-color: #111111;
padding: .3em;
color: #bca86c;
}
table.char {
background: url("images/stone.webp") repeat fixed top;
color: #ffffff;
border-collapse: collapse;
}
table.char input {
background-color: #111111;
color: #ffffff;
border-color: #bca86c;
}
table.hidden {
display: none;
}
table.sub {
border-collapse: collapse;
}
.magic {
color: #a0a5c8
}
.norm {
color: #ffffff;
}
.fire {
color: #e16c6c;
}
.title {
font-size: 1.5em;
text-align: left;
color: #ffffff;
}
.title2 {
color: #a0a5c8;
font-size: 1.2em;
}
.warn {
font-size: .8em;
font-style: italic;
color: #bca86c;
}
textarea {
background-color: #111111;
border-color: #5f5f5f;
color: #a0a5c8;
border: none;
overflow: auto;
resize: none;
}
input {
background-color: #111111;
color: #ffffff;
}
select {
background-color: #111111;
color: #a0a5c8;
}
button {
background-color: #111111;
color: #ffffff;
}
</style>
</head>
<center>
<body bgcolor="#2d2d2d">
<div class="banner">
<p>Grotto:
<br>
<br>
<a title="Tips, tricks, news, and more!" href="index.html">Home</a>
<br>
<a title="Various Diablo Stat Calculators" href="calcs.html">Calcs</a>
<br>
<a title="Self explanatory" href="shrinelist.html">Shrines</a>
<br>
<a title="Zoom and scroll through a pixel perfect image of Tristram" href="tristram.html">Tristram</a>
<br>
<a title="A list of all the uniques" href="uniques.html">Uniques</a>
<br>
<a title="A huge list of oldies(but goodies) and newby Diablo related sites and forums" href="links.html">Links</a>
<br>
</p>
<p>Monsters:
<br>
<br>
<a title="A list of all the normal monsters" href="monstern.html">Normal</a>
<br>
<a title="A list of all the unique monsters" href="monsteru.html">Unique</a>
<br>
</p>
<p>Builds:
<br>
<br>
<a title="FireIceTalon's Builds for Rogue" href="buildr.html">Rogue</a>
<br>
<a title="FireIceTalon's Builds for Sorcerer" href="builds.html">Sorcerer</a>
<br>
<a title="FireIceTalon's Builds for Warrior" href="buildw.html">Warrior</a>
<br>
</p>
<p>My:
<br>
<br>
<a title="My characters and their items" href="characters.html">Characters</a>
<br>
<a title="From the bean counter" href="kills.html">Kills</a>
<br>
<a title="My stash of items" href="stash.html">Stash</a>
<br>
<a title="All the items I am hunting" href="wishlist.html">Wishlist</a>
</p>
</div>
<div class="banner2">
<p> Item:
<br>
<br>
<a title="This shows qlvls, stats, levels, and prices of items" href="#prem">Premium</a>
<br>
<a title="Calculate the rarity of any item." href="#itemrarity">Rarity</a>
<br>
<a title="Calculate the price of any item." href="#itemprice">Price</a>
<br>
<a title="See what qlvl items you'll find at the vendors." href="#shopqlvl">Shop qlvl</a>
<br>
<a title="Another price Calculator with no price limit" href="#orkin">Orkin Price</a>
<br>
<a title="Select a weapon and damage attributes to caluculate damage interval and average damage." href="#weapdam">Weapon</a>
<br>
<a title="Input your weapons average damage to see Damage Per Second" href="#dpscalc">DPS</a>
<br>
<a title="Calculate armor class of items." href="#armor">Armor</a>
</p>
<br>
<p> Combat:
<br>
<br>
<a title="Diablo Combat Calculator" href="#combatcalc">AC & To Hit</a>
<br>
<a title="Calculate chance to hit." href="#cthacblock">AC</a>
<br>
<a title="Calculate chance to block" href="#cthacblock">Block</a>
<br>
<a title="Calculate chance to hit." href="#cthacblock">CTH</a>
</p>
<br>
<p> Character:
<br>
<br>
<a title="Select item stats and character skills to calculate character stats." href="#charstats">Char Stats</a>
<br>
<a title="Calculate what your Life/Mana should be" href="#lifemana">Life/Mana</a>
</p>
</div>
<center>
<br>
<table class="blog" width="50%">
<tr>
<td class="title">About the Calcs</td>
</tr>
<tr>
<td><p>These calculators were made by others and the original code on some has been modified to fix errors, work on one page, change asthetics, and minor tweaks for additional info.<p>Adria(staves without spells) cannot sell items with affixes that are higher than half of the lowest qlvl. <a href=#prem>Premium Item Checker</a> does not account for that. It also does not account for Bountiful and Plentiful only existing in tandem with spells. Familiarize yourself with the formulas in Jarulf's Guide to be sure of the results from these calculators.</td>
</tr>
<tr>
<td><br>- Ghast</td>
</tr>
</table>
<br>
<!-- //////// Premium Item Checker //////// -->
<form name="premium">
<table class="blog"><a name="prem"></a>
<tr>
<td><span class="title">Premium Item Checker </span><i>By: <a href="https://web.archive.org/web/20120125114431/http://www.red-wolf.sakura.ne.jp/dia/premiumchk.html">King aka Red-Wolf</i></a></td>
</tr>
<tr>
<td colspan="2">
<table class="sub">
<tr>
<td>Prefix:</td>
<td>Base Item:</td>
<td>Suffix:</td>
<td>Price</td>
<td>Reset</td>
</tr>
<tr>
<td>
<select name="prefixx" size="1" onChange="ChgPrefix(this.form)">
<script type="text/javascript">
with(document){
for(i=0 ;i<=premax;i++){
write("<option>",prefixx[prelst[i]].name,"</option>");}}</script></select></td>
<td>
<select name="basee" size="1" onChange="ChgBasee(this.form)">
<script type="text/javascript">
with(document){
for(i=0 ;i<=basmaxx;i++){
write("<option>",basee[baslst[i]].name,"</option>");}}</script></select></td>
<td>
<select name="suffixx" size="1" onChange="ChgSuffix(this.form)">
<script type="text/javascript">
with(document){
for(i=0 ;i<=sufmax;i++){
write("<option>",suffixx[suflst[i]].name,"</option>");}}</script></select></td>
<td>
<select name="calcprice" size="1" onChange="ChgMode(this.form)">
<option selected>Off</option>
<option>On</option>
</select></td>
<td><input type="reset" value="Reset" onClick="Init(this.form)"></td>
</tr>
<tr>
<td colspan="5">
<textarea name="display1" cols=80 rows=11>G/A Price = Cost to purchase from Griswold or Adria Difficulty "Source Level" indicates the range an item can be found based on the result of formulas from Jarulf's Guide chapter 3.8. Example: Obsidian/zodiac ring has a "Source Level" of 30-34. Sir Gorash is mlvl 30 for items. He can drop items with affixes in the range of qlvl 17-34, so he can drop it. Black Knights are mlvl 24 and can drop affixes in the range of qlvl 12-24. So Black Knight cannot. Blood Knight is mlvl 30 and can drop affixes in the range of qlvl 15-30, so they can drop obs/zod.</textarea><br>
<textarea name="display2" cols=80 rows=10>Item types key: W = Weapons (Axes, Clubs and Swords) B = Bows T = Staves A = Armor and Helms S = Shields J = Jewelry</textarea><br>
<textarea name="display3" cols=80 rows=11>Turn price on to see detailed breakdown of G/A prices. For Wirt and resale prices, scroll down to Item Price Calculator.</textarea></td>
</tr>
</table></td>
</tr>
</table>
</form>
<br>
<!-- //////// Item Rarity Calculator //////// -->
<form Name="SelectItem">
<table class="blog"><a name="itemrarity"></a>
<tr>
<td><span class="title">Item Rarity Calculator </span><i>By: <a href="https://web.archive.org/web/20120530085029/http://www.dpsyche.com/rarity.html">Eso aka the_Langolier</i></a></td>
</tr>
<tr>
<input type="hidden" name="blank1">
<td colspan="3" style="text-align: center">Item Class:<br>
<select name="Class" onChange="updateSelectMenu();">
<option value="unvalid" selected>Select this first</option>
<option>Helm</option>
<option>Armor</option>
<option>Shield</option>
<option>Sword</option>
<option>Axe</option>
<option>Club</option>
<option>Bow</option>
<option>Staff</option>
<option>Jewelry</option>
</select>
<input type="hidden" name="blank2">
</td>
<tr>
<td align="center">
<table class="sub">
<tr>
<td>Prefix:<br>
<select name="Prefix" disabled onChange="validate();">
<option selected></option>
<option>1234567890</option>
</select>
</td>
<td>Base Item:<br>
<select name="Base" disabled>
<option selected>Select this second</option>
</select>
</td>
<td>Suffix:<br>
<select name="Suffix" disabled onChange="validate();">
<option selected></option>
<option>1234567890</option>
</select>
</td>
</tr>
</table></td>
</tr>
<tr>
<td align="center">
<table class="sub" align="right">
<tr>
<td id="Valid" ></td>
<td align="right"><input name="Calculate" type="button" value="Calculate" onclick="main();" disabled></td>
</tr>
</table></td>
</tr>
<tr>
<td>Results:<br><textarea name="Results" rows=26 cols=54 wrap="soft" readonly></textarea></td>
</tr>
</table>
</form>
<br>
<!-- //////// Item Price Calculator //////// -->
<form Name="SelectItm">
<table class="blog"><a name="itemprice">
<tr>
<td></a><span class="title">Item Price Calculator </span><i>By: <a href="https://web.archive.org/web/20120530085023/http://www.dpsyche.com/price.html">Eso aka the_Langolier</i></a></td>
</tr>
<tr>
<td align="center">
<table class="sub">
<tr>
<td colspan="3" style="text-align: center">Item Class:<br><select name="Clas" onChange="updateClas();calcPrice();"></select></td>
</tr>
<tr>
<td>Prefix:<br><select name="Prefx" disabled onChange="updatePrefx();calcPrice();"></select></td>
<td>Base Item:<br><select name="Bse" disabled onChange="updateSource();calcPrice();"></select></td>
<td>Suffix:<br><select name="Suffx" disabled onChange="updateSuffx();calcPrice();"></select></td>
</tr>
<tr>
<td>Value:<br><select name="Pvalue" disabled onChange="calcPrice();"></select></td>
<td>
<input name="Source" type="radio" value="Gris" onclick="calcPrice();" checked><a id="Gris">Griswold<br>
<input name="Source" type="radio" value="Wirt" onclick="calcPrice();"><a id="Wirt">Wirt<br>
<input name="Source" type="radio" value="Sale" onclick="calcPrice();"><a id="Sale">Resale</td>
<td>Value:<br><select name="Svalue" disabled onChange="calcPrice();"></select></td>
</tr>
</table></td>
<tr>
<td>Price:</td>
</tr>
<tr class="magic">
<td name="Price" id="Price">0</td>
</tr>
<script type="text/javascript">
reset();
</script>
</table>
</form>
<br>
<!-- //////// Shop qlvl Calculator //////// -->
<form id="calc">
<table class="blog"><a name="shopqlvl">
<tr>
<td></a><span class="title">Shop qlvl Calculator </span><i>By: <a href="https://jsfiddle.net/23nzfd4p/show">@Royal#4121</i></a></td>
</tr>
<tr>
<td>
<table class="sub">
<tr>
<td>Enter clvl: <input id="clvl" name="clvl" type="number" max="50" min="1" required placeholder="clvl" /></label></td>
<td><button type="submit">Calculate</button></td>
</tr>
</table><br>
<table class="sub">
<tr class="gris">
<td colspan="2">Griswold</td>
</tr>
</table>
<table class="sub">
<tr>
<td colspan="2"><textarea id="grisresult" cols="24" rows="8" readonly></textarea></td>
</tr>
</table>
<table class="sub">
<tr>
<td colspan="2">Wirt:</td>
</tr>
</table>
<table class="sub">
<tr>
<td colspan="2"><textarea id="wirtresult" cols="18" rows="2" readonly></textarea></td>
</tr>
</table>
<table class="sub">
<tr>
<td colspan="2">Adria(MP):</td>
</tr>
</table>
<table class="sub">
<tr>
<td colspan="2"><textarea id="adriaresult" cols="49" rows="3" readonly></textarea></td>
</tr>
</table>
</td>
</tr>
</table>
</form>
<br>
<!-- //////// Orkin Price Calculator //////// -->
<form name="SelectMenu">
<table class="blog"><a name="orkin"></a>
<tr>
<td colspan="2"><span class="title">Orkin Price Calculator </span><i>By: <a href="https://web.archive.org/web/20080405195055/http://www.angelsofhell.com/prices.html">OrkinMan</i></a></td>
</tr>
<tr>
<td class="warn" colspan="2">Warning: For some affixes price is inaccurate, but close, when values other than the min/max are selected.</td>
</tr>
<tr>
<td>
<table class="sub">
<tr>
<td>Prefix<br>
<select name="Prefi" onChange="changeprefi(this.form)">
<script type="text/javascript">
with(document){
for(i=0;i<prefi_trueLength;i++){
write("<option>",prefiopt[i],"</option>");
}
}
</script></select></td>
<td>Item<br>
<select name="Item" onChange="change(this.form)">
<script type="text/javascript">
with(document){
for(i=0;i<item_trueLength;i++){write("<option>",itemopt[i],"</option>");}}
</script></select></td>
<td>Suffix<br>
<select name="Suffi" onChange="changesuffi(this.form)">
<script type="text/javascript">
with(document){
for(i=0;i<suffi_trueLength;i++){write("<option>",suffiopt[i],"</option>");}}
</script></select></td>
</tr>
<tr>
<td>Prefix Value<br>
<select name="PrefiValue" onChange="changeprefivalue(this.form)">
<option>no prefix selected yet</option>
<script type="text/javascript">
with(document){
for(i=1;i<prefivalue_maxLength;i++){write("<option>","</option>")}}
</script></select></td>
<td>Price<br><input type="text" name="TotalCost" value="0" readonly></td>
<td>Suffix Value<br>
<select name="SuffiValue" onChange="changesuffivalue(this.form)">
<option>no suffix selected yet</option>
<script type="text/javascript">
with(document){
for(i=1;i<suffivalue_maxLength;i++){write("<option>","</option>");}}
</script></select></td>
</tr>
</table>
</td>
<td>
<table class="sub">
<tr>
<td><input type="radio" name="Location" value="Gri" onclick="changeprice()" checked> Griswold's/Adria's Price</td>
</tr>
<tr>
<td><input type="radio" name="Location" value="Wir" onclick="changeprice()"> Wirt's Price</td>
</tr>
<tr>
<td><input type="radio" name="Location" value="Resale" onclick="changeprice()"> Resale Price</td>
</tr>
</table></td>
</tr>
<input type="hidden" value="0" name="PrefiCost">
<input type="hidden" value="0" name="SuffiCost">
<input type="hidden" value="0" name="PrefiDebug">
<input type="hidden" value="0" name="SuffiDebug">
<script type="text/javascript">
change();
</script>
</form>
</table>
<br>
<!-- //////// Weapon Damage Calculator //////// -->
<form name="DamCheck">
<table class="blog"><a name="weapdam"></a>
<tr>
<td><span class="title">Weapon Damage Calculator </span><i>By: <a href="https://web.archive.org/web/20120125124710/http://www.red-wolf.sakura.ne.jp/dia/eqcalc.html">King aka Red-Wolf</i></a></td>
</tr>
<tr>
<td>
<table class="sub">
<tr>
<td>Weapon<br><select name="base" size="1" onChange="ChgBase(this.form)">
<script type="text/javascript">
with(document){
for(i=0 ;i<=basmax;i++){
write("<option>",base[i].name,"</option>");
}
}
</script></select></td>
<td>Base Damage<br><input type="text" name="basemin" size="4" maxlength="3"> - <input type="text" name="basemax" size="4" maxlength="3"></td>
<td>+</td>
<td>% Prefix<br><input type="text" name="damrate" size="5" maxlength="4">%</td>
<td>+</td>
<td>Damage Suffix<br><input type="text" name="damadd" size="5" maxlength="3"></td>
<td>=</td>
<td>Damage Range<br><input type="text" name="min" size="3" maxlength="3" readonly> - <input type="text" name="max" size="3" maxlength="3" readonly></td>
</tr>
<tr>
<td><input type="button" name="calc" value="Calculate" onClick="ChkDam(this.form)"><input type="reset" name="reset" value="Reset"></td>
</tr>
</table><br>
<table class="sub">
<tr>
<td>Results:<br>
<textarea name="display" cols="77" rows="5" readonly>Hammer of Jholm Damage Range is 4 -10 %, Default is 10% which you can change.</textarea></td>
</tr>
</table>
</td>
</tr>
</table>
</form>
<br>
<!-- //////// DPS Calculator //////// -->
<form name="showdps" onSubmit="return false;">
<table class="blog"><a name="dpscalc"></a>
<tr>
<td colspan="4"><span class="title">Damage Per Second Calculator </span><i>By: <a href="https://mgpat-gm.github.io">GhastMaster</i></a></td>
</tr>
<tr>
<td colspan="4"><p>This does not take into account character damage modifiers. This is only intended to compare items with different speed suffixes.<br> eg. Lord's bastard sword of Haste vs a King's bastard sword or Warrior's LWB vs Massive Long Bow of Swiftness.<p>Input the average damage from the weapon damage calculator above.</td>
</tr>
<tr>
<td>Average Damage: <input type="text" name="avg" size="6" maxlength="6">
<select name="basetype" onchange="avgdps(this.form)">
<option value="sword">Swords/Clubs</option>
<option value="axe">Axes</option>
<option value="staff">Staves</option>
<option value="bow">Bows</option></select>
<input type="button" name="calcdps" value="Calculate" onclick="avgdps(this.form)"><input type="reset" name="reset" value="Reset"></td>
</tr>
<tr>
<td colspan="4"><br>Results:<br>
<textarea name="display" cols="20" rows="4" readonly></textarea>
<textarea name="display1" cols="10" rows="4" readonly></textarea>
<textarea name="display2" cols="10" rows="4" readonly></textarea>
<textarea name="display3" cols="10" rows="4" readonly></textarea>
<textarea name="display4" cols="10" rows="4" readonly></textarea>
<textarea name="display5" cols="10" rows="4" readonly></textarea>
<textarea name="display6" cols="23" rows="4" readonly></textarea></td>
</tr>
</table>
</form>
<br>
<!-- //////// Armor Calculator //////// -->
<form name="AcCheck">
<table class="blog"><a name="armor"></a>
<tr>
<td colspan="7"><span class="title">Armor Calculator </span><i>By: <a href="https://web.archive.org/web/20120125124710/http://www.red-wolf.sakura.ne.jp/dia/eqcalc.html">King aka Red-Wolf</i></a></td>
</tr>
<tr>
<td>Armor</td>
<td colspan="3">+% Armor</td>
<td colspan="2">Result</td>
</tr>
<tr>
<td><input type="text" name="base" size="3" maxlength="2"></td>
<td>+</td>
<td><input type="text" name="acrate" size="5" maxlength="4"></td>
<td>%</td>
<td>=</td>
<td><input type="text" name="ac" size="4" maxlength="3" readonly></td>
<td><input type="button" name="calc" value="Calculate" onclick="AcCalc(this.form)"><input type="reset" name="reset" value="Reset"></td>
</tr>
</table>
</form>
<br>
<!-- //////// Combat Calculator //////// -->
<form name="combat">
<table class="blog"><a name="combatcalc">
<tr>
<td></a><span class="title">AC & To Hit Calculator </span><i>By: <a href="https://web.archive.org/web/20091024004748/http://geocities.com/TimesSquare/Maze/4747/maxmelee12.html">Arnold van Wakeren aka Moriah</i></a></td>
</tr>
<td>
<table class="sub">
<tr>
<td>
<table class="sub">
<tr>
<td>Game:
<select name="game" onchange="parseGame()">
<option value="MP" diablo="">MP Diablo
</option><option value="SP" diablo="">SP Diablo
</option><option value="MP" hellfire="">MP Hellfire
</option><option value="SP" hellfire="">SP Hellfire
</option></select></td>
<td>Monster:
<select name="extra" onchange="parseExtra()">
<option value="Zombie">Zombie
</option><option value="Ghoul">Ghoul
</option><option value="Rotting" carcass="">Rotting Carcass
</option><option value="Black" death="">Black Death
</option><option value="Fallen" one="" (spear)="">Fallen One (spear)
</option><option value="Carver" (spear)="">Carver (spear)
</option><option value="Devil" kin="" (spear)="">Devil Kin (spear)
</option><option value="Dark" one="" (spear)="">Dark One (spear)
</option><option value="Fallen" one="" (sword)="">Fallen One (sword)
</option><option value="Carver" (sword)="">Carver (sword)
</option><option value="Devil" kin="" (sword)="">Devil Kin (sword)
</option><option value="Dark" one="" (sword)="">Dark One (sword)
</option><option value="Skeleton">Skeleton
</option><option value="Corpse" axe="">Corpse Axe
</option><option value="Burning" dead="">Burning Dead
</option><option value="Horror">Horror
</option><option value="Skeleton" archer="">Skeleton Archer
</option><option value="Corpse" bow="">Corpse Bow
</option><option value="Burning" dead="" archer="">Burning Dead Archer
</option><option value="Horror" archer="">Horror Archer
</option><option value="Skeleton" captain="">Skeleton Captain
</option><option value="Corpse" captain="">Corpse Captain
</option><option value="Burning" dead="" captain="">Burning Dead Captain
</option><option value="Horror" captain="">Horror Captain
</option><option value="Scavenger">Scavenger
</option><option value="Plague" eater="">Plague Eater
</option><option value="Shadow" beast="">Shadow Beast
</option><option value="Bone" gasher="">Bone Gasher
</option><option value="Fiend">Fiend
</option><option value="Blink">Blink
</option><option value="Gloom">Gloom
</option><option value="Familiar">Familiar
</option><option value="Hidden">Hidden
</option><option value="Stalker">Stalker
</option><option value="Unseen">Unseen
</option><option value="Illusion" weaver="">Illusion Weaver
</option><option value="Flesh" clan="">Flesh Clan
</option><option value="Stone" clan="">Stone Clan
</option><option value="Fire" clan="">Fire Clan
</option><option value="Night" clan="">Night Clan
</option><option value="Flesh" clan="" archer="">Flesh Clan Archer
</option><option value="Stone" clan="" archer="">Stone Clan Archer
</option><option value="Fire" clan="" archer="">Fire Clan Archer
</option><option value="Night" clan="" archer="">Night Clan Archer
</option><option value="Overlord">Overlord
</option><option value="Mud" man="">Mud Man
</option><option value="Toad" demon="">Toad Demon
</option><option value="Flayed" one="">Flayed One
</option><option value="Winged-Demon">Winged-Demon
</option><option value="Gargoyle">Gargoyle
</option><option value="Blood" claw="">Blood Claw
</option><option value="Death" wing="">Death Wing
</option><option value="Magma" demon="">Magma Demon
</option><option value="Blood" stone="">Blood Stone
</option><option value="Hell" stone="">Hell Stone
</option><option value="Lava" lord="">Lava Lord
</option><option value="Horned" demon="">Horned Demon
</option><option value="Mud" runner="">Mud Runner
</option><option value="Frost" charger="">Frost Charger
</option><option value="Obsidian" lord="">Obsidian Lord
</option><option value="Acid" beast="">Acid Beast
</option><option value="Poison" spitter="">Poison Spitter
</option><option value="Pit" beast="">Pit Beast
</option><option value="Lava" maw="">Lava Maw
</option><option value="Red" storm="">Red Storm
</option><option value="Storm" rider="">Storm Rider
</option><option value="Storm" lord="">Storm Lord
</option><option value="Maelstrom">Maelstrom
</option><option value="Slayer">Slayer
</option><option value="Guardian">Guardian
</option><option value="Vortex" lord="">Vortex Lord
</option><option value="Balrog">Balrog
</option><option value="Cave" viper="">Cave Viper
</option><option value="Fire" drake="">Fire Drake
</option><option value="Gold" viper="">Gold Viper
</option><option value="Azure" drake="">Azure Drake
</option><option value="Succubus">Succubus
</option><option value="Snow" witch="">Snow Witch
</option><option value="Hell" spawn="">Hell Spawn
</option><option value="Soul" burner="">Soul Burner
</option><option value="Black" knight="">Black Knight
</option><option value="Doom" guard="">Doom Guard
</option><option value="Steel" lord="">Steel Lord
</option><option value="Blood" knight="">Blood Knight
</option><option value="Counselor">Counselor
</option><option value="Magistrate">Magistrate
</option><option value="Cabalist">Cabalist
</option><option value="Advocate">Advocate
</option></select></td>
<td>To-Hit%: <input name="tohit_fld" value="" size="6" maxsize="6" onchange="parseTohit()" type="text"></td>
</tr>
<td>Class:
<select name="player" onchange="parsePlayer()">
<option value="Warrior">Warrior
</option><option value="Rogue">Rogue
</option><option value="Sorcerer">Sorcerer
</option><option value="Monk">Monk
</option><option value="Bard">Bard
</option><option value="Barbarian">Barbarian
</option></select></td>
<td>Difficulty:
<select name="difficulty" onchange="parseDifficulty()">
<option value="Normal">Normal
</option><option value="Nightmare">Nightmare
</option><option value="Hell">Hell
</option></select></td>
<td>Dex: <input name="dex_fld" value="" size="6" maxsize="6" onchange="parseDexterity()" type="text"></td>
<tr>
<td>Clvl:
<select name="clvl" onchange="parseClvl()">
<option value="1">1
</option><option value="2">2
</option><option value="3">3
</option><option value="4">4
</option><option value="5">5
</option><option value="6">6
</option><option value="7">7
</option><option value="8">8
</option><option value="9">9
</option><option value="10">10
</option><option value="11">11
</option><option value="12">12
</option><option value="13">13
</option><option value="14">14
</option><option value="15">15
</option><option value="16">16
</option><option value="17">17
</option><option value="18">18
</option><option value="19">19
</option><option value="20">20
</option><option value="21">21
</option><option value="22">22
</option><option value="23">23
</option><option value="24">24
</option><option value="25">25
</option><option value="26">26
</option><option value="27">27
</option><option value="28">28
</option><option value="29">29
</option><option value="30">30
</option><option value="31">31
</option><option value="32">32
</option><option value="33">33
</option><option value="34">34
</option><option value="35">35
</option><option value="36">36
</option><option value="37">37
</option><option value="38">38
</option><option value="39">39
</option><option value="40">40
</option><option value="41">41
</option><option value="42">42
</option><option value="43">43
</option><option value="44">44
</option><option value="45">45
</option><option value="46">46
</option><option value="47">47
</option><option value="48">48
</option><option value="49">49
</option><option value="50">50
</option></select></td>
<td>Dlvl:
<select name="dlvl" onchange="parseDlvl()">
<option value="1">1
</option><option value="2">2
</option><option value="3">3
</option><option value="4">4
</option><option value="5">5
</option><option value="6">6
</option><option value="7">7
</option><option value="8">8
</option><option value="9">9
</option><option value="10">10
</option><option value="11">11
</option><option value="12">12
</option><option value="13">13
</option><option value="14">14
</option><option value="15">15
</option><option value="16">16
</option><option value="Hive" 1="">Hive 1
</option><option value="Hive" 2="">Hive 2
</option><option value="Hive" 3="">Hive 3
</option><option value="Hive" 4="">Hive 4
</option><option value="Crypt" 1="">Crypt 1
</option><option value="Crypt" 2="">Crypt 2
</option><option value="Crypt" 3="">Crypt 3
</option><option value="Crypt" 4="">Crypt 4
</option></select></td>
<td>AC: <input name="armor_fld" value="" size="6" maxsize="6" onchange="parseArmor()" type="text"></td>
</tr>
<tr>
<td colspan="2" align="left"><input value="Calculate" onclick="bothatonce()" type="button"></td>
<td align="right"><input value="Reset" onclick="reset_form()" type="button"></td>
</tr>
<tr>
<td colspan="3"><textarea name="results" rows="12" cols="67" readonly></textarea>
<br>
<textarea name="results2" rows="4" cols="67" readonly></textarea></td>
</tr>
</table>
</td>
</tr>
<tr>
<table class="hidden">
<tr>
<td>
<select name="weapon" onchange="parseWeapon()">
<option value="Bare">Bare
</option><option value="Axe">Axe
</option><option value="Bow">Bow
</option><option value="Club">Club
</option><option value="Shield">Shield
</option><option value="Staff">Staff
</option><option value="Sword">Sword
</option></select></td>
<td>
<select name="slvl" onchange="parseSlvl()">
<option value="0">0
</option><option value="1">1
</option><option value="2">2
</option><option value="3">3
</option><option value="4">4
</option><option value="5">5
</option><option value="6">6
</option><option value="7">7
</option><option value="8">8
</option><option value="9">9
</option><option value="10">10
</option><option value="11">11
</option><option value="12">12
</option><option value="13">13
</option><option value="14">14
</option><option value="15">15
</option><option value="16">16
</option><option value="17">17
</option><option value="18">18
</option><option value="19">19
</option><option value="20">20
</option></select></td>
<td><input name="str_fld" value="" size="6" maxsize="6" onchange="parseStrength()" type="text"></td>
<td><input name="mag_fld" value="" size="6" maxsize="6" onchange="parseMagic()" type="text"></td>
<td><input name="vit_fld" value="" size="6" maxsize="6" onchange="parseVitality()" type="text"></td>
<td><input name="resmagic_fld" value="" size="6" maxsize="6" onchange="parseResMagic()" type="text"></td>
<td><input name="resfire_fld" value="" size="6" maxsize="6" onchange="parseResFire()" type="text"></td>
<td><input name="reslightning_fld" value="" size="6" maxsize="6" onchange="parseResLightning()" type="text"></td>
<td><input value="Help" onclick="helpPlayer()" type="button"></td>
<td><input value="Help" onclick="helpGame()" type="button"></td>
<td>
<select name="special" onchange="parseSpecial()">
<option value="Plain" monsters="">Plain Monsters
</option><option value="Boss" monsters="">Boss Monsters
</option><option value="Special" monsters="">Special Monsters
</option><option value="Player" vs="" player="">Player vs Player
</option><option value="Golem" vs="" monster="">Golem vs Monster
</option><option value="Trap" encounters="">Trap Encounters
</option><option value="Item" drops="">Item Drops
</option><option value="Assorted" stats="">Assorted Stats
</option></select></td>
<td>
<select name="duelclvl" onchange="parseDuelClvl()">
<option value="1">1
</option><option value="2">2
</option><option value="3">3
</option><option value="4">4
</option><option value="5">5
</option><option value="6">6
</option><option value="7">7
</option><option value="8">8
</option><option value="9">9
</option><option value="10">10
</option><option value="11">11
</option><option value="12">12
</option><option value="13">13
</option><option value="14">14
</option><option value="15">15
</option><option value="16">16
</option><option value="17">17
</option><option value="18">18
</option><option value="19">19
</option><option value="20">20
</option><option value="21">21
</option><option value="22">22
</option><option value="23">23
</option><option value="24">24
</option><option value="25">25
</option><option value="26">26
</option><option value="27">27
</option><option value="28">28
</option><option value="29">29
</option><option value="30">30
</option><option value="31">31
</option><option value="32">32
</option><option value="33">33
</option><option value="34">34
</option><option value="35">35
</option><option value="36">36
</option><option value="37">37
</option><option value="38">38
</option><option value="39">39
</option><option value="40">40
</option><option value="41">41
</option><option value="42">42
</option><option value="43">43
</option><option value="44">44
</option><option value="45">45
</option><option value="46">46
</option><option value="47">47
</option><option value="48">48
</option><option value="49">49
</option><option value="50">50
</option></select></td>
<td><input value="Help" onclick="helpSpecial()" type="button"></td>
<td><input name="duelstr_fld" value="" size="6" maxsize="6" onchange="parseDuelStrength()" type="text"></td>
<td><input name="duelmag_fld" value="" size="6" maxsize="6" onchange="parseDuelMagic()" type="text"></td>
<td><input name="dueldex_fld" value="" size="6" maxsize="6" onchange="parseDuelDexterity()" type="text"></td>
<td><input name="duelarmor_fld" value="" size="6" maxsize="6" onchange="parseDuelArmor()" type="text"></td>
<td><input name="dueltohit_fld" value="" size="6" maxsize="6" onchange="parseDuelTohit()" type="text"></td>
<td><input name="duelres_fld" value="" size="6" maxsize="6" onchange="parseResDuel()" type="text"></td>
<td><input name="damlow_fld" value="" size="6" maxsize="6" onchange="parseDamageLow()" type="text"></td>
<td><input name="damhigh_fld" value="" size="6" maxsize="6" onchange="parseDamageHigh()" type="text"></td>
</tr>
</table>
</td>
</tr>
</table>