no, you get him from minesweeper, which is in the desert
I just realized that if you are a subscriber, you could easily win with hushbaum and unholy tome V (if you have enough gems to afford both). Just do this:
loop:
if self.canCast("summon-undead"):
self.cast("summon-undead")
if self.canCast("raise-dead"):
self.cast("raise-dead")
The heroes were assigned new unlock-levels, and Omarn got moved to the desert.
Hi! Iām new to CodeCombat, and I play with very basic hero and gear.
Max health is about 700-800.
And I think there is a bug in this level.
Enemy hero able to cast raise-dead, and he cast it over field. Every dead corpse raise.
So it is impossible for me to complete this level at its current state.
the new version of the level is the villain able to raise dead soldiers to fight for him i think that this is a bug? pls help I tried evrything but nothing works!!!
i also have 1100 lifes so health s not a issue
+1 how the #%^ are we supposed to win against an army which is revived every X seconds? He even revives allies who then become enemies. Ridiculous %) It's moderately easy not to die in this mission but you cannot kill the boss without a ranged weapon (real required) and this means he will indefinitely revive enemies.
See this thread: Siege of Stonehold - enemies are revived - bug?
This is my code
loop:
flag = self.findFlag()
enemy = self.findEnemies()
if flag:
self.pickUpFlag(flag)
elif enemy:
if self.isReady("cleave"):
self.cleave(enemy)
else:
self.attack(enemy)
i dont know whats wrong and im mad
Hello, Josh, and welcome. Please read the FAQ prior to your next post, in order to learn how to post your code with radiant, harmonious formatting. Iāve done it for you this time, but do so yourself in the future.
Things like āThis code doesnāt work!ā or āI need help!ā do not enlighten us the exact problem you face. Give us more description. What happens when you run your code? Is there an error? If so, what is it? But hereās what I can see:
You define enemy
as the list of all enemies. However, you then try to cleave and/or attack. It is not possible to attack a list. Perhaps you meant to define it as the nearest enemy?
you appear to be missing a:
self.findNearest()
before your findEnemies, therefore it would look like this:
loop: flag = self.findFlag() enemy = self.findNearest(self.findEnemies()) if flag: self.pickUpFlag(flag) elif enemy: if self.isReady("cleave"): self.cleave(enemy) else: self.attack(enemy)
This post is two months old. Donāt you think that Josh would have continued asking for help if he had not solved this problem? Please keep the dead resting!
Oops, didnāt check the dateā¦(Rest in peace, post!)
This is niceā¦ Thanks for the information.
I have tried everything and my hero still will not move at all. I think there is a bug with the flags because they worked fine on the other levels. Please help!
hey could you please post your code and a screenshot of the problem(or a video if you can make one.) and we will be happy to help
How you passed this level ? Can you help me ? because I am trying for 4 days but nothing is happening Please Can you show me your code?
Hi @shivani_mahajan welcome to the discourse!This is a family-friendly place where you can talk about code combat, ask questions, or just chat about off-topic things! Before you go any further, please review the guidelines and the FAQ if you havenāt already. Please also remember to format your code correctly. As for the level, we canāt provide any help until we see your code and gear. Also, showing code or asking for code is not allowed, so please donāt ask. It is fine, you are a new user and did not know, just please donāt do it in the future.