public void SpawnJukaMage(Mobile target)
        {
            Map map = target.Map;

            if (map == null)
            {
                return;
            }

            int mjukas = 0;

            foreach (Mobile m in this.GetMobilesInRange(10))
            {
                if (m is JukaMage)
                {
                    ++mjukas;
                }
            }

            if (mjukas < 10)
            {
                BaseCreature mjuka = new JukaMage();

                mjuka.Team = this.Team;

                Point3D loc           = target.Location;
                bool    validLocation = false;

                for (int j = 0; !validLocation && j < 10; ++j)
                {
                    int x = target.X + Utility.Random(3) - 1;
                    int y = target.Y + Utility.Random(3) - 1;
                    int z = map.GetAverageZ(x, y);

                    if (validLocation = map.CanFit(x, y, this.Z, 16, false, false))
                    {
                        loc = new Point3D(x, y, Z);
                    }
                    else if (validLocation = map.CanFit(x, y, z, 16, false, false))
                    {
                        loc = new Point3D(x, y, z);
                    }
                }

                mjuka.MoveToWorld(loc, map);

                mjuka.Combatant = target;
            }
        }
                public void SpawnJukaMage( Mobile target )
		{
			Map map = target.Map;

			if ( map == null )
				return;

			int mjukas = 0;

			foreach ( Mobile m in this.GetMobilesInRange( 10 ) )
			{
				if ( m is JukaMage )
					++mjukas;
			}

			if ( mjukas < 10 )
			{
				BaseCreature mjuka = new JukaMage();

				mjuka.Team = this.Team;

				Point3D loc = target.Location;
				bool validLocation = false;

				for ( int j = 0; !validLocation && j < 10; ++j )
				{
					int x = target.X + Utility.Random( 3 ) - 1;
					int y = target.Y + Utility.Random( 3 ) - 1;
					int z = map.GetAverageZ( x, y );

					if ( validLocation = map.CanFit( x, y, this.Z, 16, false, false ) )
						loc = new Point3D( x, y, Z );
					else if ( validLocation = map.CanFit( x, y, z, 16, false, false ) )
						loc = new Point3D( x, y, z );
				}

				mjuka.MoveToWorld( loc, map );

				mjuka.Combatant = target;
			}
		}