<div dir="ltr">Okay, I&#39;m resurrecting this project. I did a little more work on it
then what you see here, but that ended up getting accidentally deleted,
and I haven&#39;t done anything with Python since.<br><br>I&#39;m running into
one problem already, and I haven&#39;t really added any extra code. In the
content (at this point, the rooms still have Bob&#39;s descriptions), the
very first line of actual code (third line in the program) is returning
an error.<br>
<br>Offending code:<br><br># Content<div class="Ih2E3d"><br># retrieve data for current room<br></div>room == start<br>while true:<br>&nbsp;&nbsp;&nbsp; if room == start:<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; desc = &quot;Ahead of you, you see a chasm.&quot;<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ques = &quot;Do you wish to try jumping over it? Y/N&quot;<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; destY = 2<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; destN = 3<br><br>Error:<br><br>Traceback (most recent call last):<br>&nbsp; File &quot;samplegame.py&quot;, line 3, in &lt;module&gt;<br>&nbsp;&nbsp;&nbsp; room == start<br>NameError: name &#39;room&#39; is not defined<br>

<br><br>What&#39;s going on here?</div>