TestQuest, Do Only Once:
using System;
using Server;
using Server.Items;
using Server.Mobiles;

namespace Server.Engines.Quests
{
    public class TestQuest : BaseQuest
    {
        //Player can only do quest once
        public override bool DoneOnce{ get{ return true; } }


        public TestQuest() : base()
        {
        }

    }
}
 
TestQuest, Do Only Once:
using System;
using Server;
using Server.Items;
using Server.Mobiles;

namespace Server.Engines.Quests
{
    public class TestQuest : BaseQuest
    {
        //Player can only do quest once
        public override bool DoneOnce{ get{ return true; } }


        public TestQuest() : base()
        {
        }

    }
}
Ok where do I put this thoe in the qust gump? thats the part im unsure of.
 
TestQuest, Do Only Once:
using System;
using Server;
using Server.Items;
using Server.Mobiles;

namespace Server.Engines.Quests
{
    public class TestQuest : BaseQuest
    {
        //Player can only do quest once
        public override bool DoneOnce{ get{ return true; } }


        public TestQuest() : base()
        {
        }

    }
}
OK the script I have isn't made with a xml. So I am not sure where to put this in this script.
 

Attachments

  • BellaQuest.cs
    3 KB · Views: 7
Back