protected void HandleLastRoundHalf(object sender, LastRoundHalfEventArgs e)
 {
     if (!IsMatchStarted)
     {
         return;
     }
     IsLastRoundHalf = true;
 }
 protected void HandleLastRoundHalf(object sender, LastRoundHalfEventArgs e)
 {
     if (!IsMatchStarted)
     {
         return;
     }
     if (_isFaceit && IsOvertime)
     {
         IsLastRoundHalf = true;
     }
 }
Example #3
0
 private void HandleLastRoundHalf(object sender, LastRoundHalfEventArgs e)
 {
     myLastRoundHalfOccurred = true;
 }
		protected void HandleLastRoundHalf(object sender, LastRoundHalfEventArgs e)
		{
			if (!IsMatchStarted) return;
			if (IsOvertime) IsLastRoundHalf = true;
		}
Example #5
0
 private void CurrentDemoParser_LastRoundHalf(object sender, LastRoundHalfEventArgs e)
 {
     SteamController.LogToConsole("Last round of the half");
 }
Example #6
0
        private void HandleLastRoundHalf(object sender, LastRoundHalfEventArgs e)
        {
            BaseEvent newEvent = new BaseEvent(EventType.LastRoundHalf);

            CurrentTick.Events.Add(newEvent);
        }