Difference between revisions of "Map Template:CTF"
From Fortress Forever Wiki
Jump to navigationJump to search (blueflag, bluecap etc. have underscores in them!) |
|||
| (7 intermediate revisions by 5 users not shown) | |||
| Line 1: | Line 1: | ||
| + | {{Infobox manual/Header}} | ||
=Introduction= | =Introduction= | ||
This is your standard run-of-the-mill Capture the Flag map. All of the [[MapTemplate:BaseTeamplay|Basic Teamplay]] entities are supported. | This is your standard run-of-the-mill Capture the Flag map. All of the [[MapTemplate:BaseTeamplay|Basic Teamplay]] entities are supported. | ||
=Entities= | =Entities= | ||
| − | + | *<b>red_flag</b> (info_ff_script): Location for the red flag | |
| − | + | *<b>blue_flag</b> (info_ff_script): Location for the blue flag | |
| − | + | *<b>red_cap</b> (trigger_ff_script): Location for the red capture point (to capture the blue flag) | |
| − | + | *<b>blue_cap</b> (trigger_ff_script): Location for the blue capture point (to capture the red flag) | |
=Lua Script= | =Lua Script= | ||
| − | + | <pre>POINTS_PER_CAPTURE = 10; | |
FLAG_RETURN_TIME = 15 | FLAG_RETURN_TIME = 15 | ||
| − | IncludeScript("base_ctf");[/ | + | IncludeScript("base_ctf");</pre> |
| + | |||
| + | [[Category:Map Templates]] [[Category:Mapping]] | ||
| + | {{Infobox manual/Footer}} | ||
Latest revision as of 06:32, 24 June 2012
|
IntroductionThis is your standard run-of-the-mill Capture the Flag map. All of the Basic Teamplay entities are supported. Entities
Lua ScriptPOINTS_PER_CAPTURE = 10;
FLAG_RETURN_TIME = 15
IncludeScript("base_ctf");
|