|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T h
Length: 757 (0x2f5) Types: TextFile Names: »hack.timeout.c«
└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki └─⟦this⟧ »EUUGD11/gnu-31mar87/hack/hack.timeout.c«
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* hack.timeout.c - version 1.0.2 */ #include "hack.h" timeout(){ register struct prop *upp; for(upp = u.uprops; upp < u.uprops+SIZE(u.uprops); upp++) if((upp->p_flgs & TIMEOUT) && !--upp->p_flgs) { if(upp->p_tofn) (*upp->p_tofn)(); else switch(upp - u.uprops){ case SICK: pline("You die because of food poisoning"); killer = u.usick_cause; done("died"); /* NOTREACHED */ case FAST: pline("You feel yourself slowing down"); break; case CONFUSION: pline("You feel less confused now"); break; case BLIND: pline("You can see again"); setsee(); break; case INVIS: on_scr(u.ux,u.uy); pline("You are no longer invisible."); } } }