Exemplo n.º 1
0
        public virtual bool AcceptEscorter(Mobile mobile)
        {
            EDI dest = GetDestination();

            if (dest == null || mobile == null)
            {
                return(false);
            }

            if (!mobile.Alive)
            {
                return(false);
            }

            BaseBoat m_Boat = BaseBoat.FindBoatAt(mobile.Location, mobile.Map);

            if (m_Boat != null)
            {
                if (m_Boat.Deleted || m_Boat.m_SinkTimer != null)
                {
                    mobile.SendMessage("Your boat is in no condition right now to be taking on passengers!");

                    return(false);
                }

                if (!(m_Boat.IsOwner(mobile) || m_Boat.IsCoOwner(mobile)))
                {
                    mobile.SendMessage("Only owners and co-owners of this ship have permission to take on passengers.");

                    return(false);
                }

                Say("Thank you! Let us return to " + dest.Name);

                if (Body.IsHuman && !Mounted)
                {
                    Animate(32, 3, 1, true, false, 0);
                }

                if (m_DeleteTimer != null)
                {
                    m_DeleteTimer.Stop();
                }

                m_DeleteTime = DateTime.UtcNow + TimeSpan.FromMinutes(120);

                m_DeleteTimer = new DeleteTimer(this, m_DeleteTime - DateTime.UtcNow);
                m_DeleteTimer.Start();

                Location = m_Boat.GetRandomEmbarkLocation(true);
                m_Boat.AddEmbarkedMobile(this);
            }

            return(true);
        }
Exemplo n.º 2
0
        public static void GenerateShipCrew(BaseBoat boat)
        {
            if (boat == null) return;
            if (boat.Deleted) return;

            int shipLevel = 1;

            if (boat is MediumBoat || boat is MediumDragonBoat) shipLevel = 2;
            if (boat is LargeBoat || boat is LargeDragonBoat) shipLevel = 3;
            if (boat is CarrackBoat) shipLevel = 4;
            if (boat is GalleonBoat) shipLevel = 5;

            BaseCreature bc_Creature;
            Point3D creatureLocation;

            int crewNumber = 0;
            int ratChances = 0;

            Dictionary<Type, int> DictCrewOptions = new Dictionary<Type, int>();

            switch (boat.MobileFactionType)
            {
                case MobileFactionType.Fishing:
                    #region Fishing
                    crewNumber = 3 + shipLevel;

                    for (int a = 0; a < crewNumber; a++)
                    {
                        creatureLocation = boat.GetRandomEmbarkLocation(true);

                        bc_Creature = new Custom.Pirates.OceanFisherman();
                        bc_Creature.BardImmune = true;
                        bc_Creature.MoveToWorld(creatureLocation, boat.Map);

                        boat.Crew.Add(bc_Creature);
                        boat.AddEmbarkedMobile(bc_Creature);
                    }
                    #endregion
                break;

                case MobileFactionType.Pirate:
                    #region Pirate
                    crewNumber = 3 + shipLevel;
                    
                    for (int a = 0; a < crewNumber; a++)
                    {
                        creatureLocation = boat.GetRandomEmbarkLocation(true);

                        bc_Creature = new Custom.Pirates.OceanPirate();
                        bc_Creature.BardImmune = true;
                        bc_Creature.MoveToWorld(creatureLocation, boat.Map);

                        boat.Crew.Add(bc_Creature);
                        boat.AddEmbarkedMobile(bc_Creature);
                    }

                    if (Utility.RandomDouble() <= (.2 * shipLevel) )
                    {
                        creatureLocation = boat.GetRandomEmbarkLocation(true);

                        bc_Creature = new Custom.Pirates.PirateShipCarpenter();
                        bc_Creature.BardImmune = true;
                        bc_Creature.MoveToWorld(creatureLocation, boat.Map);

                        boat.Crew.Add(bc_Creature);
                        boat.AddEmbarkedMobile(bc_Creature);
                    }

                    if (Utility.RandomDouble() <= (.2 * shipLevel))
                    {
                        creatureLocation = boat.GetRandomEmbarkLocation(true);

                        bc_Creature = new Custom.Pirates.PirateSawbones();
                        bc_Creature.BardImmune = true;
                        bc_Creature.MoveToWorld(creatureLocation, boat.Map);

                        boat.Crew.Add(bc_Creature);
                        boat.AddEmbarkedMobile(bc_Creature);
                    }

                    creatureLocation = boat.GetRandomEmbarkLocation(true);

                    bc_Creature = new Custom.Pirates.OceanPirateCaptain(boat);
                    bc_Creature.BardImmune = true;
                    bc_Creature.MoveToWorld(creatureLocation, boat.Map);  

                    boat.Crew.Add(bc_Creature);
                    boat.Owner = bc_Creature;
                    boat.AddEmbarkedMobile(bc_Creature);
                    
                    #endregion
                break;

                case MobileFactionType.Britain:
                    #region Britain
                    DictCrewOptions = new Dictionary<Type, int>();

                    DictCrewOptions.Add(typeof(Custom.Pirates.BritainSailor), 2);
                    DictCrewOptions.Add(typeof(Custom.Pirates.BritainMarine), 1);

                    crewNumber = 3 + shipLevel;

                    for (int a = 0; a < crewNumber; a++)
                    {
                        int TotalValues = 0;

                        foreach (KeyValuePair<Type, int> pair in DictCrewOptions)
                        {
                            TotalValues += pair.Value;
                        }

                        double ActionCheck = Utility.RandomDouble();
                        double CumulativeAmount = 0.0;
                        double AdditionalAmount = 0.0;

                        bool foundDirection = true;

                        foreach (KeyValuePair<Type, int> pair in DictCrewOptions)
                        {
                            AdditionalAmount = (double)pair.Value / (double)TotalValues;

                            if (ActionCheck >= CumulativeAmount && ActionCheck < (CumulativeAmount + AdditionalAmount))
                            {
                                bc_Creature = (BaseCreature)Activator.CreateInstance(pair.Key);

                                if (bc_Creature == null)
                                    continue;

                                creatureLocation = boat.GetRandomEmbarkLocation(true);

                                bc_Creature.BardImmune = true;
                                bc_Creature.MoveToWorld(creatureLocation, boat.Map);

                                boat.Crew.Add(bc_Creature);
                                boat.AddEmbarkedMobile(bc_Creature);

                                break;
                            }

                            CumulativeAmount += AdditionalAmount;
                        }
                    }      
             
                    if (Utility.RandomDouble() <= (.2 * shipLevel ) )
                    {
                        creatureLocation = boat.GetRandomEmbarkLocation(true);

                        bc_Creature = new Custom.Pirates.BritainShipCarpenter();                        
                        bc_Creature.BardImmune = true;
                        bc_Creature.MoveToWorld(creatureLocation, boat.Map);

                        boat.Crew.Add(bc_Creature);
                        boat.AddEmbarkedMobile(bc_Creature);

                    }

                    if (Utility.RandomDouble() <= (.2 * shipLevel))
                    {
                        creatureLocation = boat.GetRandomEmbarkLocation(true);

                        bc_Creature = new Custom.Pirates.BritainShipSurgeon();
                        bc_Creature.BardImmune = true;
                        bc_Creature.MoveToWorld(creatureLocation, boat.Map);

                        boat.Crew.Add(bc_Creature);
                        boat.AddEmbarkedMobile(bc_Creature);

                    }

                    creatureLocation = boat.GetRandomEmbarkLocation(true);

                    bc_Creature = new Custom.Pirates.BritainShipCaptain(boat);
                    bc_Creature.BardImmune = true;
                    bc_Creature.MoveToWorld(creatureLocation, boat.Map); 

                    boat.Crew.Add(bc_Creature);
                    boat.Owner = bc_Creature;
                    boat.AddEmbarkedMobile(bc_Creature);
                    #endregion
                break;                

                case MobileFactionType.Orc:
                    #region Orc
                    
                    crewNumber = 3 + shipLevel;

                    DictCrewOptions = new Dictionary<Type, int>();

                    DictCrewOptions.Add(typeof(OrcishGrunt), 1);
                    DictCrewOptions.Add(typeof(OrcishScout), 1);
                    DictCrewOptions.Add(typeof(OrcMojoka), 1);

                    for (int a = 0; a < crewNumber; a++)
                    {
                        int TotalValues = 0;

                        foreach (KeyValuePair<Type, int> pair in DictCrewOptions)
                        {
                            TotalValues += pair.Value;
                        }

                        double ActionCheck = Utility.RandomDouble();
                        double CumulativeAmount = 0.0;
                        double AdditionalAmount = 0.0;

                        bool foundDirection = true;

                        foreach (KeyValuePair<Type, int> pair in DictCrewOptions)
                        {
                            AdditionalAmount = (double)pair.Value / (double)TotalValues;

                            if (ActionCheck >= CumulativeAmount && ActionCheck < (CumulativeAmount + AdditionalAmount))
                            {
                                bc_Creature = (BaseCreature)Activator.CreateInstance(pair.Key);

                                if (bc_Creature == null)
                                    continue;

                                if (bc_Creature is OrcishGrunt)                                                                    
                                    bc_Creature.PackItem(new Bow() { Movable = false, Hue = 0 });

                                creatureLocation = boat.GetRandomEmbarkLocation(true);

                                bc_Creature.BardImmune = true;
                                bc_Creature.MoveToWorld(creatureLocation, boat.Map);

                                boat.Crew.Add(bc_Creature);
                                boat.AddEmbarkedMobile(bc_Creature);


                                break;
                            }

                            CumulativeAmount += AdditionalAmount;
                        }
                    }

                    crewNumber = (int)(Math.Ceiling((double)shipLevel / 2));

                    DictCrewOptions = new Dictionary<Type, int>();

                    DictCrewOptions.Add(typeof(OrcishExecutioner), 1);
                    DictCrewOptions.Add(typeof(OrcishSurjin), 1);
                    DictCrewOptions.Add(typeof(OrcishMaurk), 1);
                    DictCrewOptions.Add(typeof(ElderMojoka), 1);  

                    for (int a = 0; a < crewNumber; a++)
                    {
                        int TotalValues = 0;

                        foreach (KeyValuePair<Type, int> pair in DictCrewOptions)
                        {
                            TotalValues += pair.Value;
                        }

                        double ActionCheck = Utility.RandomDouble();
                        double CumulativeAmount = 0.0;
                        double AdditionalAmount = 0.0;

                        bool foundDirection = true;

                        foreach (KeyValuePair<Type, int> pair in DictCrewOptions)
                        {
                            AdditionalAmount = (double)pair.Value / (double)TotalValues;

                            if (ActionCheck >= CumulativeAmount && ActionCheck < (CumulativeAmount + AdditionalAmount))
                            {
                                bc_Creature = (BaseCreature)Activator.CreateInstance(pair.Key);

                                if (bc_Creature == null)
                                    continue;

                                if (bc_Creature is OrcishExecutioner || bc_Creature is OrcishSurjin)
                                    bc_Creature.PackItem(new Bow() { Movable = false, Hue = 0 });                                

                                creatureLocation = boat.GetRandomEmbarkLocation(true);

                                bc_Creature.BardImmune = true;
                                bc_Creature.MoveToWorld(creatureLocation, boat.Map);

                                boat.Crew.Add(bc_Creature);
                                boat.AddEmbarkedMobile(bc_Creature);

                                break;
                            }

                            CumulativeAmount += AdditionalAmount;
                        }
                    }

                    #endregion
                break;

                case MobileFactionType.Orghereim:
                    #region Orghereim
                    crewNumber = 3 + shipLevel;

                    DictCrewOptions = new Dictionary<Type, int>();

                    DictCrewOptions.Add(typeof(OrghereimBowMaiden), 1);
                    DictCrewOptions.Add(typeof(OrghereimTracker), 1);
                    DictCrewOptions.Add(typeof(OrghereimSwordThane), 1);
                    DictCrewOptions.Add(typeof(OrghereimIceCarl), 1); 
                    DictCrewOptions.Add(typeof(OrghereimShieldMaiden), 1);

                    for (int a = 0; a < crewNumber; a++)
                    {
                        int TotalValues = 0;

                        foreach (KeyValuePair<Type, int> pair in DictCrewOptions)
                        {
                            TotalValues += pair.Value;
                        }

                        double ActionCheck = Utility.RandomDouble();
                        double CumulativeAmount = 0.0;
                        double AdditionalAmount = 0.0;

                        bool foundDirection = true;

                        foreach (KeyValuePair<Type, int> pair in DictCrewOptions)
                        {
                            AdditionalAmount = (double)pair.Value / (double)TotalValues;

                            if (ActionCheck >= CumulativeAmount && ActionCheck < (CumulativeAmount + AdditionalAmount))
                            {
                                bc_Creature = (BaseCreature)Activator.CreateInstance(pair.Key);

                                if (bc_Creature == null)
                                    continue;

                                if (bc_Creature is OrghereimSwordThane || bc_Creature is OrghereimShieldMaiden)
                                    bc_Creature.PackItem(new Bow() { Movable = false, Hue = 0 });                                

                                creatureLocation = boat.GetRandomEmbarkLocation(true);

                                bc_Creature.BardImmune = true;
                                bc_Creature.MoveToWorld(creatureLocation, boat.Map);

                                boat.Crew.Add(bc_Creature);
                                boat.AddEmbarkedMobile(bc_Creature);

                                break;
                            }

                            CumulativeAmount += AdditionalAmount;
                        }
                    }

                    crewNumber = (int)(Math.Ceiling((double)shipLevel / 2));

                    DictCrewOptions = new Dictionary<Type, int>();

                    DictCrewOptions.Add(typeof(OrghereimBoneMender), 1);
                    DictCrewOptions.Add(typeof(OrghereimCrone), 1);
                    DictCrewOptions.Add(typeof(OrghereimSage), 1);
                    DictCrewOptions.Add(typeof(OrghereimShieldMother), 1); 

                    for (int a = 0; a < crewNumber; a++)
                    {
                        int TotalValues = 0;

                        foreach (KeyValuePair<Type, int> pair in DictCrewOptions)
                        {
                            TotalValues += pair.Value;
                        }

                        double ActionCheck = Utility.RandomDouble();
                        double CumulativeAmount = 0.0;
                        double AdditionalAmount = 0.0;

                        bool foundDirection = true;

                        foreach (KeyValuePair<Type, int> pair in DictCrewOptions)
                        {
                            AdditionalAmount = (double)pair.Value / (double)TotalValues;

                            if (ActionCheck >= CumulativeAmount && ActionCheck < (CumulativeAmount + AdditionalAmount))
                            {
                                bc_Creature = (BaseCreature)Activator.CreateInstance(pair.Key);

                                if (bc_Creature == null)
                                    continue;

                                if (bc_Creature is OrghereimShieldMother)
                                    bc_Creature.PackItem(new Bow() { Movable = false, Hue = 0 });                                

                                creatureLocation = boat.GetRandomEmbarkLocation(true);

                                bc_Creature.BardImmune = true;
                                bc_Creature.MoveToWorld(creatureLocation, boat.Map);

                                boat.Crew.Add(bc_Creature);
                                boat.AddEmbarkedMobile(bc_Creature);

                                break;
                            }

                            CumulativeAmount += AdditionalAmount;
                        }
                    }
                    #endregion
                break;

                case MobileFactionType.Undead:
                    #region Undead
                    crewNumber = 3 + shipLevel;
                    
                    for (int a = 0; a < crewNumber; a++)
                    {
                        creatureLocation = boat.GetRandomEmbarkLocation(true);

                        bc_Creature = new Custom.Pirates.SkeletalCrewman();
                        bc_Creature.BardImmune = true;
                        bc_Creature.MoveToWorld(creatureLocation, boat.Map);

                        boat.Crew.Add(bc_Creature);
                        boat.AddEmbarkedMobile(bc_Creature);
                    }

                    crewNumber = 3 + shipLevel;

                    DictCrewOptions = new Dictionary<Type, int>();

                    DictCrewOptions.Add(typeof(Skeleton), 15);
                    DictCrewOptions.Add(typeof(ZombieMagi), 5);
                    DictCrewOptions.Add(typeof(SkeletalMage), 5);
                    DictCrewOptions.Add(typeof(Lich), 3);                 
                    DictCrewOptions.Add(typeof(SkeletalDrake), 2);
                    DictCrewOptions.Add(typeof(LichLord), 1);

                    for (int a = 0; a < crewNumber; a++)
                    {
                        int TotalValues = 0;

                        foreach (KeyValuePair<Type, int> pair in DictCrewOptions)
                        {
                            TotalValues += pair.Value;
                        }

                        double ActionCheck = Utility.RandomDouble();
                        double CumulativeAmount = 0.0;
                        double AdditionalAmount = 0.0;

                        bool foundDirection = true;

                        foreach (KeyValuePair<Type, int> pair in DictCrewOptions)
                        {
                            AdditionalAmount = (double)pair.Value / (double)TotalValues;

                            if (ActionCheck >= CumulativeAmount && ActionCheck < (CumulativeAmount + AdditionalAmount))
                            {
                                bc_Creature = (BaseCreature)Activator.CreateInstance(pair.Key);

                                if (bc_Creature == null)
                                    continue;

                                creatureLocation = boat.GetRandomEmbarkLocation(true);

                                bc_Creature.BardImmune = true;
                                bc_Creature.MoveToWorld(creatureLocation, boat.Map);

                                boat.Crew.Add(bc_Creature);
                                boat.AddEmbarkedMobile(bc_Creature);

                                break;
                            }

                            CumulativeAmount += AdditionalAmount;
                        }
                    }

                    int necromancers = (int)(Math.Ceiling((double)shipLevel / 2));
                    for (int a = 0; a < necromancers; a++)
                    {
                        creatureLocation = boat.GetRandomEmbarkLocation(true);

                        bc_Creature = new Custom.Pirates.GhostShipNecromancer();
                        bc_Creature.BardImmune = true;
                        bc_Creature.MoveToWorld(creatureLocation, boat.Map);

                        boat.Crew.Add(bc_Creature);
                        boat.AddEmbarkedMobile(bc_Creature);
                    }

                    creatureLocation = boat.GetRandomEmbarkLocation(true);

                    bc_Creature = new Custom.Pirates.SkeletalCaptain(boat);
                    bc_Creature.BardImmune = true;
                    bc_Creature.MoveToWorld(creatureLocation, boat.Map);

                    boat.Crew.Add(bc_Creature);
                    boat.Owner = bc_Creature;
                    boat.AddEmbarkedMobile(bc_Creature);

                    #endregion
                break;
            }
        }