Esempio n. 1
0
 public CDialogPrecondition()
 {
     this.ListOfNecessaryQuests = new CDialogPreconditionQuests();
     this.ListOfMustNoQuests    = new CDialogPreconditionQuests();
     this.tests = new List <int>();
     //this.CheckClanID = false;
     //this.CheckClan = false;
     this.Reputation = new Dictionary <int, List <double> >();
     this.KarmaPK    = new List <int>();
 }
Esempio n. 2
0
        public object Clone()
        {
            CDialogPreconditionQuests copy = new CDialogPreconditionQuests();

            copy.ListOfCompletedQuests = this.ListOfCompletedQuests;
            copy.ListOfOpenedQuests    = this.ListOfOpenedQuests;
            copy.ListOfOnTestQuests    = this.ListOfOnTestQuests;
            copy.ListOfFailedQuests    = this.ListOfFailedQuests;

            return(copy);
        }