public void ZombieHit(Zombie z, int points = 3)
 {
     if (_Loader.dmOrPursuit && points > 0)
     {
         //_Game.centerText(string.Format(Tr("You killed {1} {2} Points"), "", "zombie", points), 3);
         CallRPC(SetZombieKills, zombieKills + 1);
         CallRPC(SetScore2, score + points);
     }
     z.CallRPC(z.Hit, z.pos, vel, playerId);
 }