improve king of the hill scenario

alut-include-path
Maikel de Vries 2017-01-16 18:54:20 +01:00
parent 43d6abc802
commit c632a6ed15
5 changed files with 6 additions and 3 deletions

View File

@ -1,3 +1,3 @@
Defense
In defense scenarios, one or more players must defend cooperatively against increasing waves on attackers. Enemies give bounty and weapons and utilities can be upgraded.
In defense scenarios, one or more players must defend cooperatively against increasing waves of attackers. Enemies give bounty and weapons and utilities can be upgraded.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -213,8 +213,10 @@ func InitializeObjects()
ToolsWorkshop001->CreateContents(Shovel, 2);
ChemicalLab001->CreateContents(DynamiteBox, 2);
ToolsWorkshop001->CreateContents(Lantern);
Armory001->CreateContents(Lantern);
var Lantern001 = ToolsWorkshop001->CreateContents(Lantern);
Lantern001->TurnOn();
var Lantern002 = Armory001->CreateContents(Lantern);
Lantern002->TurnOn();
Lorry001->CreateContents(Axe, 2);

View File

@ -17,6 +17,7 @@ protected func Initialize()
CreateObject(Rule_BaseRespawn);
CreateObject(Rule_TeamAccount);
CreateObject(Rule_NoFriendlyFire);
CreateObject(Rule_Gravestones);
return;
}