Make Spectre Camo use Corporate's Spectres if the current map is Corporate (#24)
This commit is contained in:
parent
6bcf728a98
commit
7a75fe66e4
10 changed files with 22 additions and 2 deletions
BIN
models/robots/spectre/spectre_corporate_pilot.dx11.vtx
Normal file
BIN
models/robots/spectre/spectre_corporate_pilot.dx11.vtx
Normal file
Binary file not shown.
BIN
models/robots/spectre/spectre_corporate_pilot.mdl
Normal file
BIN
models/robots/spectre/spectre_corporate_pilot.mdl
Normal file
Binary file not shown.
BIN
models/robots/spectre/spectre_corporate_pilot.phy
Normal file
BIN
models/robots/spectre/spectre_corporate_pilot.phy
Normal file
Binary file not shown.
BIN
models/robots/spectre/spectre_corporate_pilot.vvd
Normal file
BIN
models/robots/spectre/spectre_corporate_pilot.vvd
Normal file
Binary file not shown.
BIN
models/weapons/arms/pov_spectre_corporate.dx11.vtx
Normal file
BIN
models/weapons/arms/pov_spectre_corporate.dx11.vtx
Normal file
Binary file not shown.
BIN
models/weapons/arms/pov_spectre_corporate.mdl
Normal file
BIN
models/weapons/arms/pov_spectre_corporate.mdl
Normal file
Binary file not shown.
BIN
models/weapons/arms/pov_spectre_corporate.vvd
Normal file
BIN
models/weapons/arms/pov_spectre_corporate.vvd
Normal file
Binary file not shown.
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
import "titan_destroyer_tier0.set"
|
||||
//import "titan_destroyer_tier1.set"
|
||||
import "titan_atlas_training.set"
|
||||
import "titan_atlas_training.set"
|
||||
import "pilot_female_fastest.set"
|
||||
import "pilot_female_quickdraw.set"
|
||||
import "pilot_female_br.set"
|
||||
|
|
@ -27,6 +27,8 @@
|
|||
// dev
|
||||
import "model_viewer.set"
|
||||
|
||||
import "pilot_spectre_corporate.set"
|
||||
|
||||
// old
|
||||
// import "fireteam.set"
|
||||
// import "operator.set"
|
||||
|
|
|
|||
13
scripts/players/mp/pilot_spectre_corporate.set
Normal file
13
scripts/players/mp/pilot_spectre_corporate.set
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#base "pilot_spectre.set"
|
||||
|
||||
"pilot_spectre_corporate"
|
||||
{
|
||||
"global"
|
||||
{
|
||||
model "models/Robots/spectre/spectre_corporate_pilot.mdl"
|
||||
bodymodel_imc "models/Robots/spectre/spectre_corporate_pilot.mdl"
|
||||
bodymodel_militia "models/Robots/spectre/spectre_corporate_pilot.mdl"
|
||||
armsmodel_imc "models/weapons/arms/pov_spectre_corporate.mdl"
|
||||
armsmodel_militia "models/weapons/arms/pov_spectre_corporate.mdl"
|
||||
}
|
||||
}
|
||||
|
|
@ -773,7 +773,12 @@ function RunSpawnBurnCard( player, cardRef )
|
|||
|
||||
local pilotDataTable = GetPlayerClassDataTable( player, level.pilotClass )
|
||||
local pilotSettings = pilotDataTable.playerSetFile
|
||||
pilotSettings = "pilot_spectre"
|
||||
|
||||
if ( GetMapName() == "mp_corporate" )
|
||||
pilotSettings = "pilot_spectre_corporate"
|
||||
else
|
||||
pilotSettings = "pilot_spectre"
|
||||
|
||||
player.SetPlayerSettings( pilotSettings )
|
||||
player.SetPlayerPilotSettings( pilotSettings )
|
||||
break
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue