コード例 #1
0
 protected void HandleLastRoundHalf(object sender, LastRoundHalfEventArgs e)
 {
     if (!IsMatchStarted)
     {
         return;
     }
     IsLastRoundHalf = true;
 }
コード例 #2
0
 protected void HandleLastRoundHalf(object sender, LastRoundHalfEventArgs e)
 {
     if (!IsMatchStarted)
     {
         return;
     }
     if (_isFaceit && IsOvertime)
     {
         IsLastRoundHalf = true;
     }
 }
コード例 #3
0
 private void HandleLastRoundHalf(object sender, LastRoundHalfEventArgs e)
 {
     myLastRoundHalfOccurred = true;
 }
コード例 #4
0
		protected void HandleLastRoundHalf(object sender, LastRoundHalfEventArgs e)
		{
			if (!IsMatchStarted) return;
			if (IsOvertime) IsLastRoundHalf = true;
		}
コード例 #5
0
 private void CurrentDemoParser_LastRoundHalf(object sender, LastRoundHalfEventArgs e)
 {
     SteamController.LogToConsole("Last round of the half");
 }
コード例 #6
0
ファイル: Mnifier.cs プロジェクト: joshdixon/DemoMinifier
        private void HandleLastRoundHalf(object sender, LastRoundHalfEventArgs e)
        {
            BaseEvent newEvent = new BaseEvent(EventType.LastRoundHalf);

            CurrentTick.Events.Add(newEvent);
        }