# uncomment the next line and replace _key_ with a key to display the reminder message when you press that key #macros += M _key_ ===CRAWL_COSPLAY_CONDUCT { function CRAWL_COSPLAY_CONDUCT() crawl.mpr("\nCOSPLAY CHALLENGE OPTIONAL CONDUCTS AND CHALLENGES:") crawl.mpr("+ Don't wear dragon scales. ") crawl.mpr("+ Train Invo to 14 (Hu) or 21 (Ds). ") crawl.mpr("+ Enter Pandemonium. ") crawl.mpr("* Reach Lair:6 without using potions or scrolls.") crawl.mpr("* Get a rune from Pan during the orb run. \n") end } # Crawl Cosplay Challenge, Set 3 Week 5: Frances (Hu/Ds Gl ^Mak) { if (you.race() == "Human" or you.race() == "Demonspawn") and you.class() == "Gladiator" then CRAWL_COSPLAY_CONDUCT() -- + Don't wear dragon scales. crawl.setopt("autoinscribe += dragon scales:cosplay") -- + Train Invo to 14 (Hu) or 21 (Ds). if you.race() == "Human" then crawl.setopt("flash_screen_message += Invocations skill increases to level 14!") else crawl.setopt("flash_screen_message += Invocations skill increases to level 21!") end -- + Enter Pandemonium. crawl.setopt("flash_screen_message += You enter the halls of Pandemonium!") crawl.setopt("flash_screen_message += Found a one-way gate leading to the halls of Pandemonium.") -- * Reach Lair:6 without using potions or scrolls. -- no good way to have a message when you hit Lair:6 crawl.setopt("autoinscribe += potion:*cosplay*") crawl.setopt("autoinscribe += scroll:*cosplay*") -- * Get a rune from Pan during the orb run. crawl.setopt("flash_screen_message += You pick up the Orb of Zot!") end }