msgid "The program will look like the previous one, but before you shoot, use the instruction <c/><a cbot|move>move</a>();<n/> in order to get close enough."
msgstr "Программа будет выглядеть как и предыдущая, но перед тем, как вы будете стрелять, используйте инструкцию <c/><a cbot|move>move</a>();<n/> чтобы подойти достаточно близко."
msgid "The question is just how many meters the bot must move. The instruction <code><a cbot|dist>distance</a>( , )</code> calculates the distance between two positions. In this case, we need to know the distance between the bot and the target. The position of the target is given by <code>item.position</code>, the position of the bot is give by <code>position</code>. The distance between the bot and the target is given by <code><a cbot|dist>distance</a>(position, item.position)</code>. The range of a fireball cannon is 40 meters. In order to get close enough, the bot must move forward <code><a cbot|dist>distance</a>(position, item.position)-40</code> meters. The following line will do this:"
msgstr "Вопрос просто в том, как близко должен подойти бот к пауку. Инструкция <code><a cbot|dist>distance</a>( , )</code> рассчитывает расстояние между двумя позициями. В этом случае мы должны узнать расстояние между ботом и целью. Позиция цели задается инструкцией <code>item.position</code>, позиция бота задается <code>position</code>. Расстояние между ботом и целью задается <code><a cbot|dist>distance</a>(position, item.position)</code>. Дальность полета огненного шара из пушки 40 метров. Чтобы подойти достаточно близко, бот должен пройти вперед <code><a cbot|dist>distance</a>(position, item.position)-40</code> метров. Это будет сделано с помощью следующей строки:"