Map the Monsters Scripting Question

hamstersaur

New member
Hi there,
I am working on a script and I'm stuck on a particular problem. I need the script to use Map the Monsters to force a monster to appear in a given zone. However, the script just breaks and tells me the choice option is not available. Is there a way to force Mafia to select a particular option and not break?
Thanks
 

Crowther

Active member
This looks a bit complicated. It is not a normal choice adventure.
Code:
<center>
Head towards the area where you'll find:

<form method="post">
     <input type="hidden" name="option" value="1" />
     <input type="hidden" name="pwd" value="deleted" />
     <input type="hidden" name="whichchoice" value="1435" />
     <input type="hidden" name="heyscriptswhatsupwinkwink" value="1758" />
     <input type="submit" class="button" value="angry tourist" />
 </form>
 <form method="post">
     <input type="hidden" name="option" value="1" />
     <input type="hidden" name="pwd" value="deleted" />
     <input type="hidden" name="whichchoice" value="1435" />
     <input type="hidden" name="heyscriptswhatsupwinkwink" value="1759" />
     <input type="submit" class="button" value="horrible tourist family" />
 </form>
 <form method="post">
     <input type="hidden" name="option" value="1" />
     <input type="hidden" name="pwd" value="deleted" />
     <input type="hidden" name="whichchoice" value="1435" />
     <input type="hidden" name="heyscriptswhatsupwinkwink" value="1760" />
     <input type="submit" class="button" value="garbage tourist" />
 </form>

 <form method="post">
     <input type="hidden" name="option" value="2" />
     <input type="hidden" name="pwd" value="deleted" />
     <input type="hidden" name="whichchoice" value="1435" />
     <input type="submit" class="button" value="The Exit (1)" />
 </form>

</center>
We've been winked at.
 
Top