codecombat: kithgard dungeon - twisted canyon solution

preview_player
Показать описание
#CodeCombat #twisted #canyon #concept #python complete kithgard gates and another level to play twisted canyon.
Рекомендации по теме
Комментарии
Автор

Thanks for this...my map never loaded correctly so I couldn't see the paths.

Wesley.Wilkinson
Автор

this is way easier brother
hero.attack("Treasure Chest")
hero.moveUp()
hero.moveDown()
hero.moveRight()
hero.attack("Wicket")
hero.moveUp(2)
hero.moveDown(2)
hero.moveLeft(3)
while True:

hero.moveUp(2)
hero.moveLeft(2)
enemy = hero.findNearestEnemy()
hero.attack(enemy)
hero.moveRight(2)
hero.moveDown()
hero.moveRight()
hero.moveUp()
hero.moveRight()

joelaguirre
Автор

My attempt. Be interested to know if you found the site useful after a couple of years? - might save me some time - trying to get my kids in to it.

hero.attack('Treasure Chest')
hero.moveRight()
hero.moveLeft(2)
hero.moveDown()
hero.moveRight(3)
hero.attack('Gate')
hero.moveRight(2)
hero.moveLeft(2)
while True:
hero.moveUp(2)
enemy = hero.findNearestEnemy()
hero.attack(enemy)
hero.moveLeft(2)
hero.moveRight(2)
hero.moveDown()
hero.moveRight()
hero.moveUp()
hero.moveRight()

chris
visit shbcf.ru