コード例 #1
0
        public override bool OnMoveOver(Mobile m)
        {
            PlayerMobile pm = m as PlayerMobile;

            if (pm == null)
            {
                return(false);
            }

            QuestSystem qs = pm.Quest;

            if (qs != null && qs is HaochisTrialsQuest)
            {
                if (qs.IsObjectiveInProgress(typeof(RetrieveKatanaObjective)))
                {
                    QuestObjective obj = qs.FindObjective(typeof(RetrieveKatanaObjective));

                    if (obj != null)
                    {
                        obj.Complete();
                    }

                    qs.AddConversation(new SpotSwordConversation());

                    m.AddToBackpack(new DaimyoHaochisKatana());

                    qs.AddObjective(new GiveSwordDaimyoObjective());
                }

                if (qs.IsObjectiveInProgress(typeof(GiveSwordDaimyoObjective)))
                {
                    ArrayList list = m.Backpack.Items;

                    DaimyoHaochisKatana katana = null;

                    for (int i = 0; i < list.Count; i++)
                    {
                        if ((Item)list[i] is DaimyoHaochisKatana)
                        {
                            katana = list[i] as DaimyoHaochisKatana;

                            break;
                        }
                    }

                    if (katana == null)
                    {
                        qs.AddConversation(new SpotSwordConversation());

                        m.AddToBackpack(new DaimyoHaochisKatana());
                    }
                }
            }

            return(true);
        }
コード例 #2
0
        public override void OnTalk(PlayerMobile player, bool contextMenu)
        {
            Direction = GetDirectionTo(player);

            QuestSystem qs = player.Quest;

            if (qs is HaochisTrialsQuest)
            {
                HaochisTrialsQuest htq = qs as HaochisTrialsQuest;

                if (qs.IsObjectiveInProgress(typeof(SpeakToDaimyoHaochiObjective)))
                {
                    QuestObjective obj = qs.FindObjective(typeof(SpeakToDaimyoHaochiObjective));

                    if (obj != null)
                    {
                        obj.Complete();
                    }

                    qs.AddConversation(new DaimyoHaochiBeginConversation());

                    qs.AddObjective(new FollowGreenPathObjective());
                }

                if (qs.IsObjectiveInProgress(typeof(KillRoninsOrSoulsObjective)))
                {
                    bool ronins = false;

                    if (htq.KilledRonins > htq.KilledSouls)
                    {
                        ronins = true;
                    }

                    if (ronins)
                    {
                        qs.AddConversation(new ContinueSlayingRoninsConversation());
                    }
                    else if (htq.KilledSouls > 0)
                    {
                        qs.AddConversation(new ContinueSlayingSoulsConversation());
                    }
                }

                if (qs.IsObjectiveInProgress(typeof(FirstTrialCompleteObjective)))
                {
                    QuestObjective obj = qs.FindObjective(typeof(FirstTrialCompleteObjective));

                    if (obj != null)
                    {
                        obj.Complete();
                    }

                    if (htq.KilledRonins == 3)
                    {
                        qs.AddConversation(new ThanksForRoninsConversation());
                    }

                    if (htq.KilledSouls == 3)
                    {
                        qs.AddConversation(new ThanksForSoulsConversation());
                    }

                    player.AddToBackpack(new LeatherDo());

                    qs.AddObjective(new FollowYellowPathObjective());
                }

                if (qs.IsObjectiveInProgress(typeof(SecondTrialCompleteObjective)))
                {
                    QuestObjective obj = qs.FindObjective(typeof(SecondTrialCompleteObjective));

                    if (obj != null)
                    {
                        obj.Complete();
                    }

                    if (htq.Opponent == OpponentType.FierceDragon)
                    {
                        qs.AddConversation(new DragonConversation());
                    }

                    if (htq.Opponent == OpponentType.DeadlyImp)
                    {
                        qs.AddConversation(new ImpConversation());
                    }

                    player.AddToBackpack(new LeatherSuneate());

                    qs.AddObjective(new FollowBluePathObjective());
                }

                if (qs.IsObjectiveInProgress(typeof(ThirdTrialCompleteObjective)))
                {
                    QuestObjective obj = qs.FindObjective(typeof(ThirdTrialCompleteObjective));

                    if (obj != null)
                    {
                        obj.Complete();
                    }

                    qs.AddConversation(new HaochiSmilesConversation());

                    player.AddToBackpack(new LeatherHiroSode());

                    qs.AddObjective(new FollowRedPathObjective());
                }

                if (qs.IsObjectiveInProgress(typeof(MadeChoiceObjective)))
                {
                    QuestObjective obj = qs.FindObjective(typeof(MadeChoiceObjective));

                    if (obj != null)
                    {
                        obj.Complete();
                    }

                    if (htq.Choice == ChoiceType.Gold)
                    {
                        qs.AddConversation(new RespectForGoldConversation());
                    }

                    if (htq.Choice == ChoiceType.Cats)
                    {
                        qs.AddConversation(new RespectForCatsConversation());
                    }

                    Bag bag = new Bag();

                    bag.Hue = 0x660;

                    bag.DropItem(new LeatherHiroSode());
                    bag.DropItem(new JinBaori());

                    player.AddToBackpack(bag);

                    qs.AddObjective(new RetrieveKatanaObjective());
                }

                if (qs.IsObjectiveInProgress(typeof(GiveSwordDaimyoObjective)))
                {
                    ArrayList list = player.Backpack.Items;

                    DaimyoHaochisKatana katana = null;

                    for (int i = 0; i < list.Count; i++)
                    {
                        if ((Item)list[i] is DaimyoHaochisKatana)
                        {
                            katana = list[i] as DaimyoHaochisKatana;

                            break;
                        }
                    }

                    if (katana == null)
                    {
                        qs.AddConversation(new WithoutSwordConversation());
                    }
                    else
                    {
                        katana.Delete();

                        QuestObjective obj = qs.FindObjective(typeof(GiveSwordDaimyoObjective));

                        if (obj != null)
                        {
                            obj.Complete();
                        }

                        qs.AddConversation(new ThanksForSwordConversation());

                        qs.AddObjective(new LightCandleObjective());
                    }
                }

                if (qs.IsObjectiveInProgress(typeof(CandleCompleteObjective)))
                {
                    QuestObjective obj = qs.FindObjective(typeof(CandleCompleteObjective));

                    if (obj != null)
                    {
                        obj.Complete();
                    }

                    qs.AddConversation(new WellDoneConversation());

                    qs.AddObjective(new KillNinjaObjective());
                }

                if (qs.IsObjectiveInProgress(typeof(ExecutionsCompleteObjective)))
                {
                    QuestObjective obj = qs.FindObjective(typeof(ExecutionsCompleteObjective));

                    if (obj != null)
                    {
                        obj.Complete();
                    }

                    qs.AddConversation(new FirewellConversation());

                    BaseWeapon weapon = new Daisho();

                    BaseRunicTool.ApplyAttributesTo(weapon, Utility.Random(1, 3), 10, 30);

                    player.AddToBackpack(weapon);

                    BaseArmor armor = new LeatherDo();

                    BaseRunicTool.ApplyAttributesTo(armor, Utility.Random(1, 3), 10, 20);

                    player.AddToBackpack(armor);

                    qs.Complete();
                }
            }
        }