Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 248 Bytes

10_ambush.md

File metadata and controls

20 lines (15 loc) · 248 Bytes

Jhack (giacgbj)

Just move right.

if(me.getY()<13)
  me.move('down');
else if(me.getX()>0)
  me.move('left');

and

if(me.getY()<13)
  me.move('down');
else if(me.getX()<map.getWidth())
  me.move('right');