You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ππ Simple script for hack typeracer game. Just for fun! ππ
Paste the code in browser console when the countdown will be started.
varINTERVAL_IN_MILLISECOND=118;//Change as you wishvarinputField=document.querySelector('.txtInput');varDOMs=[...document.querySelector('.gameView').getElementsByTagName('span')];DOMs=DOMs.splice(DOMs.length-3,3);varfullSentence=(DOMs.map(DOM=>DOM.textContent)).join('');[...fullSentence].forEach((character,i)=>{setTimeout(()=>{inputField.value=inputField.value+character;inputField.dispatchEvent(newEvent('keydown'));},i*INTERVAL_IN_MILLISECOND);})
About
Simple script for hack typeracer game. Just for fun!