\begin{Verbatim}[commandchars=\\\{\}] //New Minerva Purification choice v1.2 //Added Rathazul back in //Changed a pair of commas for em dashes //Minerva\PYZsq{}s purification is changed to have you choose the method from Minerva\PYZsq{}s home instead of going to the character that\PYZsq{}ll heal her first. The method to check for companions is simplified and Minerva no longer hints heavily at it if you haven\PYZsq{}t met any requirement You think about Minerva\PYZsq{}s corruption. The parasite inside her is the source of it, so if you could get rid of it in some way she should be pure again. But what\PYZhy{}\PYZhy{}or who\PYZhy{}\PYZhy{}could remove something like that? You think back to the people you\PYZsq{}ve met. //if you don’t know anybody There\PYZsq{}s nothing. You don\PYZsq{}t know anybody who could help you. There has to be a solution out there, but you\PYZsq{}ve yet to find it. //if you know Marae Marae is the first to come to mind. As the life\PYZhy{}goddess, she should be able to heal Minerva\PYZsq{}s body with ease. //if you know Jojo. If you know Marae it continues from her paragraph, other wise it’s on its own paragraph. [if (checkMarae())\PYZob{} Jojo might also be helpful|Jojo comes to mind\PYZcb{}]. His arcane knowledge means he might know a method to cure Mineva, or if he doesn\PYZsq{}t at least his meditation technique could help ease the corruption. //if you know Rathazul. If you know either of the other two it continues from the same paragraph, otherwise it’s on its own. [if (checkMarae() \PYZam{}\PYZam{} checkJojo())\PYZob{} Finally, there\PYZsq{}s Rathazul. He| [if (checkMarae() || checkJojo())\PYZob{}You could also ask Rathazul, he|You think it would be out of his usual expertise, but Rathazul\PYZcb{}])\PYZcb{}] could maybe make a potion to purge that parasite. //A menu comes up to choose either character if available or return to the generic menu. //menu. [Marae] (Ask the Goddess Marae to cure Minerva.) [Jojo] (Become more than just friends.) [Rathazul] (Ask Rathazul for help.) [Back] () CODE VERSION public function pureMinervaChoice \PYZob{} outputText(\PYZdq{}You think about Minerva\PYZsq{}s corruption. The parasite inside her is the source of it, so if you could get rid of it in some way she should be pure again. But what\PYZhy{}\PYZhy{}or who\PYZhy{}\PYZhy{}could remove something like that? You think back to the people you\PYZsq{}ve met.[pg]\PYZdq{}); if (!checkMarae()) \PYZam{}\PYZam{} !checkJojo()) \PYZam{}\PYZam{} !checkRathazul()) outputText(\PYZdq{}There\PYZsq{}s nothing. You don\PYZsq{}t know anybody who could help you. There has to be a solution out there, but you\PYZsq{}ve yet to find it.\PYZdq{}); if (checkMarae()) outputText(\PYZdq{}Marae is the first to come to mind. As the life\PYZhy{}goddess, she should be able to heal Minerva\PYZsq{}s body with ease.\PYZdq{}); if (checkJojo()) outputText(\PYZdq{}[if (checkMarae)\PYZob{} Jojo might also be helpful|Jojo comes to mind\PYZcb{}]. His arcane knowledge means he might know a method to cure Mineva, or if he doesn\PYZsq{}t at least his meditation technique could help ease the corruption.\PYZdq{}); if (!checkRathazul()) outputText(\PYZdq{}[if (checkMarae() \PYZam{}\PYZam{} checkJojo())\PYZob{} Finally, there\PYZsq{}s Rathazul. He| [if (checkMarae() || checkJojo())\PYZob{}You could also ask Rathazul, he|You think it would be out of his usual expertise, but Rathazul\PYZcb{}])\PYZcb{}] could maybe make a potion to purge that parasite.\PYZdq{}); menu(); if (checkMarae()) addButton(0, \PYZdq{}Marae\PYZdq{}, purificationByMaraePart1).hint(\PYZdq{}Ask the Goddess Marae to cure Minerva.\PYZdq{}); addButton(1, \PYZdq{}Jojo\PYZdq{}, purificationByJojoPart1).hint(\PYZdq{}Ask Jojo for help.\PYZdq{}); addButton(2, \PYZdq{}Rathazul\PYZdq{}, purificationByRathazul).hint(\PYZdq{}Ask Rathazul for help.\PYZdq{}) addButton(14, \PYZdq{}Back\PYZdq{}, genericMenu.bind(true)); \PYZcb{} \end{Verbatim}