All Projects → 50DKP → Ff2 Official

50DKP / Ff2 Official

Licence: gpl-3.0
Freak Fortress 2 is a one versus all mod for Team Fortress 2. It is the successor to the Vs. Saxton Hale plugin.

Labels

Projects that are alternatives of or similar to Ff2 Official

API
API for SQLMatches.
Stars: ✭ 48 (-4%)
Mutual labels:  sourcemod
tf-bhop
Simplistic Team Fortress 2 bunnyhop plugin
Stars: ✭ 17 (-66%)
Mutual labels:  sourcemod
Csgo Pug Setup
CS:GO Sourcemod plugin for setting up private pug/10man games
Stars: ✭ 330 (+560%)
Mutual labels:  sourcemod
retakes-instadefuse
Allows a CT to instantly defuse the bomb when all Ts are dead and nothing can prevent the defusal.
Stars: ✭ 65 (+30%)
Mutual labels:  sourcemod
sourcemod-hl2dm
Half-Life 2 Deathmatch sourcemod plugins
Stars: ✭ 15 (-70%)
Mutual labels:  sourcemod
Kento-Rankme
Rankme for CSGO
Stars: ✭ 73 (+46%)
Mutual labels:  sourcemod
Half-Life-Resurgence
Recreation & expansion of NPCs, entities, and weapons from the Half-Life series into Garry's Mod!
Stars: ✭ 52 (+4%)
Mutual labels:  sourcemod
Sm Advertisements
Advertisements for SourceMod
Stars: ✭ 24 (-52%)
Mutual labels:  sourcemod
TeamGames
Sourcemod plugin providing team based games for prisoners and some useful things for wardens.
Stars: ✭ 16 (-68%)
Mutual labels:  sourcemod
Csgo Retakes
CS:GO Sourcemod plugin for a site-retake gamemode
Stars: ✭ 272 (+444%)
Mutual labels:  sourcemod
tf2attributes
TF2Attributes SourceMod plugin
Stars: ✭ 19 (-62%)
Mutual labels:  sourcemod
HLADM
Half-Life: Alyx: Deathmatch
Stars: ✭ 24 (-52%)
Mutual labels:  sourcemod
zephyrus-store-preview-new-syntax
My rewritten zephyrus store
Stars: ✭ 28 (-44%)
Mutual labels:  sourcemod
TF2 NextBot
TF2 NextBot stuff using base_boss
Stars: ✭ 26 (-48%)
Mutual labels:  sourcemod
Get5
CS:GO Sourcemod plugin for competitive matches/scrims
Stars: ✭ 390 (+680%)
Mutual labels:  sourcemod
VSH-Rewrite
Popular Versus Saxton Hale gamemode remade from scratch
Stars: ✭ 30 (-40%)
Mutual labels:  sourcemod
Redstone
Redstone GitHub - Nuclear Dawn community project
Stars: ✭ 15 (-70%)
Mutual labels:  sourcemod
Pysmx
Python package to interact with SourceMod plug-ins
Stars: ✭ 12 (-76%)
Mutual labels:  sourcemod
Sourcemod
SourceMod - Source Engine Scripting and Administration
Stars: ✭ 615 (+1130%)
Mutual labels:  sourcemod
Csgo Practice Mode
CS:GO Sourcemod plugin for private team/individual practice servers
Stars: ✭ 263 (+426%)
Mutual labels:  sourcemod

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:

  • Remove:
MarkNativeAsOptional("SMAC_CheatDetected");

rtd.inc: Inside public SharedPlugin:__pl_rtd =

  • Remove:
required = 1
  • Add:
#if defined REQUIRE_PLUGIN
required = 1
#else
required = 0
#endif

Formatting


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

  • Braces on new line
  • No spaces between parentheses or most operators (=, ==, *, |, &, etc)
    • Exception: One space between &&, ||, ;, and ,
    • Note: & and | formatting rules are currently not enforced
  • Tabs, not spaces
  • No tabs on newline
  • No whitespace after a line
  • Bracket all conditional statements, even if it is not required (one-line if statements, for example)
  • Variable names should be camel-cased (markdownIsStupid)
  • Method names should be capitalized normally (MarkNativeAsOptional)

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;
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].