Bank raid help me!

i have 2 accounts, one is epiccoder999, one is progamer247 in the progamer account, i have a wand i really want because that account is the only subscribed account. I cant afford it cuz i bought a ton of trash armor like the engrave obsidian armor. so ya.

I’m not sure whether Nick resets gems just for that I’m afraid.
You could email support@codecombat.com but I wouldn’t get your hopes up.
Danny

Hello! I also need help with Bank Raid! My code:

# Wait for ogres, defeat them and collect gold.

while True:
    enemies = hero.findEnemies()
    # enemyIndex is used to iterate the enemies array.
    enemyIndex = 0
    # While enemyIndex is less than len(enemies)
    while enemyIndex < len(enemies):
        # Attack the enemy at enemyIndex
        enemy = enemies[enemyIndex]
        hero.attack(enemy)
        # Increase enemyIndex by one.
        enemyIndex += 1
    coins = hero.findItems()
    # coinIndex is used to iterate the coins array.
    coinIndex = 0
    while coinIndex < len(coins):
        # Get a coin from the coins array using coinIndex
        coin = coins[coinIndex]
        # Collect that coin.
        hero.moveXY(coin.pos.x, coin.pos.y)
        # Increase coinIndex by one.
        coinIndex += 1

Could somebody please help me?

Hello. Don’t repost in a topic that hasn’t been replied to in over a year. You should just make another post. But, lets take a look. Your code seems fine. I don’t see anything wrong. It might be your gear, or it could be a bad seed? Try running it again

2 Likes

Sorry! I already got past the level. I should have told you. :frowning:

2 Likes

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