From: Jakob MG Date: Sun, 12 Jun 2011 10:45:50 +0000 (+0200) Subject: Add kill messagess for raptor X-Git-Tag: xonotic-v0.5.0~199^2~11^2~26 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=eb064ed0b77f19046d0ce06f414ade18a41a00f1;p=xonotic%2Fxonotic-data.pk3dir.git Add kill messagess for raptor --- diff --git a/qcsrc/client/hud.qc b/qcsrc/client/hud.qc index 129a77d95..7a33cf07d 100644 --- a/qcsrc/client/hud.qc +++ b/qcsrc/client/hud.qc @@ -1783,6 +1783,18 @@ void HUD_KillNotify(string s1, string s2, string s3, float type, float msg) // s HUD_KillNotify_Push(s1, s2, 1, DEATH_GENERIC); if(alsoprint) print (sprintf(_("^1%s^1 dies when %s^1's wakizashi dies.\n"), s2, s1)); + } else if(type == DEATH_RAPTOR_CANNON) { + HUD_KillNotify_Push(s1, s2, 1, DEATH_GENERIC); + if(alsoprint) + print (sprintf(_("^1%s^1 nailed to hell %s\n"), s2, s1)); + } else if(type == DEATH_RAPTOR_BOMB) { + HUD_KillNotify_Push(s1, s2, 1, DEATH_GENERIC); + if(alsoprint) + print (sprintf(_("^1%s^1 cluster crushed by %s\n"), s2, s1)); + } else if(type == DEATH_RAPTOR_DEATH) { + HUD_KillNotify_Push(s1, s2, 1, DEATH_GENERIC); + if(alsoprint) + print (sprintf(_("^1%s^1 dies when %s^1's raptor dies.\n"), s2, s1)); } else if(type == DEATH_TURRET) { HUD_KillNotify_Push(s1, s2, 1, DEATH_GENERIC); if(alsoprint)