Exemplo n.º 1
0
        public override void Deserialize(GenericReader reader)
        {
            base.Deserialize(reader);

            int version = reader.ReadInt();

            mep = (CalebMephitis)reader.ReadMobile();
        }
Exemplo n.º 2
0
        public MephitisWeb(CalebMephitis mep, Mobile target, int webid) : base(webid)
        {
            Name     = "Web of Mephitis";
            Movable  = false;
            this.mep = mep;
            Timer pullT = new PullTimer(mep, target, this);
            Timer webT  = new WebTimer(mep, target, this);

            webT.Start();
            pullT.Start();
        }
Exemplo n.º 3
0
 public PullTimer(CalebMephitis mep, Mobile target, MephitisWeb web) : base(TimeSpan.FromSeconds(4))
 {
     this.mep    = mep;
     this.target = target;
     this.web    = web;
 }
Exemplo n.º 4
0
 public WebTimer(CalebMephitis mep, Mobile target, MephitisWeb web) : base(TimeSpan.FromSeconds(20 + Utility.Random(30)))
 {
     this.mep    = mep;
     this.target = target;
     this.web    = web;
 }