X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=score.c;h=3f8d6a291d6e52af44895143814ead7aebc3f4ed;hb=e5f9c4fbea18216c40f1501cdee2ec21914e477c;hp=cc482ff5d94f4ec0430e433f9754ac7680f8e87d;hpb=15ff262d17355e14ada3202776646bdfeddda313;p=open-adventure.git diff --git a/score.c b/score.c index cc482ff..3f8d6a2 100644 --- a/score.c +++ b/score.c @@ -96,29 +96,29 @@ void score(long mode) if(mode < 0) { SETPRM(1,score,mxscor); SETPRM(3,game.turns,game.turns); - RSPEAK(259); + RSPEAK(GARNERED_POINTS); return; } /* that should be good enough. Let's tell him all about it. */ if(score+game.trnluz+1 >= mxscor && game.trnluz != 0) - RSPEAK(242); + RSPEAK(TOOK_LONG); if(score+game.saved+1 >= mxscor && game.saved != 0) - RSPEAK(143); + RSPEAK(WITHOUT_SUSPENDS); SETPRM(1,score,mxscor); SETPRM(3,game.turns,game.turns); - RSPEAK(262); + RSPEAK(TOTAL_SCORE); for (i=1; i<=CLSSES; i++) { if(CVAL[i] >= score) { newspeak(class_messages[i]); i=CVAL[i]+1-score; SETPRM(1,i,i); - RSPEAK(263); + RSPEAK(NEXT_HIGHER); exit(0); } } - RSPEAK(265); - RSPEAK(264); + RSPEAK(OFF_SCALE); + RSPEAK(NO_HIGHER); exit(0); }