Ejemplo n.º 1
0
        public void EndSpin( SpinCallback callback, Mobile from, int hue )
        {
            if ( m_Timer != null )
            {
                m_Timer.Stop();
            }

            m_Timer = null;

            foreach ( AddonComponent c in AddonComponents )
            {
                switch ( c.ItemID )
                {
                    case 0x1016:
                    case 0x101A:
                    case 0x101D:
                    case 0x10A5:
                        --c.ItemID;
                        break;
                }
            }

            if ( callback != null )
            {
                callback( this, from, hue );
            }
        }
Ejemplo n.º 2
0
        public void EndSpin(SpinCallback callback, Mobile from, int hue)
        {
            if (m_Timer != null)
            {
                m_Timer.Stop();
            }

            m_Timer = null;

            foreach (AddonComponent c in Components)
            {
                switch (c.ItemID)
                {
                case 0x1016:
                case 0x101A:
                case 0x101D:
                case 0x10A5:
                    --c.ItemID;
                    break;
                }
            }

            if (callback != null)
            {
                callback(this, from, hue);
            }
        }
Ejemplo n.º 3
0
 public SpinTimer(ElvenSpinningwheelEastAddon wheel, SpinCallback callback, Mobile from, int hue) : base(TimeSpan.FromSeconds(3.0))
 {
     m_Wheel    = wheel;
     m_Callback = callback;
     m_From     = from;
     m_Hue      = hue;
     Priority   = TimerPriority.TwoFiftyMS;
 }
Ejemplo n.º 4
0
 public SpinTimer(SpinningwheelEastAddon wheel, SpinCallback callback, Mobile from, int hue)
     : base(TimeSpan.FromSeconds(3.0))
 {
     m_Wheel    = wheel;
     m_Callback = callback;
     m_From     = from;
     m_Hue      = hue;
 }
Ejemplo n.º 5
0
 public SpinTimer(SpinningwheelSouthAddon wheel, SpinCallback callback, Mobile from, int hue) : base(TimeSpan.FromSeconds(3.0))
 {
     this.m_Wheel    = wheel;
     this.m_Callback = callback;
     this.m_From     = from;
     this.m_Hue      = hue;
     this.Priority   = TimerPriority.TwoFiftyMS;
 }
Ejemplo n.º 6
0
 public SpinTimer(SpinningwheelSouthAddon wheel, SpinCallback callback, Mobile from, Item yarn) : base(TimeSpan.FromSeconds(3.0))
 {
     m_Wheel    = wheel;
     m_Callback = callback;
     m_From     = from;
     m_Yarn     = yarn;
     Priority   = TimerPriority.TwoFiftyMS;
 }
 public SpinTimer(SpinningwheelSouthAddon wheel, SpinCallback callback, Mobile from, int hue, Item resource) : base(TimeSpan.FromSeconds(3.0))
 {
     m_Wheel    = wheel;
     m_Callback = callback;
     m_From     = from;
     m_Hue      = hue;
     m_Resource = resource;
     Priority   = TimerPriority.TwoFiftyMS;
 }
Ejemplo n.º 8
0
        public void BeginSpin(SpinCallback callback, Mobile from, int hue)
        {
            this.m_Timer = new SpinTimer(this, callback, from, hue);
            this.m_Timer.Start();

            foreach (AddonComponent c in this.Components)
            {
                switch (c.ItemID)
                {
                case 0x2E3D:
                    --c.ItemID;
                    break;
                }
            }
        }
        public void BeginSpin(SpinCallback callback, Mobile from, int hue)
        {
            this.m_Timer = new SpinTimer(this, callback, from, hue);
            this.m_Timer.Start();

            foreach (AddonComponent c in this.Components)
            {
                switch ( c.ItemID )
                {
                    case 0x2E3F:
                        --c.ItemID;
                        break;
                }
            }
        }
Ejemplo n.º 10
0
		public void BeginSpin( SpinCallback callback, Mobile from, int hue )
		{
			m_Timer = new SpinTimer( this, callback, from, hue );
			m_Timer.Start();

			foreach ( AddonComponent c in Components )
			{
				switch ( c.ItemID )
				{
					case 0x2DD9:
					case 0x101C:
					case 0x10A4: ++c.ItemID; break;
				}
			}
		}
Ejemplo n.º 11
0
        public void BeginSpin(SpinCallback callback, Mobile from, int hue)
        {
            m_Timer = new SpinTimer(this, callback, from, hue);
            m_Timer.Start();

            foreach (AddonComponent c in Components)
            {
                switch (c.ItemID)
                {
                case 0x2DD9:
                case 0x101C:
                case 0x10A4: ++c.ItemID; break;
                }
            }
        }
        public void EndSpin(SpinCallback callback, Mobile from, int hue)
        {
            m_Timer?.Stop();
            m_Timer = null;

            foreach (var c in Components)
            {
                switch (c.ItemID)
                {
                case 0x2E3C:
                case 0x2E3E:
                    ++c.ItemID;
                    break;
                }
            }

            callback?.Invoke(this, from, hue);
        }
Ejemplo n.º 13
0
        public void EndSpin(SpinCallback callback, Mobile from, int hue)
        {
            m_Timer?.Stop();

            m_Timer = null;

            foreach (var c in Components)
                switch (c.ItemID)
                {
                    case 0x1016:
                    case 0x101A:
                    case 0x101D:
                    case 0x10A5:
                        --c.ItemID;
                        break;
                }

            callback?.Invoke(this, from, hue);
        }
Ejemplo n.º 14
0
        public void EndSpin(SpinCallback callback, Mobile from, int hue)
        {
            if (m_Timer != null)
                m_Timer.Stop();

            m_Timer = null;

            foreach (AddonComponent c in Components)
            {
                switch (c.ItemID)
                {
                    case 0x2E3E:
                        ++c.ItemID;
                        break;
                }
            }

            if (callback != null)
                callback(this, from, hue);
        }
Ejemplo n.º 15
0
        public void EndSpin(SpinCallback callback, Mobile from, int hue)
        {
            if (this.m_Timer != null)
                this.m_Timer.Stop();

            this.m_Timer = null;

            foreach (AddonComponent c in this.Components)
            {
                switch ( c.ItemID )
                {
                    case 0x2E3E:
                        ++c.ItemID;
                        break;
                }
            }

            if (callback != null)
                callback(this, from, hue);
        }
			public SpinTimer( ElvenSpinningwheelSouthAddon wheel, SpinCallback callback, Mobile from, int hue ) : base( TimeSpan.FromSeconds( 3.0 ) )
			{
				m_Wheel = wheel;
				m_Callback = callback;
				m_From = from;
				m_Hue = hue;
				Priority = TimerPriority.TwoFiftyMS;
			}
			public SpinTimer( SpinningwheelEastAddon wheel, SpinCallback callback, Mobile from, int hue, Item resource ) : base( TimeSpan.FromSeconds( 3.0 ) )
			{
				m_Wheel = wheel;
				m_Callback = callback;
				m_From = from;
				m_Hue = hue;
                m_Resource = resource;
				Priority = TimerPriority.TwoFiftyMS;
			}
Ejemplo n.º 18
0
 public SpinTimer( SpinningwheelSouthAddon wheel, SpinCallback callback, Mobile from, int hue )
     : base(TimeSpan.FromSeconds( 3.0 ))
 {
     m_Wheel = wheel;
     m_Callback = callback;
     m_From = from;
     m_Hue = hue;
 }
Ejemplo n.º 19
0
 public SpinTimer(SpinningwheelEastAddon wheel, SpinCallback callback, Mobile from, int hue)
     : base(TimeSpan.FromSeconds(3.0))
 {
     this.m_Wheel = wheel;
     this.m_Callback = callback;
     this.m_From = from;
     this.m_Hue = hue;
     this.Priority = TimerPriority.TwoFiftyMS;
 }