-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
119 lines (106 loc) · 4.26 KB
/
index.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
<!DOCTYPE html>
<head>
<title> Insane Idle v1.7.3</title>
<link rel="stylesheet" type="text/css" href="main.css">
</head>
<body>
<!-- Alte Gelt Und Geld Pro Sekune Anzeige
GeldAnzeige
<h1> <span id="Geld"> </span> Euro </h1>
GeldProSekundeAnzeige
<h3> <span id="GeldPS"> </span> Euro PS </h3>
-->
<!-- Neue Geld Anzeige Und Geld Pro Sekunde Anzeige -->
<div style="font-size: 50px; text-align:center"> <span id="Geld"> </span> Euro </div>
<div style="font-size: 25px; text-align:center"> <span id="GeldPS"> </span> Euro PS </div>
<!-- Neue Produnktionknöpfe und Preise -->
<p>
<div class='Hauptknoepfe'>
(
<span class="Knopf HKnofp" onclick="AKaufen()" id="AKnopf">
<span id="A" > </span>
<br />
Price: <span id="APreisAnz"> </span>
<br/>
Buying: <span id="AKaufAnz"> </span>
</span> x
<span class="Knopf HKnofp" onclick="BKaufen()" id="BKnopf">
<span id="B"> </span>
<br />
Price: <span id="BPreisAnz"> </span>
<br />
bought: <span id="BKaufAnzAnz"> </span>
</span> x
<span class="Knopf HKnofp" onclick="CKauf()" id="CKnopf">
<span id="C" > </span>
<br />
Price: <span id="CPreisAnz"> </span>
<br />
bought: <span id="CKaufAnzAnz"> </span>
</span> )^
<span class="Knopf HKnofp" onclick="ExAKauf()" id="ExAKnopf">
<span id="ExA" ></span>
<br />
Price: <span id="ExAPreisAnz"> </span>
<br />
bought: <span id="ExAKaufAnzAnz">
</span>
<br />
</div>
</p>
<!--Alte Produktionknöpfe und Preise
ProdunktionKnöpfe
<h2> (<button onclick="AKauf()" id="A"> </button> * <button onclick="BKauf()" id="B"> </button> * <button onclick="CKauf()" id="C"> </button>) ^ <button onclick="ExAKauf()" id="ExA"> </button> </h2>
PreisAnzeigen>
<ul>
<li>
APrice: <span id="APreis"> </span>
<li> BPrice: <span id="BPreis"> </span>
<li> CPrice: <span id="CPreis"> </span>
<li> ExAPrice: <span id="ExAPreis"> </span>
-->
<!--- Mehrfach Kauf und Reset --->
<p> <span onclick="SetMultiKaufAnzahl()" class="Knopf"> Buy Multi </span> </p>
<p> <span onclick='ModusAendern("KaufModusA")' class="Knopf"> Buy Max A: <span id="BuyMaxKno"> </span> </span>
<p> <span onclick='ModusAendern("KaufModusB")' class="Knopf"> Buy Max B (Very Lagy): <span id="BMulti/MaxKno" </span> </p>
<p> <span onclick="ResetK()" class="Knopf"> Hard Reset </span> </p>
<p> <span onclick="AendernSpielstandCo()" class="Knopf">Change Save State/Code</span> </p>
<!--- Sonstige Infos --->
<p> This game uses the library <a href="https://github.com/MikeMcl/decimal.js/"> decimal.js </a> so There Can Be Number higher than 1e+308 </p>
<h3> Usefull Links: </h3>
<a href="https://www.reddit.com/r/KeinNiemandGames/"> Subbreddit</a>
<br/>
<a href="https://www.youtube.com/channel/UC3BFoEDnswfz4JGBnt_RIgA"> My Youtube Channel(German) </a>
<br/>
<a href="chanelog.txt"> Changelog </a>
<br>
<div> I've got the Idea to this game from an ohter game called <a href="http://www.kongregate.com/games/Speedlv/basic-idle-2">Basic Idle 2</a> </div>
<br/>
<div> This Site uses Google Analytics </div>
<p> Version 1.7.3 </p>
<!--- Importieren Von Scripten
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-83650410-1', 'auto');
ga('send', 'pageview');
</script>
--->
<script src='https://cdn1.kongregate.com/javascripts/kongregate_api.js'></script>
<script>
// Load the API
var kongregate;
kongregateAPI.loadAPI(onComplete);
// Callback function
function onComplete(){
// Set the global kongregate API object
kongregate = kongregateAPI.getAPI();
}
</script>
<script src=decimal.js> </script>
<script src=Spiel.js> </script>
<script src=Speichern.js> </script>
<script src=Starter.js> </script>
</body>