Botpack
Class LadderCTF

source: e:\games\UnrealTournament\Botpack\Classes\LadderCTF.uc
Core.Object
   |
   +--Engine.Actor
      |
      +--Engine.Info
         |
         +--Botpack.Ladder
            |
            +--Botpack.LadderCTF
Direct Known Subclasses:LadderCTFGOTY

class LadderCTF
extends Botpack.Ladder

//============================================================================= // LadderCTF //=============================================================================

Source Code


00001	//=============================================================================
00002	// LadderCTF
00003	//=============================================================================
00004	class LadderCTF extends Ladder;
00005	
00006	defaultproperties
00007	{
00008	     Matches=10
00009	     bTeamGame=True
00010	     MapPrefix="CTF-"
00011	     Maps(0)="Tutorial.unr"
00012	     Maps(1)="Niven.unr"
00013	     Maps(2)="Face.unr"
00014	     Maps(3)="EternalCave.unr"
00015	     Maps(4)="Coret.unr"
00016	     Maps(5)="Gauntlet.unr"
00017	     Maps(6)="Dreary.unr"
00018	     Maps(7)="Command.unr"
00019	     Maps(8)="LavaGiant.unr"
00020	     Maps(9)="November.unr"
00021	     MapAuthors(0)="Cliff Bleszinski"
00022	     MapAuthors(1)="Alan Willard 'Talisman'"
00023	     MapAuthors(2)="Cedric 'Inoxx' Fiorentino"
00024	     MapAuthors(3)="Juan Pancho Eekels"
00025	     MapAuthors(4)="Alan Willard 'Talisman'"
00026	     MapAuthors(5)="Cliff Bleszinski"
00027	     MapAuthors(6)="Shane Caudle"
00028	     MapAuthors(7)="Myscha the sled dog"
00029	     MapAuthors(8)="Juan Pancho Eekels"
00030	     MapAuthors(9)="Myscha the sled dog"
00031	     MapTitle(0)="CTF Tutorial"
00032	     MapTitle(1)="Niven"
00033	     MapTitle(2)="Facing Worlds"
00034	     MapTitle(3)="Eternal Cave"
00035	     MapTitle(4)="Coret"
00036	     MapTitle(5)="The Gauntlet"
00037	     MapTitle(6)="Dreary"
00038	     MapTitle(7)="Last Command"
00039	     MapTitle(8)="The Lava Giant"
00040	     MapTitle(9)="November Sub Pen"
00041	     MapDescription(0)="Learn the basic rules and systems of Capture the Flag in this special training environment. Test your skills against an untrained enemy team before entering the tournament proper."
00042	     MapDescription(1)="An experimental orbital nuclear reactor, abandoned after funding for the project dried up. High radiation levels and waste leakage offer an environmental challenge for Tournament combatants."
00043	     MapDescription(2)="This ancient asteroid has been converted to an Arena for the Tournament. It is highly dangerous due to aberrant gravitational properties and, of course, the snipers from the other team."
00044	     MapDescription(3)="Ruins belonging to an unknown race, acquired by Liandri Corporation's Xenobiology Division for research and excavation. Deemed a 'valuable and entertaining venue' by the Tournament Board after 17 XD archeologists fell to their deaths."
00045	     MapDescription(4)="Built into a mountaintop on the Coret moon, this facility was once the waypoint between the Interstellar zonegate in orbit over the moon and the Zeto Research Station located half the moon away in the frozen wastes."
00046	     MapDescription(5)="Not all environments are retrofitted Liandri real estate. The Gauntlet is one of a small number of highly stylized combat arenas specifically designed for the Tournament. This particular venue has been customized for teamplay."
00047	     MapDescription(6)="The distant wastemarsh of Vandaron 3 is said to be the wettest place in the galaxy. A post dreaded by soldiers due to its remote location, cramped quarters, and maddening echo of ever beating rain."
00048	     MapDescription(7)="The Last Command is a fully functional Nuclear Processing Station owned by the Liandri Corporation. This facility's system oriented layout makes an ideal proving grounds for Capture the Flag Tournament matches. High Tech voluminous industrial architecture paired with curving maintenance corridors means fighting here will require quick reaction times if your team plans on surviving."
00049	     MapDescription(8)="This volatile world has an extremely low orbit around a superdense gas giant. The resulting gravitational forces have caused the planetary mantle to collapse. Combatants are issued special gravbelts for each match."
00050	     MapDescription(9)="Battle around a retired November class nuclear submarine docked in an underground pen. This relic, left from the First Cold War, still includes machinegun nests and defensive positions key to victory."
00051	     RankedGame(0)=1
00052	     RankedGame(1)=1
00053	     RankedGame(2)=2
00054	     RankedGame(3)=2
00055	     RankedGame(4)=3
00056	     RankedGame(5)=3
00057	     RankedGame(6)=4
00058	     RankedGame(7)=4
00059	     RankedGame(8)=5
00060	     RankedGame(9)=5
00061	     GoalTeamScore(1)=3
00062	     GoalTeamScore(2)=3
00063	     GoalTeamScore(3)=3
00064	     GoalTeamScore(4)=3
00065	     GoalTeamScore(5)=3
00066	     GoalTeamScore(6)=3
00067	     GoalTeamScore(7)=3
00068	     GoalTeamScore(8)=3
00069	     GoalTeamScore(9)=3
00070	     MatchInfo(0)="Botpack.RatedMatchCTFTUT"
00071	     MatchInfo(1)="Botpack.RatedMatchCTF1"
00072	     MatchInfo(2)="Botpack.RatedMatchCTF3"
00073	     MatchInfo(3)="Botpack.RatedMatchCTF2"
00074	     MatchInfo(4)="Botpack.RatedMatchCTF4"
00075	     MatchInfo(5)="Botpack.RatedMatchCTF5"
00076	     MatchInfo(6)="Botpack.RatedMatchCTF6"
00077	     MatchInfo(7)="Botpack.RatedMatchCTF7"
00078	     MatchInfo(8)="Botpack.RatedMatchCTF8"
00079	     MatchInfo(9)="Botpack.RatedMatchCTF9"
00080	}

End Source Code