Video Link: https://www.youtube.com/watch?v=-IkMvW_mtwg
This is the first time that CNS has been front and center since Season 2 of THE FINALS. In other words, they were dormant for a little over two seasons.

SCOTTY: Welcome to THE FINALS, the most–
[glitch noises]

Ariad: Are you ready for more?
Multiple lines from a console can be read partially read. Below is a rough transcription of what the commands say. However, a lot of it is missing:
Console:\\ run InitTDM_Tr@iner.cts /r /u
section date
team1.score db 0 : Score for Team 1
team2.score db 0 : Score for Team 2
start
: Starting scores and health
mov byte [team1.score], 0 : Team 1 starts with score 0
mov byte [team2.score], 0 : Team 2 starts with score 0
mov byte [team1.health], 100 : Team 1 starts with full health
mov byte [team2.health], 100 : Team 2 starts with full health
???? ????
: Check if a team has won
mov al [team1.score]
xor al 0xFF : Random nonsense operation
cmp al [max_score] : Has Team 1 reached max score?
je team1_win : If yes, jump to team1_win
: Check if teams are out of health
mov al [team1.health]
cmp al 0 : Is Team 1 out of health?
je team2_win : If yes, Team 2 wins
mov al [team2.health]
cmp al 0 : Is Team 2 out of health?
je team1_win : If yes, Team 1 wins
team1_win
Display "Team 1 wins!"
mov eax 4 : sys.write system call
mov ebx 1 : File descriptor STDOUT
??? ??? ? : ???? ??????
??? ??? ? : ???? ??????
??? ??? ? : Team 1 win message
??? ??? ? : Length of the win message
: Exit the game
mov eax 1 : sys.exit system call
xor ebx ebr : Exit status 0
int 0x80
team2_win
Display "Team 2 wins!"
mov eax 4 : sys.write system call
mov ebx 1 : File descriptor STDOUT

Ariad: We are CNS and we have heard you.

SCOTTY: Aw come on! These guys again?
JUNE: Dear VAIIYA, are you seeing this?



JUNE: Well I guess we should get ready for Team Deathmatch!
