Update v5.2.1
parent
0dafd14765
commit
725328bb9a
12
game.js
12
game.js
|
@ -7565,11 +7565,23 @@ var setVarByName;
|
||||||
}
|
}
|
||||||
function kk() {
|
function kk() {
|
||||||
this.z7 = null;
|
this.z7 = null;
|
||||||
|
this.z9 = null;
|
||||||
this.bp = function () {
|
this.bp = function () {
|
||||||
this.z7 = document.createElement("INPUT");
|
this.z7 = document.createElement("INPUT");
|
||||||
this.z7.setAttribute("type", "file");
|
this.z7.setAttribute("type", "file");
|
||||||
this.z7.setAttribute("accept", ".gif,.jpg,.jpeg,.png,.json");
|
this.z7.setAttribute("accept", ".gif,.jpg,.jpeg,.png,.json");
|
||||||
this.z7.setAttribute("id", "inputfilebtn");
|
this.z7.setAttribute("id", "inputfilebtn");
|
||||||
|
|
||||||
|
// Don't touch this part lol it might all break
|
||||||
|
|
||||||
|
/*
|
||||||
|
this.z9 = document.createElement("LABEL");
|
||||||
|
this.z9.setAttribute("id", "inputfilelabel");
|
||||||
|
this.z9.setAttribute("for", "inputfilebtn");
|
||||||
|
this.z9.innerHTML = 'YES WE GO!';
|
||||||
|
this.z9.style.color = '#000';
|
||||||
|
this.z9.style.position = 'absolute';
|
||||||
|
*/
|
||||||
this.z7.style.position = "absolute";
|
this.z7.style.position = "absolute";
|
||||||
this.z7.style.color = this.me(255, 255, 255);
|
this.z7.style.color = this.me(255, 255, 255);
|
||||||
this.lq();
|
this.lq();
|
||||||
|
|
20
index.html
20
index.html
|
@ -106,15 +106,21 @@
|
||||||
input#userna {
|
input#userna {
|
||||||
transition: 0.2s
|
transition: 0.2s
|
||||||
}
|
}
|
||||||
</style>
|
::-webkit-file-upload-button {
|
||||||
|
color: white;
|
||||||
|
background-color: #120076;
|
||||||
<!-- Styles for in-game stuff -->
|
border: 2px solid #fff;
|
||||||
<style>
|
top: 0;
|
||||||
.inputfilebtn {
|
bottom: 0;
|
||||||
padding: 10px;
|
padding-top: 30px;
|
||||||
|
padding-bottom: 30px;
|
||||||
|
padding-left: 30px;
|
||||||
|
padding-right: 30px;
|
||||||
|
font-family: 'Trebuchet MS', 'Arial Narrow', Arial, sans-serif;
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body onload="aiCommand746(0);">
|
<body onload="aiCommand746(0);">
|
||||||
|
|
Loading…
Reference in New Issue