Example #1
0
        public Character() {
            Equipment = new ItemList(27);
            Inventory = new ItemList(63);
            Storage = new ItemList(70);
            Quests = new QuestList();
            ArchivedDigimon = new uint[40];
            DigimonList = new Digimon[3];
        }
Example #2
0
 public Character(uint AcctId, string charName, int charModel)
 {
     AccountId = AcctId;
     Name = charName;
     Model = (CharacterModel)charModel;
     Equipment = new ItemList(27);
     Inventory = new ItemList(63);
     Storage = new ItemList(70);
     Quests = new QuestList();
     ArchivedDigimon = new uint[40];
     DigimonList = new Digimon[3];
 }