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);
		}