|
|
|
|
|
by jozydapozy
4481 days ago
|
|
This script will give you a keyboard-shortcut to skip the 'boring beginning' of the game. Run it a few times to get a nice starting point: function arrows(key) {
var eventObj = document.createEvent("Events");
eventObj.initEvent("keydown", true, true);
eventObj.which = key;
document.dispatchEvent(eventObj);
} document.onkeypress = function (e) {
e = e || window.event;
if (e.charCode = 122) {
for (y=0; y<=100; y++) {
arrows(39); arrows(38); arrows(37); arrows(38);
}
}
}; var divje = document.createElement('div');
divje.innerHTML = "Press 'z' to fast forward ;)";
divje.style.position = 'fixed';
divje.style.padding = '10px';
divje.style.top = '10px';
divje.style.left = '10px';
document.body.appendChild(divje); (some js based on script from varyform) |
|