34 lines
883 B
Text
34 lines
883 B
Text
|
main()
|
||
|
{
|
||
|
//maps\mp\mp_cargoship_fx::main();
|
||
|
//maps\createart\mp_cargoship_art::main();
|
||
|
//needs to be first for create fx
|
||
|
//maps\mp\mp_shrine_fx::main();
|
||
|
|
||
|
|
||
|
maps\mp\createart\mp_lagoon_art::main();
|
||
|
|
||
|
maps\mp\_load::main();
|
||
|
|
||
|
//maps\mp\mp_lagoon_amb::main();
|
||
|
|
||
|
maps\mp\_compass::setupMiniMap("compass_map_mp_lagoon");
|
||
|
|
||
|
//setExpFog(300, 1400, 0.5, 0.5, 0.5, 0);
|
||
|
//VisionSetNaked( "mp_cargoship" );
|
||
|
//ambientPlay("ambient_cargoshipmp_ext");
|
||
|
|
||
|
// If the team nationalites change in this file,
|
||
|
// you must update the team nationality in the level's csc file as well!
|
||
|
game["allies"] = "marines";
|
||
|
game["axis"] = "japanese";
|
||
|
game["attackers"] = "allies";
|
||
|
game["defenders"] = "axis";
|
||
|
game["allies_soldiertype"] = "pacific";
|
||
|
game["axis_soldiertype"] = "pacific";
|
||
|
|
||
|
setdvar( "r_specularcolorscale", "1" );
|
||
|
|
||
|
setdvar("compassmaxrange","2100");
|
||
|
}
|