Aura.Channel.World.Entities.Creatures.CreatureQuests.Start C# (CSharp) Method

Start() public method

Gives quest scroll for the given quest id to the player.
public Start ( int questId ) : void
questId int
return void
		public void Start(int questId)
		{
			var item = Item.CreateQuestScroll(questId);

			// Do quests that are received via owl *always* go into the
			// quest pocket?
			_creature.Inventory.Add(item, Pocket.Quests);
		}