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

ShowKeywords() защищенный Метод

Opens keyword window.
Select should be sent afterwards... so you can actually select a keyword.
protected ShowKeywords ( ) : void
Результат void
		protected void ShowKeywords()
		{
			var script = string.Format(
				"<call convention='thiscall' syncmode='non-sync'>" +
					"<this type='character'>{0}</this>" +
					"<function>" +
						"<prototype>void character::OpenTravelerMemo(string)</prototype>" +
						"<arguments>" +
							"<argument type='string'>(null)</argument>" +
						"</arguments>" +
					"</function>" +
				"</call>"
			, this.Player.EntityId);

			Send.NpcTalk(this.Player, script);
		}