Aura.Channel.World.Entities.Creatures.CreatureQuests.Start C# (CSharp) Метод

Start() публичный Метод

Gives quest scroll for the given quest id to the player.
public Start ( int questId ) : void
questId int
Результат 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);
		}