Added Soft Reset ability in Options. Cancelling work only halves reputation, not other stuff liek money and exp. Added 7 new hacking Augmentations

This commit is contained in:
Daniel Xie
2017-05-31 10:58:09 -05:00
parent 2752ec069a
commit 6714d664d0
7 changed files with 212 additions and 42 deletions
+9 -2
View File
@@ -1094,11 +1094,18 @@ var Engine = {
document.getElementById("world-menu-link").removeAttribute("class");
document.getElementById("tutorial-menu-link").removeAttribute("class");
//DEBUG
//DEBUG Delete active Scripts on home
document.getElementById("debug-delete-scripts-link").addEventListener("click", function() {
console.log("Deleting running scripts on home computer");
Player.getHomeComputer().runningScripts = [];
dialogBoxCreate("Forcefully deleted scripts. Please refresh page");
dialogBoxCreate("Forcefully deleted all running scripts on home computer. Please save and refresh page");
return false;
});
//DEBUG Soft Reset
document.getElementById("debug-soft-reset").addEventListener("click", function() {
dialogBoxCreate("Soft Reset!");
prestigeAugmentation();
return false;
});
},