I can´t auto revive players why?
Code:
if (attacked.Dead == false)
{
attacked.estado = "Muerto";
Game.Tournaments.Eventos.SuperPkMath.InPlay();
attacker.ConquerPoints += 2000;
byte Rand = (byte)Conquer_Online_Server.ServerBase.Kernel.Random.Next(1, 4);
switch (Rand)
{
case 1: attacked.Teleport(1002, 391, 371); break;
case 2: attacked.Teleport(1002, 392, 323); break;
case 3: attacked.Teleport(1002, 475, 373); break;
case 4: attacked.Teleport(1002, 405, 246); break;
}
attacked.Ressurect();
Game.Tournaments.Eventos.SuperPkMath.contador += 1;
Conquer_Online_Server.Network.PacketHandler.WorldMessage(attacker.Name+" Ah Matado a "+attacked.Name+" Y Gana 2k de cps Att.Admin de SuperPkMath Evento!");
}






