Skip to content

Commit

Permalink
Update higherlowergame-hack.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Lyzev authored Feb 15, 2024
1 parent f6be438 commit 0ee5546
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tampermonkey/higherlowergame-hack.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// @version ${version}
// @description Proof-Of-Concept for a cheat for higher lower game.
// @author Lyzev
// @match http://www.higherlowergame.com/
// @match *://www.higherlowergame.com/
// @icon https://www.google.com/s2/favicons?sz=64&domain=higherlowergame.com
// @require https://openuserjs.org/src/libs/sizzle/GM_config.js
// @grant GM_getValue
Expand Down Expand Up @@ -83,7 +83,7 @@ const loop = setInterval(() => {

function setup() {
const request = new XMLHttpRequest()
request.open("GET", "http://www.higherlowergame.com/questions/get/general", false)
request.open("GET", "//www.higherlowergame.com/questions/get/general", false)
request.send()
const data = JSON.parse(request.responseText)
for (let i = 0; i < data.length; i++) {
Expand Down Expand Up @@ -138,4 +138,4 @@ function startAutoMode() {
}
}, GM_config.get("Delay"))
}, 2000)
}
}

0 comments on commit 0ee5546

Please sign in to comment.