please give me some hint to beat the lvl
please help @riticmaster908 @Aya @Rabbit or someone else that already surpass the level
I didn’t pass this level yet, but if you have code, even if only a little, maybe we can help as it is better than nothing
I am not on glacier but please give link to level
Could you post your code here? That can help us understand what’s wrong and we will help you.
try to wait untill the ritual is over and than use a warrior so you dont attack warlocks
i need hint 20 character
here i did some
# The ogres are trapping you with their dark rituals!
# Your hero can't do anything besides command and move without angering the warlocks.
# Beware ice, robots, traps, antigravity fields, and other dark magic.
# Somehow, you'll need to defeat Nalfar and save your paladin.
# The great treasure of Kelvintaph awaits your victory.
def commandTroops():
for index, friend in enumerate(self.findNearest(hero.findFriends())):
if friend.type == "paladin":
comPal()
if friend.type == "archer":
comArch()
if friend.type == "soldier":
comSol()
def comPal():
paladin = hero.findNearest(hero.findByType("paladin"))
friends = hero.findFriends()
enemies = hero.findEnemies()
if paladin.canCast("heal", paladin):
hero.command(paladin, "cast", "heal", paladin)
for friend in friends:
if friend.health < friend.maxHealth:
hero.command(paladin, "cast", "heal", friend)
for enemy in enemies:
if enemy:
hero.command(paladin, "attack", enemy)
def comSol():
soldier = hero.findNearest(hero.findByType("soldier"))
enemies = hero.findEnemies()
for enemy in enemies:
if enemy:
hero.command(soldier, "attack", enemy)
def comArch():
archer = hero.findNearest(hero.findByType("archer"))
enemies = hero.findEnemies()
for enemy in enemies:
if enemy:
hero.command(archer, "attack", enemy)
try using a warrior with sotf of sottg (sword of the forgotten, sword of the temple guard)
also commanding your paladin to shield and continuisly heal its self.
try using the power of the ranged archers to get rid of dark magic shamans
nvm i figured it out ty
This topic was automatically closed 12 hours after the last reply. New replies are no longer allowed.