ACS DEATH TIMER
Sounds neat, I wanted this and I'm like hmm this might work so I copied and pasted the example on ZDoom wiki and I'm like, "Yeah that works." Then I try to implement death and I see complicated things and all I think then is like dang I need some help, so I'm here and this is what I have (copied and pasted) so far.
Code: Select all
script 7 (void)
{
SetFont("bigfont");
int t;
while(TRUE)
{
t = Timer() / 35;
HudMessage(d:t/60, s:":", d:(t%60)/10, d:t%10;
HUDMSG_PLAIN, 1, CR_YELLOW, 0.95, 0.95, 2.0);
Delay(35);
}
}