The problem is that you’ve used “true” instead of True (capital T).
You should be able to finish the rest. (remember to move back to the middle)
Danny
hero.moveXY(14, 24)
secretA = hero.findNearestFriend().getSecretA()
secretB = hero.findNearestFriend().getSecretB()
# If BOTH secretA and secretB are true, take the high path; otherwise, take the low path.
secretC = secretA and secretB
if secretC:
hero.moveXY(20, 33)
else:
hero.moveXY(20, 15)
hero.moveXY(26, 24)
# If EITHER secretA or secretB is true, take the high path.
secretD = secretA or secretB
if secretD:
hero.moveXY(32, 33)
hero.moveXY(38, 24)
# If secretB is NOT true, take the high path.
if secretB != "true":
hero.moveXY(44, 33)
else:
hero.moveXY(44, 15)
hero.moveXY(50, 24)
this is my equipment [file:///home/chronos/u-88782abd30cdb7ddf2b0e179fd1fd2a1c4e39df5/MyFiles/Downloads/Screenshot%202019-11-03%20at%202.09.08%20PM.png](file:///home/chronos/u-88782abd30cdb7ddf2b0e179fd1fd2a1c4e39df5/MyFiles/Downloads/Screenshot%202019-11-03%20at%202.09.08%20PM.png)
Hey Zijun, Boolean Values like True or False are supposed to be written in Upper-case without " " instead of "true" or "false" (they are not strings):
Try it that way and hopefully you’ll get what’s wrong.
Try to upload the picture here in your text editor, click and then select it from your PC.
Currently, it’s in your local storage and nobody can view it.
I think he means to capture a screenshot of your game (the level you are stuck in)