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

Notice() public method

Displays notice.
public Notice ( NoticeType type, string format ) : void
type NoticeType
format string
return void
		public void Notice(NoticeType type, string format, params object[] args)
		{
			Send.Notice(this.Player, type, format, args);
		}

Same methods

NpcScript::Notice ( string format ) : void