I don't have enough gems

I know.
Well, here is the link if you want to see:

1 Like

You can beat both levels with other heros.

For hitman, use Nalfar, and equip a brown rat. First, summon allies and sacrifice them for damage, then make your pet use the distractionNoice() ability to make the witch not alarm, and then attack the witch at the same time.

For darkhopper, use a very tanky hero (e.g. Okar) and equip the strongest gear, use a blue fox to shapeshift and step on the fire-traps, and then cast earthskin at the same time. If you manage to get a lucky seed, you might survive the explosion, after that, just collect gems/attack skeletons.

3 Likes

There are other ways to do these levels, Hitman can also be beaten by Naria by casting invis and hiding, then backstab. Pender works too with the reset-cooldown, and its faster. Use the sulphur staff and fireball the witch (the ability takes less time for her to alarm, so it works).

Other ways to beat darkhopper are using wizards and jump as high as possible, and then explode the traps, then collect.

I beat darkhopper with 4 non-ritic heroes, and hitman with 6. Just explore the ways and then you could beat them. Good luck :slight_smile:

4 Likes

Yeah, I’ve also beaten the RItic levels without Ritic.
In Hitman You cast lightning-bolt on the witch and she dies. The fastest and the easiest solution.

1 Like

Well, I bought the brown pet, but It was too slow

Pls help: Hitman with Nalfar pls help! - #2 by Jason_king_lin

hi is the ladder multiplayer only for premium subscribers???
it says either: error loading with server. Try refreshing the page
or :error loading with server. Try refreshing the page u need a subscription to play tghis level

hi is the ladder multiplayer only for premium subscribers???
it says either: error loading with server. Try refreshing the page
or :error loading with server. Try refreshing the page u need a subscription to play tghis level

sorry for the two posts

Please creat a topic with error

are you a subscriber?

Do what Peter said, use lightning twig with the twilight glasses, and cast lightning bolt.

Well, I hope so, but the problem is I don’t have much gems to buy it.

And I’ve finished all the levels except “hitman”, “darhopper” and " Apocalypse"

you can do this

enemyHero=enemy hero (try to find i cant give all of it away)
hero.command(friend,"move", Vector.subtract(hero.pos,enemyHero.pos))

@riticmaster908 thank you very very very very much too!! :slightly_smiling_face: :slightly_smiling_face: :slightly_smiling_face: :slightly_smiling_face:

Well, errors:

show me ur vector subtract line

You want the code?
code:

def findEnemyHero():
    enemyHero = None
    bestHealth = 0
    for enemy in hero.findEnemies():
        if enemy.maxHealth > bestHealth:
            bestHealth = enemy.health
            enemyHero = enemy
    return enemyHero
def onSpawn():
    while True:
        pet.moveXY(51, 33)
        pet.shapeShift()
pet.on("spawn", onSpawn)
while True:
    if self.canCast("earthskin"):
        self.cast("earthskin", self)
    if self.isReady("heal") and self.health < self.maxHealth:
        hero.heal(self)
    enemy = self.findNearestEnemy()
    if enemy and enemy.type != 'sand-yak':
        self.scattershot(enemy)
        if self.canCast("chain-lightning"):
            self.cast("chain-lightning", enemy)
    for friend in self.findFriends():
        if friend.type!='fake-peasant' and friend.type!='paladin':
            self.command(friend, "defend", self)
        else:
            if friend.type == 'paladin':
                enemyHero = findEnemyHero()
                hero.command(friend,"move", Vector.subtract(hero.pos,enemyHero.pos))
                self.command(friend, "shield")
                if friend.canCast('heal'):
                    self.command(friend, "cast",'heal' ,self)
    if self.gold >= 80:
        self.summon("paladin")

simple fix

if friend.type == 'paladin':
                enemyHero = findEnemyHero()
                if enemyHero:
                    hero.command(friend,"move", Vector.subtract(hero.pos,enemyHero.pos))
                self.command(friend, "shield")