msgid "You must follow the <a object|bottr>target bot</a> with the explosive device, but without touching it, otherwise it will blow up. Every time the target bot stops, you must be close to it (less than 10m). After you managed to stay close to the target bot at 10 successive stops, it will lead you to the finishing pad, and the exercise is over. At every stop, the target bot checks that you are there. If you are not there, you must start over again."
msgstr "Folgen Sie der <a object|bottr>mobilen Zielscheibe</a> mit dem Sprengkörper, ohne sie zu berühren, denn andernfalls geht sie in die Luft. Jedes Mal, wenn der Ziel-Roboter stoppt, müssen Sie sich in seiner Nähe befinden (weniger als 10m Abstand). Wenn Sie es geschafft haben, 10 mal hintereinander bei einem Stopp nahe genug am Ziel-Roboter zu sein, wird er Sie zur Zielfläche führen und die Übung ist bestanden. Bei jedem Stopp prüft der Ziel-Roboter, ob Sie in der Nähe sind. Falls nicht, müssen Sie von vorn beginnen."
msgstr "Wie schon so häufig zuvor benutzen Sie auch hier ein <code><a cbot|while>while</a> (<a cbot|true>true</a>)</code>, um die Endlosschleife zu realisieren:"
msgid "Use the instruction <code><a cbot|dist>distance</a>( , )</code> to calculate the distance between two points. The first point will be the position of your own bot, given by <code>position</code>. The second point is the position of the target bot, given by <code>target.position</code>."
msgstr "Benutzen Sie die Anweisung <code><a cbot|dist>distance</a>( , )</code>, um den Abstand zwischen zwei Punkten zu berechnen. Der erste Punkt ist hierbei die Position Ihres eigenen Roboters, gegeben durch <code><a cbot|object>position</a></code>. Der zweite Punkt ist die Position des Ziel-Roboters, <code>target.<a cbot|object>position</a></code>."
"If the distance to the target bot is smaller than 5m, move backward with a speed inversely proportional to the distance: the closer you are to the bot, the faster you must move backward.\n"
"You can use the <a cbot|expr>expression</a> <code>distance/5-1</code> in order to achieve this, together with the <code><a cbot|if>if</a></code> to test if the target is closer than 5m:"
"Falls der Abstand zum Ziel-Roboter kleiner als 5m ist, bewegen Sie sich mit einer vom Abstand abhängigen Geschwindigkeit rückwärts: je näher Sie am Ziel-Roboter sind, umso schneller müssen Sie sich zurückbewegen.\n"
"\tAbstand = 5.0 Meter -> Geschw. = 0.0\n"
"\tAbstand = 2.5 Meter -> Geschw. = -0.5\n"
"\tAbstand = 0.0 Meter -> Geschw. = -1.0\n"
"Sie können den <a cbot|expr>Ausdruck</a> <code>distance/5-1</code> verwenden, um dies zu erreichen. Zusammen mit der <code><a cbot|if>if</a></code>-Anweisung für den Test, ob der Abstand kleiner ist als 5m sollte es so aussehen:"
msgid "If the distance to the target is greater than 5m, move towards the target. First calculate the angle necessary to face the target with the instruction <code><a cbot|direct>direction</a></code>. You can then adjust the speed of the right-hand and left-hand motor in order to follow the target:"
msgstr "Wenn der Abstand zur Zielscheibe größer ist als 5m, bewegen Sie sich auf sie zu. Berechnen Sie hierzu zunächst den Winkel mit der Anweisung <code><a cbot|direct>direction</a></code>. Sie können dann die Geschwindigkeiten des linken und des rechten Motors so anpassen, dass sich der Roboter auf das Ziel zubewegt:"
"When the target is on your left, <code>dir</code> takes a positive value, ranging between 0 and 180. The <a cbot|expr>expression</a> <code>1-dir/90</code> returns a speed ranging between 1 and -1, according to the direction:\n"
"Wenn der Zielroboter sich links von Ihrer Bewegungsrichtung befindet, enthält <code>dir</code> einen positiven Wert zwischen 0 und 180. Der <a cbot|expr>Ausdruck</a> <code>1-dir/90</code> ergibt eine Geschwindigkeit zwischen 1 und -1, abhängig von der Richtung:\n"
msgid "The only task left for you now is to declare the <a cbot|var>variables</a> that you use in the program. <code>target</code> is of type <code>object</code>, whereas <code>dir</code> and <code>len</code> are of type <code>float</code>."
msgstr "Die einzige Aufgabe, die Ihnen noch bleibt, ist die Deklaration der <a cbot|var>Variablen</a> die Sie im Programm benutzen. <code>target</code> ist vom Typ <code><a cbot|object>object</a></code>, wogegen <code>dir</code> und <code>len</code> vom Typ <code><a cbot|float>float</a></code> sind."