Dizziness - Python - Level Help

Is it possible to pass this level with the armor, helmet and weapon that I currently have? I have tried several times with this code that I added the “flag” to dodge the attacks and not take too much damage but it is impossible for me to complete the level and I have no way to make more gems because I have already passed the rest of the levels.


Welcome to the forum, @jesusbritomolina! Can you please paste your code by pressing the </> button?

#  A Shadow Vortex will help against the ogre throwers.
hero.shadowVortex(Vector(20, 32), Vector(20, 36))
while True:
    # Don't forget about flankers. Be sure to fight:
    enemy = hero.findNearestEnemy()
    flag = hero.findFlag()
    if flag:
        hero.pickUpFlag(flag)
    if enemy:
        hero.attack(enemy)
    
    brawlers = hero.findByType("brawler")
    # If you see a brawler and "shadow-vortex" is ready:
    if brawlers and hero.isReady('shadow-vortex'):
        # Create a vortex from (1, 1) to (80, 68):
        hero.shadowVortex(Vector(1, 1), Vector(80, 68))

I edited only one thing in your code and it worked without using flags.

just pick an index
Hint:

brawlers[0]

I edited the code as you said and it doesn’t work the same, my character dies very fast, I think I need more armor and a good weapon but I don’t have enough gems and I have no more levels to make more gems. can you pass capture with what armor, helmet and weapon I use to pass the level? @Aya

Maybe you can equip the bomb you have for throw method and use it, and also use chain-lightning from the emperor’s gloves

It’s the same, once the ogre accumulate my character has too little life to withstand the blows and the blows I give are too few to kill the ogre quickly before they get close. @Aya @MarcusL123

#  A Shadow Vortex will help against the ogre throwers.
hero.shadowVortex(Vector(20, 32), Vector(20, 36))
while True:
    # Don't forget about flankers. Be sure to fight:
    enemy = hero.findNearestEnemy()
    flag = hero.findFlag()
    if flag:
        hero.pickUpFlag(flag)
    if hero.canCast("chain-lightning", enemy):
        hero.cast("chain-lightning", enemy)
    if enemy:
        hero.throw(enemy)
        hero.attack(enemy)
    
    brawlers = hero.findByType("brawler")
    # If you see a brawler and "shadow-vortex" is ready:
    if brawlers and hero.isReady('shadow-vortex'):
        # Create a vortex from (1, 1) to (80, 68):
        hero.shadowVortex(Vector(1, 1), Vector(80, 68))

Which Hero are you using?

“Ritic the Cold” the only hero that the game allows to pass the level… @MarcusL123

He’s using shadow vortex so ritic.

is it true that the only way to pass this level is to upgrade my armor, helmet and weapon since the code is ok? it would be about 19000 gems which is not enough because I have 1303 gems and I have no more levels available to do to reach 19000 gems. :'c @Endsoldier @MarcusL123 @Aya


That was the equipment i used

play some brawls then try buying the precision rifle because as it seems, your code is fine

the weapon you are using costs 2600 and the armor 840 and I have 1303 gems, I would lack 2137 and I have no more levels to earn gems, how do I earn more gems? @Aya @Endsoldier @MarcusL123

just stick with the weapon

here how to collect gems:

1 Like

How many simulated games do I have to play to collect 1300 gems? @Aya

I have no idea, but i think it wouldn’t take so much time, but it still needs its time

I have already played 1300 simulated games but no credits yet. @Aya

You can try signing out or signing in, or try spamming the sound button 20 times, that might help

Yes, I earned 3000 gems in a hour (I opened 9 simulating windows) and you can even make it overnight to get a lot of gems!

1 Like

This topic was automatically closed 12 hours after the last reply. New replies are no longer allowed.