Lines Matching defs:mtmp
276 struct monst *mtmp;
296 for (mtmp = fmon; mtmp; mtmp = mtmp->nmon)
297 mtmp->mdispl = 0;
323 struct monst *mtmp;
330 for (mtmp = fmon; mtmp; mtmp = mtmp->nmon)
331 if (mtmp->mx >= xmin && mtmp->my < ymax)
332 mtmp->mdispl = 0;
393 struct monst *mtmp;
406 if ((mtmp = m_at(x, y)) && !mtmp->mhide &&
407 (!mtmp->minvis || See_invisible)) {
413 pmon(mtmp);
416 else if (mtmp && (!mtmp->minvis || See_invisible)) {
419 pmon(mtmp);
578 struct monst *mtmp;
582 (mtmp = m_at(x, y))
583 ? ((Blind && Telepat) || canseemon(mtmp)) :
641 struct monst *mtmp;
642 for (mtmp = fmon; mtmp; mtmp = mtmp->nmon) {
643 if (mtmp->data->mlet == ';')
644 mtmp->minvis = (u.ustuck != mtmp &&
645 levl[mtmp->mx][mtmp->my].typ == POOL);
646 pmon(mtmp);
648 if (mtmp->wormno)
649 wormsee(mtmp->wormno);
783 mstatusline(struct monst *mtmp)
785 pline("Status of %s: ", monnam(mtmp));
787 mtmp->data->mlevel, mtmp->mgold, mtmp->mhp, mtmp->mhpmax,
788 mtmp->data->ac, (mtmp->data->damn + 1) * (mtmp->data->damd + 1));