This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var time = 60; var clock = 300; function TimeHack() { | |
setInterval(function Applytime() { | |
document.getElementsByClassName('timerLabel whiteTextWithShadow font-60 ng-binding')["0"].innerText = time; document.getElementsByClassName('timerLabel whiteTextWithShadow font-60 ng-binding')["0"].innerHtml = time; | |
document.getElementsByClassName('clockHand').rotate = clock; | |
}, 1); | |
}; function TimeHackm() { | |
setInterval(function Addtime() { | |
time = time + 1; | |
clock = clock + 6; | |
}, 1000); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const net = require("net"); | |
// creating a custom socket client and connecting it.... | |
const client = new net.Socket(); | |
client.connect({ | |
port: 2222 | |
}); | |
client.on("connect", () => { |