Aura.Channel.Scripting.Scripts.GameEventScript.Start C# (CSharp) Метод

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

Starts event if it's not active yet.
public Start ( ) : void
Результат void
		public void Start()
		{
			if (this.IsActive)
				return;

			this.IsActive = true;
			this.OnStart();

			Send.Notice(NoticeType.Middle, L("The {0} Event is now in progress."), this.Name);
			Send.GameEventStateUpdate(this.Id, this.IsActive);
		}