Botpack
Class LadderDOM

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

class LadderDOM
extends Botpack.Ladder

//============================================================================= // LadderDOM //=============================================================================

Source Code


00001	//=============================================================================
00002	// LadderDOM
00003	//=============================================================================
00004	class LadderDOM extends Ladder;
00005	
00006	defaultproperties
00007	{
00008	     Matches=10
00009	     bTeamGame=True
00010	     MapPrefix="DOM-"
00011	     Maps(0)="Tutorial.unr"
00012	     Maps(1)="Condemned.unr"
00013	     Maps(2)="Ghardhen.unr"
00014	     Maps(3)="Cryptic.unr"
00015	     Maps(4)="Cinder.unr"
00016	     Maps(5)="Gearbolt.unr"
00017	     Maps(6)="Leadworks.unr"
00018	     Maps(7)="Olden.unr"
00019	     Maps(8)="Sesmar.unr"
00020	     Maps(9)="MetalDream.unr"
00021	     MapAuthors(0)="Cliff Bleszinski"
00022	     MapAuthors(1)="Dave Ewing"
00023	     MapAuthors(2)="Alan Willard 'Talisman'"
00024	     MapAuthors(3)="Alan Willard 'Talisman'"
00025	     MapAuthors(4)="Cliff Bleszinski"
00026	     MapAuthors(5)="Cliff Bleszinski"
00027	     MapAuthors(6)="Myscha the sled dog"
00028	     MapAuthors(7)="Alan Willard 'Talisman'"
00029	     MapAuthors(8)="Juan Pancho Eekels"
00030	     MapAuthors(9)="Cedric 'Inoxx' Fiorentino"
00031	     MapTitle(0)="DOM Tutorial"
00032	     MapTitle(1)="Condemned"
00033	     MapTitle(2)="Ghardhen"
00034	     MapTitle(3)="Cryptic"
00035	     MapTitle(4)="Cinder"
00036	     MapTitle(5)="Gearbolt"
00037	     MapTitle(6)="Leadworks"
00038	     MapTitle(7)="Olden"
00039	     MapTitle(8)="Sesmar"
00040	     MapTitle(9)="MetalDream"
00041	     MapDescription(0)="Learn the basic rules and systems of Domination in this special training environment. Test your skills against an untrained enemy team before entering the tournament proper."
00042	     MapDescription(1)="The many gang-related fights that ravaged this particular area have already proven this section of the city slums to be a bloody battle ground. The Liandri organizers are expecting this to be the case once again, only this time, as a tournament domination arena."
00043	     MapDescription(2)="A newly constructed explosion testing facility, Ghardhen Labs houses two blast chambers. Unfortunately, one of the silent investors was a Liandri location scout, and Ghardhen fell to Liandri."
00044	     MapDescription(3)="One of the few 'manufactured' Tournament arenas, this ancient-seeming ruin was built by the legendary Tournament Master Kilbragh as a personal training facility. After his death, the property reverted to Liandri, who now makes full use of it."
00045	     MapDescription(4)="After dozens of broken legs and incinerated employees, the Cinder Foundry was finally shut down and placed upon the auction block, where it was promptly snatched up by a savvy Liandri location scout."
00046	     MapDescription(5)="New peace treaties by the NEG have resulted in many abandoned military facilities. Gearbolt was once an underground storage base for military weapons and inventory."
00047	     MapDescription(6)="An old leadworks on the wrong side of the tracks is excellent place for a war. You can expect molten lead still pooled in some areas of this facility. Step lightly if you plan on being effective."
00048	     MapDescription(7)="This ancient temple was sacred to the race that built it, but not to Liandri.  Upon discovering it nestled in the mountains above the Eternal Cave, desecrated it for battle."
00049	     MapDescription(8)="Despite worldwide protests, this historical landmark is now owned by Liandri. Jerl Liandri, President Liandri Mining Corporation: 'We owe it to the people to ensure quality cultural events. We won't settle for less.'"
00050	     MapDescription(9)="This oil rig has been converted into a Domination Arena. It is located near strange meteorological phenomenon in the northern reaches of Kryllia. Use the architecture to dominate your opponents."
00051	     RankedGame(0)=1
00052	     RankedGame(1)=1
00053	     RankedGame(2)=2
00054	     RankedGame(3)=3
00055	     RankedGame(4)=3
00056	     RankedGame(5)=3
00057	     RankedGame(6)=4
00058	     RankedGame(7)=4
00059	     RankedGame(8)=5
00060	     RankedGame(9)=6
00061	     GoalTeamScore(0)=20
00062	     GoalTeamScore(1)=100
00063	     GoalTeamScore(2)=100
00064	     GoalTeamScore(3)=100
00065	     GoalTeamScore(4)=125
00066	     GoalTeamScore(5)=125
00067	     GoalTeamScore(6)=150
00068	     GoalTeamScore(7)=150
00069	     GoalTeamScore(8)=175
00070	     GoalTeamScore(9)=200
00071	     MatchInfo(0)="Botpack.RatedMatchDOMTUT"
00072	     MatchInfo(1)="Botpack.RatedMatchDOM1"
00073	     MatchInfo(2)="Botpack.RatedMatchDOM3"
00074	     MatchInfo(3)="Botpack.RatedMatchDOM4"
00075	     MatchInfo(4)="Botpack.RatedMatchDOM5"
00076	     MatchInfo(5)="Botpack.RatedMatchDOM6"
00077	     MatchInfo(6)="Botpack.RatedMatchDOM7"
00078	     MatchInfo(7)="Botpack.RatedMatchDOM8"
00079	     MatchInfo(8)="Botpack.RatedMatchDOM9"
00080	     MatchInfo(9)="Botpack.RatedMatchDOM10"
00081	}

End Source Code