示例#1
0
        public static int QuestFailure(Mobile m)
        {
            string explorer = CharacterDatabase.GetQuestInfo(m, "FishingQuest");

            int nPenalty = 0;

            if (CharacterDatabase.GetQuestState(m, "FishingQuest"))
            {
                FishingQuestFunctions.QuestTimeAllowed(m);

                string sPCTarget   = "";
                string sPCTitle    = "";
                string sPCName     = "";
                string sPCRegion   = "";
                int    nPCDone     = 0;
                int    nPCFee      = 0;
                string sPCWorld    = "";
                string sPCCategory = "";
                string sPCStory    = "";

                string[] explorers = explorer.Split('#');
                int      nEntry    = 1;
                foreach (string explorerz in explorers)
                {
                    if (nEntry == 1)
                    {
                        sPCTarget = explorerz;
                    }
                    else if (nEntry == 2)
                    {
                        sPCTitle = explorerz;
                    }
                    else if (nEntry == 3)
                    {
                        sPCName = explorerz;
                    }
                    else if (nEntry == 4)
                    {
                        sPCRegion = explorerz;
                    }
                    else if (nEntry == 5)
                    {
                        nPCDone = Convert.ToInt32(explorerz);
                    }
                    else if (nEntry == 6)
                    {
                        nPCFee = Convert.ToInt32(explorerz);
                    }
                    else if (nEntry == 7)
                    {
                        sPCWorld = explorerz;
                    }
                    else if (nEntry == 8)
                    {
                        sPCCategory = explorerz;
                    }
                    else if (nEntry == 9)
                    {
                        sPCStory = explorerz;
                    }

                    nEntry++;
                }
                nPenalty = nPCFee;
            }
            return(nPenalty);
        }
示例#2
0
        public static void PayAdventurer(Mobile m)
        {
            string explorer = CharacterDatabase.GetQuestInfo(m, "FishingQuest");

            if (CharacterDatabase.GetQuestState(m, "FishingQuest"))
            {
                string sPCTarget   = "";
                string sPCTitle    = "";
                string sPCName     = "";
                string sPCRegion   = "";
                int    nPCDone     = 0;
                int    nPCFee      = 0;
                string sPCWorld    = "";
                string sPCCategory = "";
                string sPCStory    = "";

                string[] explorers = explorer.Split('#');
                int      nEntry    = 1;
                foreach (string explorerz in explorers)
                {
                    if (nEntry == 1)
                    {
                        sPCTarget = explorerz;
                    }
                    else if (nEntry == 2)
                    {
                        sPCTitle = explorerz;
                    }
                    else if (nEntry == 3)
                    {
                        sPCName = explorerz;
                    }
                    else if (nEntry == 4)
                    {
                        sPCRegion = explorerz;
                    }
                    else if (nEntry == 5)
                    {
                        nPCDone = Convert.ToInt32(explorerz);
                    }
                    else if (nEntry == 6)
                    {
                        nPCFee = Convert.ToInt32(explorerz);
                    }
                    else if (nEntry == 7)
                    {
                        sPCWorld = explorerz;
                    }
                    else if (nEntry == 8)
                    {
                        sPCCategory = explorerz;
                    }
                    else if (nEntry == 9)
                    {
                        sPCStory = explorerz;
                    }

                    nEntry++;
                }

                if (nPCDone > 0 && nPCFee > 0)
                {
                    m.SendSound(0x3D);
                    m.AddToBackpack(new Gold(nPCFee));
                    string sMessage = "Here is " + nPCFee.ToString() + " gold for you.";
                    m.PrivateOverheadMessage(MessageType.Regular, 1150, false, sMessage, m.NetState);
                    FishingQuestFunctions.QuestTimeAllowed(m);

                    Titles.AwardFame(m, ((int)(nPCFee / 100)), true);
                    if (((PlayerMobile)m).KarmaLocked == true)
                    {
                        Titles.AwardKarma(m, -((int)(nPCFee / 100)), true);
                    }
                    else
                    {
                        Titles.AwardKarma(m, ((int)(nPCFee / 100)), true);
                    }
                }
            }
        }
示例#3
0
        public static void CheckTarget(Mobile m, Mobile target, Item box)
        {
            string explorer = CharacterDatabase.GetQuestInfo(m, "FishingQuest");

            if (CharacterDatabase.GetQuestState(m, "FishingQuest"))
            {
                string sPCTarget   = "";
                string sPCTitle    = "";
                string sPCName     = "";
                string sPCRegion   = "";
                int    nPCDone     = 0;
                int    nPCFee      = 0;
                string sPCWorld    = "";
                string sPCCategory = "";
                string sPCStory    = "";

                string[] explorers = explorer.Split('#');
                int      nEntry    = 1;
                foreach (string explorerz in explorers)
                {
                    if (nEntry == 1)
                    {
                        sPCTarget = explorerz;
                    }
                    else if (nEntry == 2)
                    {
                        sPCTitle = explorerz;
                    }
                    else if (nEntry == 3)
                    {
                        sPCName = explorerz;
                    }
                    else if (nEntry == 4)
                    {
                        sPCRegion = explorerz;
                    }
                    else if (nEntry == 5)
                    {
                        nPCDone = Convert.ToInt32(explorerz);
                    }
                    else if (nEntry == 6)
                    {
                        nPCFee = Convert.ToInt32(explorerz);
                    }
                    else if (nEntry == 7)
                    {
                        sPCWorld = explorerz;
                    }
                    else if (nEntry == 8)
                    {
                        sPCCategory = explorerz;
                    }
                    else if (nEntry == 9)
                    {
                        sPCStory = explorerz;
                    }

                    nEntry++;
                }

                Region reg         = Region.Find(target.Location, target.Map);
                bool   IsSeaTarget = false;
                if (target.WhisperHue == 999)
                {
                    IsSeaTarget = true;
                }
                if (reg.IsPartOf(typeof(PirateRegion)) && (target is AncientLich || target is PirateCaptain || target is ElfPirateCaptain))
                {
                    IsSeaTarget = true;
                }

                if (sPCCategory == "Item" && target != null)
                {
                    if (sPCCategory == "Item" && target.WhisperHue == 999 && FishingQuestFunctions.ChanceToFindQuestedItem() >= Utility.RandomMinMax(1, 100) && Worlds.GetMyWorld(target.Map, target.Location, target.X, target.Y) == sPCWorld && nPCDone != 1)
                    {
                        m.PrivateOverheadMessage(MessageType.Regular, 1153, false, "Ahh...they had " + sPCName + "!", m.NetState);
                        explorer = explorer.Replace("#0#", "#1#");
                        m.SendSound(0x3D);
                        LoggingFunctions.LogQuestItem(m, sPCName);
                        CharacterDatabase.SetQuestInfo(m, "FishingQuest", explorer);
                    }
                }
                else if (target != null)
                {
                    string sexplorer = target.GetType().ToString();

                    if (sexplorer == sPCTarget && IsSeaTarget == true && Worlds.GetMyWorld(target.Map, target.Location, target.X, target.Y) == sPCWorld && nPCDone != 1)
                    {
                        m.PrivateOverheadMessage(MessageType.Regular, 1153, false, "The quested bounty has been fulfilled!", m.NetState);
                        explorer = explorer.Replace("#0#", "#1#");
                        m.SendSound(0x3D);
                        LoggingFunctions.LogQuestKill(m, "sea", target);
                        CharacterDatabase.SetQuestInfo(m, "FishingQuest", explorer);
                    }
                }
            }
        }
示例#4
0
        public static void FindTarget(Mobile m, int fee)
        {
            PlayerMobile PC = (PlayerMobile)m;

            int PirateHunt = 0;
            int WorldPick  = Utility.RandomMinMax(0, 14);

            if (Utility.RandomMinMax(1, 8) == 1 && 4000 < fee)
            {
                PirateHunt = 1; WorldPick = Utility.RandomMinMax(0, 6);
            }

            string searchLocation = "the Land of Sosaria";

            switch (WorldPick)
            {
            case 0:         searchLocation = "the Land of Sosaria";                 break;

            case 1:         searchLocation = "the Land of Sosaria";                 break;

            case 2:         searchLocation = "the Land of Sosaria";                 break;

            case 3:         searchLocation = "the Land of Lodoria";                 if (!(CharacterDatabase.GetDiscovered(m, "the Land of Lodoria")))
                {
                    searchLocation = "the Land of Sosaria";
                }
                break;

            case 4:         searchLocation = "the Land of Lodoria";                 if (!(CharacterDatabase.GetDiscovered(m, "the Land of Lodoria")))
                {
                    searchLocation = "the Land of Sosaria";
                }
                break;

            case 5:         searchLocation = "the Land of Lodoria";                 if (!(CharacterDatabase.GetDiscovered(m, "the Land of Lodoria")))
                {
                    searchLocation = "the Land of Sosaria";
                }
                break;

            case 6:         searchLocation = "the Isles of Dread";                  if (!(CharacterDatabase.GetDiscovered(m, "the Isles of Dread")))
                {
                    searchLocation = "the Land of Sosaria";
                }
                break;

            case 7:         searchLocation = "the Serpent Island";                  if (!(CharacterDatabase.GetDiscovered(m, "the Serpent Island")))
                {
                    searchLocation = "the Land of Sosaria";
                }
                break;

            case 8:         searchLocation = "the Serpent Island";                  if (!(CharacterDatabase.GetDiscovered(m, "the Serpent Island")))
                {
                    searchLocation = "the Land of Sosaria";
                }
                break;

            case 9:         searchLocation = "the Serpent Island";                  if (!(CharacterDatabase.GetDiscovered(m, "the Serpent Island")))
                {
                    searchLocation = "the Land of Sosaria";
                }
                break;

            case 10:        searchLocation = "the Savaged Empire";                  if (!(CharacterDatabase.GetDiscovered(m, "the Savaged Empire")))
                {
                    searchLocation = "the Land of Sosaria";
                }
                break;

            case 11:        searchLocation = "the Savaged Empire";                  if (!(CharacterDatabase.GetDiscovered(m, "the Savaged Empire")))
                {
                    searchLocation = "the Land of Sosaria";
                }
                break;

            case 12:        searchLocation = "the Island of Umber Veil";    if (!(CharacterDatabase.GetDiscovered(m, "the Island of Umber Veil")))
                {
                    searchLocation = "the Land of Sosaria";
                }
                break;

            case 13:        searchLocation = "the Bottle World of Kuldar";  if (!(CharacterDatabase.GetDiscovered(m, "the Bottle World of Kuldar")))
                {
                    searchLocation = "the Land of Sosaria";
                }
                break;

            case 14:        searchLocation = "the Underworld";                              if (!(CharacterDatabase.GetDiscovered(m, "the Underworld")))
                {
                    searchLocation = "the Underworld";
                }
                break;
            }

            if (!(CharacterDatabase.GetDiscovered(m, "the Land of Sosaria")) && searchLocation == "the Land of Sosaria")
            {
                if (m.Skills.Cap == 11000)
                {
                    searchLocation = "the Savaged Empire";
                }
                else
                {
                    searchLocation = "the Land of Lodoria";
                }
            }

            int       aCount  = 0;
            Region    reg     = null;
            ArrayList targets = new ArrayList();

            foreach (Mobile target in World.Mobiles.Values)
            {
                if (target is BaseCreature)
                {
                    reg = Region.Find(target.Location, target.Map);

                    if (PirateHunt == 1)
                    {
                        if (searchLocation == "the Land of Sosaria")
                        {
                            if (target is PirateCaptain && reg.IsPartOf(typeof(PirateRegion)) && target.Map == Map.Sosaria && Worlds.GetMyWorld(target.Map, target.Location, target.X, target.Y) == searchLocation)
                            {
                                targets.Add(target); aCount++;
                            }
                        }
                        else if (searchLocation == "the Land of Lodoria")
                        {
                            if ((target is AncientLich || target is ElfPirateCaptain) && reg.IsPartOf(typeof(PirateRegion)) && target.Map == Map.Lodor && Worlds.GetMyWorld(target.Map, target.Location, target.X, target.Y) == searchLocation)
                            {
                                targets.Add(target); aCount++;
                            }
                        }
                        else if (searchLocation == "the Isles of Dread")
                        {
                            if (target is PirateCaptain && reg.IsPartOf(typeof(PirateRegion)) && target.Map == Map.IslesDread && Worlds.GetMyWorld(target.Map, target.Location, target.X, target.Y) == searchLocation)
                            {
                                targets.Add(target); aCount++;
                            }
                        }
                    }
                    else
                    {
                        if (searchLocation == "the Land of Sosaria")
                        {
                            if (SkipMe(target) == true && target.Karma < 0 && target.Fame < fee && target.WhisperHue == 999 && Server.Misc.Worlds.IsMainRegion(Server.Misc.Worlds.GetRegionName(target.Map, target.Location)) && target.Map == Map.Sosaria && Worlds.GetMyWorld(target.Map, target.Location, target.X, target.Y) == searchLocation)
                            {
                                targets.Add(target); aCount++;
                            }
                        }
                        else if (searchLocation == "the Land of Lodoria")
                        {
                            if (SkipMe(target) == true && target.Karma < 0 && target.Fame < fee && target.WhisperHue == 999 && Server.Misc.Worlds.IsMainRegion(Server.Misc.Worlds.GetRegionName(target.Map, target.Location)) && target.Map == Map.Lodor && Worlds.GetMyWorld(target.Map, target.Location, target.X, target.Y) == searchLocation)
                            {
                                targets.Add(target); aCount++;
                            }
                        }
                        else if (searchLocation == "the Serpent Island")
                        {
                            if (SkipMe(target) == true && target.Karma < 0 && target.Fame < fee && target.WhisperHue == 999 && Server.Misc.Worlds.IsMainRegion(Server.Misc.Worlds.GetRegionName(target.Map, target.Location)) && target.Map == Map.SerpentIsland && Worlds.GetMyWorld(target.Map, target.Location, target.X, target.Y) == searchLocation)
                            {
                                targets.Add(target); aCount++;
                            }
                        }
                        else if (searchLocation == "the Isles of Dread")
                        {
                            if (SkipMe(target) == true && target.Karma < 0 && target.Fame < fee && target.WhisperHue == 999 && Server.Misc.Worlds.IsMainRegion(Server.Misc.Worlds.GetRegionName(target.Map, target.Location)) && target.Map == Map.IslesDread && Worlds.GetMyWorld(target.Map, target.Location, target.X, target.Y) == searchLocation)
                            {
                                targets.Add(target); aCount++;
                            }
                        }
                        else if (searchLocation == "the Savaged Empire")
                        {
                            if (SkipMe(target) == true && target.Karma < 0 && target.Fame < fee && target.WhisperHue == 999 && Server.Misc.Worlds.IsMainRegion(Server.Misc.Worlds.GetRegionName(target.Map, target.Location)) && target.Map == Map.SavagedEmpire && Worlds.GetMyWorld(target.Map, target.Location, target.X, target.Y) == searchLocation)
                            {
                                targets.Add(target); aCount++;
                            }
                        }
                        else if (searchLocation == "the Island of Umber Veil")
                        {
                            if (SkipMe(target) == true && target.Karma < 0 && target.Fame < fee && target.WhisperHue == 999 && Server.Misc.Worlds.IsMainRegion(Server.Misc.Worlds.GetRegionName(target.Map, target.Location)) && target.Map == Map.Sosaria && Worlds.GetMyWorld(target.Map, target.Location, target.X, target.Y) == searchLocation)
                            {
                                targets.Add(target); aCount++;
                            }
                        }
                        else if (searchLocation == "the Bottle World of Kuldar")
                        {
                            if (SkipMe(target) == true && target.Karma < 0 && target.Fame < fee && target.WhisperHue == 999 && Server.Misc.Worlds.IsMainRegion(Server.Misc.Worlds.GetRegionName(target.Map, target.Location)) && target.Map == Map.Sosaria && Worlds.GetMyWorld(target.Map, target.Location, target.X, target.Y) == searchLocation)
                            {
                                targets.Add(target); aCount++;
                            }
                        }
                        else if (searchLocation == "the Underworld")
                        {
                            if (SkipMe(target) == true && target.Karma < 0 && target.Fame < fee && target.WhisperHue == 999 && Server.Misc.Worlds.IsMainRegion(Server.Misc.Worlds.GetRegionName(target.Map, target.Location)) && target.Map == Map.Underworld && Worlds.GetMyWorld(target.Map, target.Location, target.X, target.Y) == searchLocation)
                            {
                                targets.Add(target); aCount++;
                            }
                        }
                    }

                    if (aCount < 1)               // SAFETY CATCH IF IT FINDS NOT CREATURES AT ALL...IT WILL FIND AT LEAST ONE IN SOSARIA //
                    {
                        if (target.Karma < 0 && target.Fame < fee && target.WhisperHue == 999 && Server.Misc.Worlds.IsMainRegion(Server.Misc.Worlds.GetRegionName(target.Map, target.Location)) && target.Map == Map.Sosaria && Worlds.GetMyWorld(target.Map, target.Location, target.X, target.Y) == "the Land of Sosaria")
                        {
                            targets.Add(target); aCount++;
                        }
                    }
                }
            }

            aCount = Utility.RandomMinMax(1, aCount);

            int xCount = 0;

            for (int i = 0; i < targets.Count; ++i)
            {
                xCount++;

                if (xCount == aCount)
                {
                    if (Utility.RandomMinMax(1, 3) != 1)                         // KILL SOMETHING
                    {
                        Mobile theone = ( Mobile )targets[i];
                        string kWorld = Worlds.GetMyWorld(theone.Map, theone.Location, theone.X, theone.Y);

                        int    nFee      = theone.Fame / 2;
                        string kexplorer = theone.GetType().ToString();
                        string kDollar   = nFee.ToString();

                        string killName  = theone.Name;
                        string killTitle = theone.Title;
                        if (theone is Wyrms)
                        {
                            killName = "a wyrm"; killTitle = "";
                        }
                        if (theone is RidingDragon || theone is Dragons)
                        {
                            killName = "a dragon"; killTitle = "";
                        }
                        if (theone is Daemon)
                        {
                            killName = "a daemon"; killTitle = "";
                        }
                        if (theone is Balron)
                        {
                            killName = "a balron"; killTitle = "";
                        }

                        string myexplorer = kexplorer + "#" + killTitle + "#" + killName + "#the high seas#0#" + kDollar + "#" + kWorld + "#Monster";
                        string useTitle   = killTitle;

                        if (theone is AncientLich || theone is PirateCaptain || theone is ElfPirateCaptain)
                        {
                            Region argh = Region.Find(theone.Location, theone.Map);
                            nFee = (theone.Fame / 10) * 3;
                            if (nFee > 2000)
                            {
                                nFee = 2000;
                            }
                            int nLow = (int)(nFee * 0.75);
                            nFee       = (int)(Utility.RandomMinMax(nLow, nFee) * 10);
                            kDollar    = ((int)((Server.Misc.MyServerSettings.QuestRewardModifier() * 0.01) * nFee)).ToString();
                            useTitle   = argh.Name;
                            useTitle   = useTitle.Replace("the Waters of", "of");
                            myexplorer = kexplorer + "#" + useTitle + "#the Pirate Captain#the high seas#0#" + kDollar + "#" + kWorld + "#Monster";
                        }

                        CharacterDatabase.SetQuestInfo(m, "FishingQuest", myexplorer);

                        string theStory = myexplorer + "#" + FishingQuestFunctions.QuestSentence(PC);                           // ADD THE STORY PART

                        CharacterDatabase.SetQuestInfo(m, "FishingQuest", theStory);
                    }
                    else                     // FIND SOMETHING
                    {
                        Mobile theone = ( Mobile )targets[i];
                        string kWorld = Worlds.GetMyWorld(theone.Map, theone.Location, theone.X, theone.Y);

                        string kexplorer = theone.GetType().ToString();

                        int qFame = m.Fame;
                        if (qFame < 1000)
                        {
                            qFame = 1000;
                        }
                        else if (qFame > 10000)
                        {
                            qFame = 10000;
                        }

                        int nFee = (int)(((Utility.RandomMinMax(500, qFame) / 10) * 10) / 2);

                        string kDollar = ((int)((Server.Misc.MyServerSettings.QuestRewardModifier() * 0.01) * nFee)).ToString();

                        string ItemToFind = QuestCharacters.QuestItems(true);

                        string myexplorer = "##" + ItemToFind + "#the high seas#0#" + kDollar + "#" + kWorld + "#Item";
                        CharacterDatabase.SetQuestInfo(m, "FishingQuest", myexplorer);

                        string theStory = myexplorer + "#" + FishingQuestFunctions.QuestSentence(PC);                           // ADD THE STORY PART

                        CharacterDatabase.SetQuestInfo(m, "FishingQuest", theStory);
                    }
                }
            }
        }