blob: 3b75e725c399ccb9619c2503dfa81742dc5bb52d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
// literally just ttdm paste
global function GamemodeTFFA_Init
const float TFFAIntroLength = 15.0
void function GamemodeTFFA_Init()
{
SetSpawnpointGamemodeOverride( FFA )
Riff_ForceSetSpawnAsTitan( eSpawnAsTitan.Always )
Riff_ForceTitanExitEnabled( eTitanExitEnabled.Never )
TrackTitanDamageInPlayerGameStat( PGS_ASSAULT_SCORE )
ScoreEvent_SetupEarnMeterValuesForMixedModes()
SetLoadoutGracePeriodEnabled( false )
ClassicMP_SetCustomIntro( TFFAIntroSetup, TFFAIntroLength )
AddCallback_OnPlayerKilled( AddTeamScoreForPlayerKilled ) // dont have to track autotitan kills since you cant leave your titan in this mode
}
void function TFFAIntroSetup()
{
// this should show intermission cam for 15 sec in prematch, before spawning players as titans
AddCallback_GameStateEnter( eGameState.Prematch, TFFAIntroStart )
AddCallback_OnClientConnected( TFFAIntroShowIntermissionCam )
}
void function TFFAIntroStart()
{
thread TFFAIntroStartThreaded()
}
void function TFFAIntroStartThreaded()
{
ClassicMP_OnIntroStarted()
foreach ( entity player in GetPlayerArray() )
TFFAIntroShowIntermissionCam( player )
wait TFFAIntroLength
ClassicMP_OnIntroFinished()
}
void function TFFAIntroShowIntermissionCam( entity player )
{
if ( GetGameState() != eGameState.Prematch )
return
thread PlayerWatchesTFFAIntroIntermissionCam( player )
}
void function PlayerWatchesTFFAIntroIntermissionCam( entity player )
{
ScreenFadeFromBlack( player )
entity intermissionCam = GetEntArrayByClass_Expensive( "info_intermission" )[ 0 ]
// the angle set here seems sorta inconsistent as to whether it actually works or just stays at 0 for some reason
player.SetObserverModeStaticPosition( intermissionCam.GetOrigin() )
player.SetObserverModeStaticAngles( intermissionCam.GetAngles() )
player.StartObserverMode( OBS_MODE_STATIC_LOCKED )
wait TFFAIntroLength
if ( !IsValid( player ) ) // if player leaves during the intro sequence
return
RespawnAsTitan( player, false )
TryGameModeAnnouncement( player )
}
void function AddTeamScoreForPlayerKilled( entity victim, entity attacker, var damageInfo )
{
if ( victim != attacker && victim.IsPlayer() && attacker.IsPlayer() && GetGameState() == eGameState.Playing )
{
AddTeamScore( attacker.GetTeam(), 1 )
// why isn't this PGS_SCORE? odd game
attacker.AddToPlayerGameStat( PGS_ASSAULT_SCORE, 1 )
}
}
|