# \[Solved\] The Wizard's Door. Help!

**URL:** https://discourse.codecombat.com/t/solved-the-wizards-door-help/13578
**Category:** Level Help
**Created:** [January 16, 2018, 11:58am UTC](https://discourse.codecombat.com/t/solved-the-wizards-door-help/13578 "2018-01-16T11:58:48Z")
**Posts on this page:** 2
**Page:** 2

<div class="post-metadata">

### Author: ![milton.jinich](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.codecombat.com/milton.jinich/32/21419_2.png) [@milton.jinich](https://discourse.codecombat.com/u/milton.jinich)
#### Post date: [February 11, 2021, 3:24pm UTC](https://discourse.codecombat.com/t/solved-the-wizards-door-help/13578/21 "2021-02-11T15:24:26Z")

</div>

delete these `""` for all of them then you are good to go

---

<div class="post-metadata">

### Author: ![Michael\_Summers](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.codecombat.com/michael_summers/32/18573_2.png) [@Michael\_Summers](https://discourse.codecombat.com/u/Michael_Summers)
#### Post date: [March 24, 2021, 5:27pm UTC](https://discourse.codecombat.com/t/solved-the-wizards-door-help/13578/22 "2021-03-24T17:27:25Z")

</div>

```python
Move to Laszlo and get the secret number from him.
hero.moveXY(30, 13)
secret = hero.findNearestFriend().getSecret()
secretr = secret
number = secret + 7

Follow Laszlo’s instructions to get the magic number!
Move to Erzsebet and say her magic number.
hero.moveXY(17, 26)
hero.say(number)
number = (7 + secret) % 4

#Move to Simonyi and say his magic number.
hero.moveXY(30, 39)
hero.say(number)
number = number * secretr

Move to Agata and say her magic number.
hero.moveXY(43, 26)
hero.say(number)

hero.say(number)

```

[Previous page](https://discourse.codecombat.com/t/solved-the-wizards-door-help/13578.md?page=1)
