var arDrone = require("ar-drone");
var client = arDrone.createClient();
client.takeoff();
client.after(5000, function() {
client.up(0.5);
}).after(1000, function() {
this.stop();
this.animate('flipAhead', 1000);
}).after(1500, function() {
this.stop();
this.land();
});