Also the not all sounds are there. But it's possible to improvise.
PHP Code:
#define SPK_YOUR_SCORE_IS "your(e75) screen(e35) before(s35) is"
#define SPK_KILLS "kill(e64) safe(e10)"
#define SPK_KILL "kill"
#define SPK_AND "and"
#define SPK_DEATH "delta(e30) f(s60)"
#define SPK_DEATHS "delta(e30) f(s65) safe(e10)"
speak_score(iPlrId, iKillsNum, iDeathsNum)
{
new iKills[64], iDeaths[64];
num_to_word(iKillsNum, iKills, 63);
num_to_word(iDeathsNum, iDeaths, 63);
client_cmd(iPlrId, "spk ^"vox/%s %s %s _comma and %s %s^"", SPK_YOUR_SCORE_IS, iKills, ((iKillsNum==1)?SPK_KILL:SPK_KILLS),
iDeaths, ((iDeathsNum==1)?SPK_DEATH:SPK_DEATHS));
}
That's the best I could get for words "death" and "deaths".
__________________