Aura.Channel.Scripting.Scripts.NpcScript.StartConversation C# (CSharp) Method

StartConversation() public method

Conversation (keywords) loop with initial mood message.
public StartConversation ( ) : Task
return Task
		public virtual async Task StartConversation()
		{
			// Show mood once at the start of the conversation
			this.Msg(Hide.Name, this.GetMoodString(), this.FavorExpression());

			await Conversation();
		}