Corpus Worker RPG
Reset Game
Status
Actions
Check Status
Go to Work
Sleep
Eat
Search Enhancements
Quit
Tip: Sleep 8h and eat twice daily to maintain efficiency.
Log
async function resetGame() { // Clear log and re-enable action buttons const log = document.getElementById('log'); log.innerHTML = ''; for (const btn of document.querySelectorAll('button[data-action]')) btn.disabled = false; await doAction('reset'); await doAction('start'); }
State