Cloudrip Brawl 2 help

image
What the heck does this error mean? It looks like Ritic Duck.

The code it gave me an error with,

# Stay alive for one minute.
# If you win, the next time you play will be more difficult and more rewarding!
# If you lose, you must wait a day before submitting again.
while True:
    enemy = hero.findNearestEnemy()
    item = hero.findNearestItem()
    if item:
        hero.move(item.pos)
    if enemy:
        hero.attack(enemy)
        if hero.isReady("bash"):
            hero.bash(enemy)
    if hero.costOf("paladin"):
        hero.summon("paladin")
    friend = hero.findFriends()
    hero.command(friend, 'cast', hero)

This is Cloudrip Brawl 2.

My Gear:

Maybe 'cast' needs to be more specific.

Try 'cast',{"heal", hero}) or smth like tht?

1 Like

When I do that, I get this error.
image
I need to survive for 60 seconds but I only survive for 36 seconds.

nvm. I solved it. Thanks for your help anyone.

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