Skip to content

Instantly share code, notes, and snippets.

@esova-ana
Created April 9, 2016 06:21
Show Gist options
  • Save esova-ana/441fab06978684522580b51fb7ba2c42 to your computer and use it in GitHub Desktop.
Save esova-ana/441fab06978684522580b51fb7ba2c42 to your computer and use it in GitHub Desktop.
CodeCombat -Mountain
while (this.gold < 81) {
var coin = this.findNearest(this.findItems());
this.move(coin.pos);
}
if (this.gold > this.costOf("soldier")) {
this.summon("soldier");
}
for (var i=0; i < 4; i++) {
this.summon("soldier");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment