public PullTimer(OldBarkskin mep, Mobile target, BrambleRoot web) : base(TimeSpan.FromSeconds( 4 ))
			{
				this.mep = mep;
				this.target = target;
				this.web = web;
			}
		public override void Deserialize(GenericReader reader)
		{
			base.Deserialize(reader);

			int version = reader.ReadInt();
			mep = (OldBarkskin)reader.ReadMobile();
		}
			public WebTimer(OldBarkskin mep, Mobile target, BrambleRoot web) : base(TimeSpan.FromSeconds( 15 + Utility.Random(25)))
			{
				this.mep = mep;
				this.target = target;
				this.web = web;
			}
		public BrambleRoot(OldBarkskin mep, Mobile target, int webid) : base( webid)
		{
			Name = "Rooting Brambles";
			Movable = false;
			this.mep = mep;
			Timer webT = new WebTimer(mep, target, this);
			webT.Start();
		}
			public MassWebTimer(OldBarkskin mep) : base(TimeSpan.FromSeconds( 15), TimeSpan.FromSeconds( 25))
			{
				this.mep = mep;
			}
			public CastWebTimer(OldBarkskin mep, Mobile target, int webid) : base(TimeSpan.FromSeconds( 2 ))
			{
				this.mep = mep;
				this.target = target;
				this.webid = webid;
			}
示例#7
0
 public MassWebTimer(OldBarkskin mep) : base(TimeSpan.FromSeconds(15), TimeSpan.FromSeconds(25))
 {
     this.mep = mep;
 }
示例#8
0
 public CastWebTimer(OldBarkskin mep, Mobile target, int webid) : base(TimeSpan.FromSeconds(2))
 {
     this.mep    = mep;
     this.target = target;
     this.webid  = webid;
 }