A gameplay mode restricted to Frigs and under.
I just wanted to tell you that it's pretty simple to make something like this, if you want to.
Just create a new unitcaps file, alongside the "Small", "Large" ones, and call it something new. For example, "Frigates.lua". Then, inside that, make the unit cap of everything above frigate 0.
Finally, make a copy of deathmatch.lua (leveldata\multiplayer). Inside it, change the GameRulesName and description, then, in the table at the top, there is the list of options. (I've already written about this file in my Scripting Tutorial) Find the "unitcaps" option, and change the values at the bottom:
Code:
{
name = "unitcaps",
locName = "$3214",
tooltip = "$3234",
default = 1,
visible = 1,
choices =
{ "$3215", "Small", "$3216", "Normal", "$3217", "Large", }, },
Make it so that there is only one setting (If you want more, add more unitcaps), which links to the "Frigates.lua", like this:
Code:
{
name = "unitcaps",
locName = "$3214",
tooltip = "$3234",
default = 1,
visible = 1,
choices =
{ "$Your String Here", "Frigates",}, },
P.S: Your PM box is full