made it to level 33 then failed horribly as the game thought I was typing a different word, since there was like 100 characters on the screen. wonder if I can script every alpha character per second and cheat :P
ig.game.draw = function (){this.backdrop.draw(0,0);var d=this.lastKillTimer.delta();ig.system.context.globalAlpha=d 0) { while (ig.game.entities.length > 0) ig.game.entities.pop();} }
causes you to auto-win every round. Just goes to show that, as per usual, programming hacks for the game is more fun than the game itself. Programming vs anything else? Well, programming is gonna win every time.
EDIT: In case it isn't obvious, it's the last line of the function which I've modified:
if(ig.game.entities.length > 0) { while (ig.game.entities.length > 0) ig.game.entities.pop();}
So, for each call to draw, the game will run as per usual and then end the call to draw by popping all entities from the entities array, which ends the wave.