So I can’t really tell what “level” this is - it’s the first instance of dueling grounds, and I’ve been searching for a clue or hint for more than 2 hours and getting nowhere.
It says it’s “Level 20” in the bottom left, and shows 23/122 in “Backwoods Forest”.
It looks there are two players spawned: Myself and “Simple Red CPU” who is outfitted in the same exact gear as me. 4/5 year old “solutions” to this seem to replace “hero.” with self.
Either way, the best I ever do by following the comments is a draw:
// Defeat the enemy hero in a duel!
while(true) {
// Find and attack the enemy inside a loop.
// When you're done, submit to the multiplayer ladder!
var enemy = hero.findNearestEnemy();
hero.attack(enemy);
hero.attack(enemy);
}
Both dead, every time. First simple solution: remove one attack line.
So I attempted to integrate an if/else condition (based on numerous threads about this issue) - but no matter how I position my face, I always get an error adding the “else” statement “Expected an Identifier and instead saw Else”* I’m leaving this here, because after reloading the level about a dozen times, it’s not doing this any more. Problem is, even with an if/else condition the results are the same:
// Defeat the enemy hero in a duel!
while(true) {
// Find and attack the enemy inside a loop.
// When you're done, submit to the multiplayer ladder!
var enemy = hero.findNearestEnemy();
if (enemy) {
hero.attack(enemy);
}
else {
hero.shield();
}
}
Mutual death.
I have no idea what’s expected to survive since my enemy is a clone with the exact same plan and damage capabilities. I attempted to integrate an “if ready cleave” condition, but that fails also - I can add the “if ready” statement, but “cleave” isn’t a method I’m allowed.
I’m totally stumped as to how to survive the duel since the CPU gets my same sword and armor.