level 1
地牢那关我是一个一个方向试出来的,看排序也有人是绕一大圈完成的,它们的炮打到自己就会死掉
测距仪不知道为什么瞄不到第二只食人魔,还在试
2015年10月06日 07点10分
7
level 1
Robot Ragnarok
// The robot ragnarok is upon us!
// Dodge the incoming plasma balls for 15 seconds.
// If you can beat it before August 26, you'll earn Wyvernclaw, a legendary wizard-only weapon.
// Wyvernclaw will not be available after August 26.
this.moveUp(2);
this.moveDown(2);
this.moveLeft();
this.moveRight();
this.moveDown(2);
this.moveRight();
2015年10月13日 15点10分
9
level 9
地牢那关看运气,主要先往上走,然后再根据情况走左右,慢慢来
2015年10月15日 13点10分
10
地牢那关主角要有足够的速度,多调试调试就能过了。 之前主角速度太慢老过不了,后来买了角色买了装备就很容易就过了
2015年10月15日 15点10分
致命关卡那关过了没有?怎么破门
2015年10月15日 15点10分
level 1
enemy1 = "Gort"distance1 = hero.distanceTo(enemy1)hero.say(distance1)enemy2 = "Smasher"distance2 = hero.distanceTo(enemy2)# 将distance2变数作为参数,传入say()方法hero.say(distance2)enemy3 = "Charles"enemy4 = "Gorgnub"distance4hero.distanceTo(enemy4)hero.say(distance4)
2017年10月19日 12点10分
18
level 1
# 食人魔正在森林中巡视!
# 使用distanceTo方法找到敌人在哪。
# 说出与每个敌人的距离,告诉大炮向哪开火!
enemy1 = "Gort"
distance1 = hero.distanceTo(enemy1)
hero.say(distance1)
enemy2 = "Smasher"
distance2 = hero.distanceTo(enemy2)
# 说出distance2变量!
hero.say(distance2)
# 不要攻击友方!
friend3 = "Charles"
distance3 = hero.distanceTo(friend3)
# 最后的食人魔。
enemy4 = "Gorgnub"
# 确定并说出与enemy4之间的距离:
distance4 = hero.distanceTo(enemy4)
hero.say(distance4)
2026年01月11日 10点01分
19