replit clicker
Made with HTML, CSS, JSRecent comments (16)ZacharyEtienne36 months agovar numClicks = prompt("How many times should the button be clicked? (You can change delay variable in code, make greater or less depending on pc speed)");
if (numClicks === null || numClicks === undefined || isNaN(numClicks)) { alert("ERR: Clicks value is undefined or null."); throw new Error("Invalid clicks value"); }
numClicks = Math.abs(parseFloat(numClicks)); numClicks = Math.round(numClicks);
var delay = 0.005; var estimatedTime = delay * numClicks;
alert("Clicking the button " + numClicks + " times will take approximately " + estimatedTime + " seconds.");
var button = document.getElementById("button");
var clickCount = 0; var clickInterval = setInterval(function() { if (clickCount >= numClicks) { clearInterval(clickInterval); return; } button.click(); clickCount++; }, delay * 1000);
IsaiahNegron10 months agoIt not working
Jellied2 years agoVery cool - I have reached 10 million REPLs >:)
inversion
Made with Node.jsInversion is a platformer where 2 players must come together to win.
Recent comments (1)remarkablemark2 years agoInversion
Inversion is a 2D platformer puzzle game where two players must come together to win.
This game was made during the Global Game Jam 2022, in which the theme was
duality
. The game was bootstrapped fromphaser-platformer
. Read the blog post.Play the game on:
Credits
- benox3 - Programmer, Level Designer, Artist
- remarkablemark - Programmer, Level Designer
- emex - Composer
- mikewesthad - Tilemaps in Phaser 3
- 0x72 - 16x16 Industrial Tileset
Phaser Template
Repls
Community
All Repls