Last active
December 11, 2015 17:48
-
-
Save codler/4637138 to your computer and use it in GitHub Desktop.
BombCarrier commands
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3d mode: | |
remove body > div node | |
set breakpoint at line 80 in game.js, just right after _GAME_.branch_3D and set it to true | |
run init_game(); | |
run init_core(); | |
run init_scene(); | |
Reduce time left: | |
fightTime.timeAlive -= 10 * 1000 | |
Fix removed BlobBuilder: | |
if (window.Blob) { window.BlobBuilder = function() {this.text=""}; window.BlobBuilder.prototype.append = function(t) {this.text+=t}; window.BlobBuilder.prototype.getBlob = function(mt) { return new Blob([this.text], {type:mt}) } } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment