CRAG TAG

Use your best boots to catch up to Pender Spellbane.
ペンダーSpellbaneに追いつくために、あなたの最もよいブーツを使用しなさい。

目標

Catch up to Pender Spellbane.
ペンダーSpellbaneに追いつきなさい。

move is different from moveXY!
moveはmoveXYと違う!

move(pos) has a single argument instead of moveXY(x,y)'s two arguments.
moveXY(x,y)は2つの引数を持つ代わりに、move(pos)は一つの引数を持つ

You can use it to move to a coin's position like:move(coin.pos) instead of moveXY(coin.posx,coin.pos.y)
あなたは、コインのポジションに動くために、それを使用できる:moveXY(coin.posx、coin.pos.y)の代わりにmove(coin.pos)を

Finally,moveXY moves until the destination is reached.
move only moves a single step towards the target destination.
Now you can do things inbetween movement commands!
最後に、moveXYは、目的地に到着するまで動く。
MOVEはシングルステップを目標宛先に動かすだけである。
今や、あなたは物inbetween動きコマンドをすることができる!

ヒント

Catch up to Pender Spellbane to learn her secrets.
彼女の秘密を学ぶために、ペンダーSpellbaneに追いつきなさい。

Pender is the only friend here, so she's always the nearest.
ペンダーはここの唯一の友人である。従って、彼女はいつも最も近い。

moveXY() will move to where Pender is,
but she'll have moved away by the time you get there.
moveXY()は、ペンダーがである所に動く、
しかし、彼女は、あなたがそこに到着する時間までに転居しているであろう。

move() only moves one step at a time,
so you can use it to track your target.
hero.move(pender.pos);
move()により1つのステップが一度に動かされるだけである、
従って、あなたは、あなたの目標を追跡するために、それを使用できる。

解答

a
while(true) {
if (pender) {
hero.move(pender.pos);
a

  • 最終更新:2016-06-16 20:33:21

このWIKIを編集するにはパスワード入力が必要です

認証パスワード