Example #1
0
 public WaterWalk(WaterWalk myParent)
     : base(0x0519)
 {
     parent       = myParent;
     this.Visible = false;
     this.Movable = false;
 }
Example #2
0
        public static void WaterWalk_onCommand(CommandEventArgs e)
        {
            WaterWalk w = new WaterWalk();

            w.Map      = e.Mobile.Map;
            w.Location = e.Mobile.Location;
        }
Example #3
0
 public WaterWalk(WaterWalk myParent)
     : base(0x0519)
 {
     parent = myParent;
     this.Visible = false;
     this.Movable = false;
 }
 public WaterWalk() : base(0x0519)
 {
     this.Movable = false;
     this.Visible = false;
     if (parent == null)
     {
         for (int i = 0; i < others.Length; i++)
         {
             others[i] = new WaterWalk(this);
         }
     }
 }
Example #5
0
        public WaterWalk()
            : base(0x0519)
        {
            this.Movable = false;
            this.Visible = false;
            if (parent == null)
            {
                for (int i = 0; i < others.Length; i++)
                {
                    others[i] = new WaterWalk(this);
                }
            }

        }
Example #6
0
 public static void WaterWalk_onCommand(CommandEventArgs e)
 {
     WaterWalk w = new WaterWalk();
     w.Map = e.Mobile.Map;
     w.Location = e.Mobile.Location;
 }