IsOneFlagCTF
Jump to navigation
Jump to search
![]() |
Warning: This feature is Skulltag specific, and is not compatible with ZDoom! To see all of Skulltag's specific features, see Skulltag features. |
int IsOneFlagCTF (void)
Usage
Returns true if the game is a One Flag CTF match.
Example
Script 1 ENTER
{
if (IsOneFlagCTF())
{
Print(s:"Have fun playing with only one flag!");
}
else
{
Print(s:"This map is meant for only one flag CTF!");
}
}