Застрявшие в дюнах(пустыня)

как пройти через yak?

Если у вас возникли проблемы с этим уровнем, пожалуйста, оставьте свой код (отформатированный правильно, как указано в https://codecombat.discourse.com/faq)
так что мы можем вам помочь.
Благодарю.
:lion: :lion: :lion:

while True:
    enem = hero.findNearestEnemy()
    flag = hero.findFlag()
    if flag:
        if flag:
            hero.pickUpFlag(flag)
        else:
            hero.moveXY(hero.pos.x+1, hero.pos.y)
    elif enem:
        if flag:
            hero.pickUpFlag(flag)
        else:
            hero.attack(enem)
    else:
        hero.moveXY(hero.pos.x+1, hero.pos.y)

Извините, я немного запутался в том, что это за уровень. Не могли бы вы скопировать вещь в строке поиска, когда вы находитесь на уровне, и опубликовать ее в беседе, чтобы я мог помочь вам с уровнем.
Благодарю.
:lion: :lion: :lion:

It’s due to system thinking that the new user is copying and pasting and trying to spam. Just that. I’ve fixed it

1 Like

here is a link to this task https://codecombat.com/play/level/stranded-in-the-dunes?
is it possible not to attack yaks? or run away that would not be aggrized by me

Here’s a simple attack code but avoiding yaks:

while True:
    enemy=hero.findNearestEnemy()
    if enemy.type!='sand-yak':
        hero.attack(enemy)


gives an error message. I just wanted to check.

You need the correct glasses to be able to use .type

I apologize for asking endlessly. but I rummaged through my glasses and never found what I needed (((

You haven’t checked whether there’s an enemy either.
I think anyone can check type, whatever your glasses are.
It should be:

if enemy and enemy.type...

:lion:

2 Likes

Thank you very much. You are very smart))):vulcan_salute:

Nevermind you’re right @Deadpool198, I misread the error message. Thought it was something like Type error: Can't read protected property() Then it’ll be related to equipment. But in this case it’s an error stating that it doesn’t have anything to check the type of, which is why it’s returning an error. :tired_face:

2 Likes