First, what level is this? Second, post hero and equipment. Third, change category to #level-help for the Discourse, so you can mark a solution and close the topic without the mods.
ok, I add photos…
I did this
// Використовуйте заряди, щоб послабити зграї ворогів.
// Потім добивайте їх з лука.
while(true) {
var enemy = hero.findNearestEnemy();
if (enemy) {
var distance = hero.distanceTo(enemy);
if (distance > 30) {
hero.throwAt(enemy);
}
else {
hero.attack(enemy);
}
}
}
This topic was automatically closed 12 hours after the last reply. New replies are no longer allowed.