1、羊肠小道
# 到小路的尽头去,并在X处修一道围栏。
# 使用你的坐标移动函数 moveXY(x, y)。
# 这是小路的第一点。
hero.moveXY(36, 59)
# 向小路的下一点移动。
hero.moveXY(36, 13)
# 筑起一道围栏来阻挡食人魔。
hero.moveXY(71, 25)
hero.buildXY("fence", hero.pos.x, hero.pos.y)
hero.moveXY(73, 18)
2、九颗宝石
# 用不多于4条moveXY命令收集完所有宝石!
# 程序员需要创造性思考!
# Collect all the gems in 4 moveXY's or less!
# Programmers need to think creatively!
hero.moveXY(32, 48)
hero.moveXY(70,48)
hero.moveXY(31, 10)
hero.moveXY(32, 36)
3、巡逻兵克星A
# 记得敌人可能还不存在。
while True:
enemy = hero.findNearestEnemy()
if enemy:
# 如果有敌人,攻击它!
hero.attack(enemy)
pass