The Wizard's Door

Hi Guys,

I’ve been trying to work this out on my own until I saw a Youtube tutorial that passed this level with the same code that I was using. Is there a bug or am I missing something?

I’m not looking for the easy answer but if you could point me in the right direction I would really appreciate it.

# Move to 'Laszlo' and get his secret number.
hero.moveXY(30, 13)
las = hero.findNearestFriend().getSecret()

# Add 7 to 'Laszlo's number to get 'Erzsebet's number.
# Move to 'Erzsebet' and say her magic number.
erz = las + 7
hero.moveXY(17, 26)
hero.say(erz)

# Divide 'Erzsebet's number by 4 to get 'Simonyi's number.
# Go to 'Simonyi' and tell him his number.
sim = erz / 4
hero.moveXY(30, 39)
hero.say(sim)
# Multiply 'Simonyi's number by 'Laszlo's to get 'Agata's number.
# Go to 'Agata' and tell her her number.
aga = sim * las
hero.moveXY(43, 26)
hero.say("aga")

well, in

erz = las + 7
hero.moveXY(17, 26)
hero.say(erz)

you don’t have quotation marks, and in

aga = sim * las
hero.moveXY(43, 26)
hero.say("aga")

you do have quotation marks. So that is probably your problem.

1 Like