encounters a monster (oklob plant, hostile statue) during the tutorial that triggers an autoexclusion.
There really needs to be an in-game way of explaining what they're for when such an autoexclusion happens to the player for the first time, particularly for the tiles build where excluded grids are visibly different from non-excluded ones. I'm afraid the FAQ is too obscure for this one, as well. Maybe add something to descriptions of monsters that have an exclusion centered on them?
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9831 c06c8d41-db1a-0410-9941-cceddc491573
P46EVQ3PML6ZLW6VCXROJSWWTV3SZ3JSWA3VGQ7LADRBSPATOYGQC
X3JAMTLR5H345ZAHGB5JYQWA6FTIGVIZPMTVVGQRWEWLL4JHAWJQC
JBZ7NU4BB5PGQWCOSZHD5OQUHQIVOD4XGJLSJQ7BUGQEGPRTVGZQC
77H4BWWPPGLM3PLZH4QTAJRXIZTSDVNCOKZE223I437FN2UJ34RQC
ACDPN464TK2LKLHSDN3YVRHAPF7WLSLLU3UHIYEXKFDEZPEU3XSQC
QXD3HX6QQ37PW6HVKIIKGFLO2ACROLUGKK66KFX7ED6SO4FDXB2AC
ZNMT5CZHP2FC4HTLNA7KYEDGFBXSCUE5QHJOALVPE6RDPHSEDXRQC
K2CS6TCX2NDVL2ASEHGP4J4K4IJ6FP3ANNKTSIWVG43HPYSBX6ZQC
HQTS3VQ6PNUZKHNVEWMML7JNAAAKL4DSW3KFSRCCSLGYTDHZFCCAC
FU663V7RFZNSMG5P2E7TZJZWSGXWLCCFXSVGH4Z222FIJTH4R3KAC
case TUT_AUTO_EXCLUSION:
// In the highly unlikely case the player encounters a
// hostile statue or oklob plant during the tutorial...
viewwindow(true, false);
if (Options.tut_explored)
{
// Hack: Reset tut_just_triggered, to force recursive calling of
// learned_something_new().
Options.tut_just_triggered = false;
learned_something_new(TUT_AUTO_EXPLORE);
Options.tut_just_triggered = true;
}
text << "\nTo prevent autotravel or autoexplore taking you into "
"dangerous territory, you can set travel exclusions by "
"entering the map view (<w>X</w>) and then toggling the "
"exclusion radius on the monster position with <w>e</w>. "
"To make this easier some immobile monsters listed in the "
"<w>auto_exclude</w> option (such as this one) are considered "
"dangerous enough to warrant an automatic setting of an "
"exclusion. It will be automatically cleared if you manage to "
"kill the monster. You could also manually remove the "
"exclusion with <w>Xee</w> but unless you remove this monster "
"from the auto_exclude list, the exclusion will be reset the "
"next turn.";
break;
break;
case DNGN_CLOSED_DOOR:
if (!Options.tut_explored)
{
ostr << "\nTo avoid accidentally opening a door you'd rather "
"remain closed during travel or autoexplore, you can "
"mark it with an exclusion from the map view "
"(<w>X</w>) with <w>ee</w> while your cursor is on the "
"grid in question. Such an exclusion will prevent "
"autotravel from ever entering that grid until you "
"remove the exclusion with another press of <w>Xe</w>.";
}