Difference between revisions of "Map Template:RCTF"
From Fortress Forever Wiki
Jump to navigationJump to search| (5 intermediate revisions by 3 users not shown) | |||
| Line 1: | Line 1: | ||
| − | [[Category: | + | {{Infobox manual/Header}} |
| + | =Introduction= | ||
| + | This is pretty much your regular Capture the Flag map, except you take your flag to the enemy base. All of the [[MapTemplate:BaseTeamplay|Basic Teamplay]] entities are supported. | ||
| + | |||
| + | =Entities= | ||
| + | *<b>redflag</b> (info_ff_script): Location for the red flag | ||
| + | *<b>blueflag</b> (info_ff_script): Location for the blue flag | ||
| + | *<b>redcap</b> (trigger_ff_script): Location for the red capture point (to capture the blue flag) | ||
| + | *<b>bluecap</b> (trigger_ff_script): Location for the blue capture point (to capture the red flag) | ||
| + | |||
| + | =Lua Script= | ||
| + | <pre>POINTS_PER_CAPTURE = 10; | ||
| + | FLAG_RETURN_TIME = 15 | ||
| + | |||
| + | IncludeScript("base_ctf");</pre> | ||
| + | [[Category:Map Templates]] [[Category:Mapping]] | ||
| + | {{Infobox manual/Footer}} | ||
Latest revision as of 15:58, 31 December 2007
|
IntroductionThis is pretty much your regular Capture the Flag map, except you take your flag to the enemy base. All of the Basic Teamplay entities are supported. Entities
Lua ScriptPOINTS_PER_CAPTURE = 10;
FLAG_RETURN_TIME = 15
IncludeScript("base_ctf");
|