50DKP / FF2-Official

Freak Fortress 2 is a one versus all mod for Team Fortress 2. It is the successor to the Vs. Saxton Hale plugin.
https://forums.alliedmods.net/forumdisplay.php?f=154
GNU General Public License v3.0
53 stars 27 forks source link
freak-fortress-2 sourcemod sourcepawn tf2

Welcome to the official FF2 repository! Build Status

Want the latest version? Check out the Releases page. You can also check out the forums to learn more. Brought to you by 50DKP.

Include File Changes


Some third-party include files were modified in order to make FF2 work properly with or without the plugin that the include file belonged to. It is highly recommended that you also make these changes when compiling FF2.

smac.inc:

rtd.inc: Inside public SharedPlugin:__pl_rtd =

Formatting


If you wish to make a pull request, the following formatting rules should be adhered to:

Example:

if(markdownIsStupid)
{
    if(ubuntuIsAmazing)
    {
        while(!someOtherBoolean)
        {
            for(new i=0; i<=someOtherNumber; i+=3)
            {
                if(i==someNumber && moreVariableNames!=42)
                {
                    someOtherBoolean=true;
                }
            }
        }
    }

    someBitWiseThing[someNumber]=someBitWiseThing[someNumber]|coolBitWiseVariable;
    return;
}