Universal Paperclips Wiki

To open Chrome Developer Tools, Press Ctrl + Shift + I on the game webpage

Quantum Computing Colour Indicator[]

This code will change the colour of the "Compute" button to indicate whether clicking it will give you a negative or positive number of qOps.

To activate, paste this code into your browser's console while playing the game:

setInterval(function(){var e=qChips[0].value+qChips[1].value+qChips[2].value+qChips[3].value+qChips[4].value+qChips[5].value+qChips[6].value+qChips[7].value+qChips[8].value+qChips[9].value;document.getElementById("btnQcompute").style.color=e>0?"green":"red"},500);