KillLogs added to all melees and ctfs

MimmoO 2010-12-07 14:44:38 +01:00
parent a3d27b9911
commit 42a1d61351
6 changed files with 7 additions and 3 deletions

View File

@ -17,12 +17,12 @@ protected func Initialize()
FindObject(Find_ID(Moon))->SetPhase(3);
FindObject(Find_ID(Moon))->SetCon(150);
FindObject(Find_ID(Moon))->SetPosition(LandscapeWidth()/2,150);
// Goal: Capture the flag, with bases in both hideouts.
var goal = CreateObject(Goal_CaptureTheFlag, 0, 0, NO_OWNER);
goal->SetFlagBase(1, 135, 260);
goal->SetFlagBase(2, LandscapeWidth() - 135, 260);
CreateObject(Rule_KillLogs);
var gate = CreateObject(StoneDoor, 345, 230, NO_OWNER);
gate->SetClrModulation(RGB(130,190,255));

View File

@ -13,7 +13,7 @@ protected func Initialize()
CreateObject(Chest, 180, 404, NO_OWNER);
CreateObject(Chest, 261, 163, NO_OWNER);
CreateObject(Rule_ObjectFade)->DoFadeTime(5 * 36);
CreateObject(Rule_KillLogs);
AddEffect("IntFillChests", nil, 100, 70, this);
return;
}

View File

@ -16,6 +16,7 @@ protected func Initialize()
AddEffect("BlessTheKing",goal,100,1,nil);
// Objects fade after 7 seconds.
CreateObject(Rule_ObjectFade)->DoFadeTime(7 * 36);
CreateObject(Rule_KillLogs);
//make lava collapse
CreateObject(Firestone,625,480);

View File

@ -12,6 +12,7 @@ protected func Initialize()
// Goal.
CreateObject(Goal_LastManStanding, 0, 0, NO_OWNER);
CreateObject(Rule_KillLogs);
//Enviroment.
CreateObject(Environment_Clouds);

View File

@ -10,6 +10,7 @@ protected func Initialize()
{
// Goal.
CreateObject(Goal_LastManStanding, 0, 0, NO_OWNER);
CreateObject(Rule_KillLogs);
// Chests with weapons.
CreateObject(Chest, 108, 230, NO_OWNER);

View File

@ -11,6 +11,7 @@ protected func Initialize()
{
// Goal.
CreateObject(Goal_LastManStanding, 0, 0, NO_OWNER);
CreateObject(Rule_KillLogs);
// Mood.
SetSkyAdjust(RGBa(255, 255, 255, 127), RGB(255, 200, 150));