Aura.Channel.Scripting.Scripts.NpcScript.SendOwl C# (CSharp) Метод

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

Sends quest to player via owl after the delay.
public SendOwl ( int questId, int delay ) : void
questId int
delay int Arrival delay in seconds.
Результат void
		public void SendOwl(int questId, int delay)
		{
			try
			{
				this.Player.Quests.SendOwl(questId, delay);
			}
			catch (Exception ex)
			{
				Log.Exception(ex, "NpcScript.SendOwl: Quest '{0}'", questId);
				this.Msg("(Error)");
			}
		}

Same methods

NpcScript::SendOwl ( int questId ) : void