Skip to content

Instantly share code, notes, and snippets.

@ikkebr
Created December 10, 2012 19:55
Show Gist options
  • Save ikkebr/4252922 to your computer and use it in GitHub Desktop.
Save ikkebr/4252922 to your computer and use it in GitHub Desktop.
Crapie
//FightCode can only understand your robot
//if its class is called Robot
var Robot = function(robot) {
};
Robot.prototype.onIdle = function(ev) {
var robot = ev.robot;
robot.ahead(Math.random(100)*100);
robot.rotateCannon(100);
robot.back(Math.random(100)*100);
robot.rotateCannon(100);
};
Robot.prototype.onScannedRobot = function(ev) {
var robot = ev.robot;
robot.fire();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment