Example #1
0
 public FightPlayer(int p, PlayerBusiness player)
     : this(player)
 {
     this.P = p;
     this.ID = player.ID;
     this.Level = player.Level;
     this.Name = player.Name;
     this.Life = player.Life;
     m_hp = player.HP;
     m_mp = player.MP;
     this.Skin = player.RoleID.ToString();
     this.m_fixBuffer = player.FixBuffer;
     player.UseClapnet = 0;
     player.CheckAutoFight();
     FResult = FightResult.Lose;
 }