-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update 2021-12-21-guide_gamemode-info-conc.md #269
base: master
Are you sure you want to change the base?
Conversation
expanded and corrected conc description and history
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
change to Concussion Grenades (Concs) are a weapon from Team Fortress Classic
Conc, short for "**Conc**ussion Grenade Jumping", is a classic game mode from the classic Team Fortress, involving priming a concussion grenade to explode at just the right time to propel the player throughout the map. | ||
|
||
Momentum Mod's implementation of Conc comes from a mix of [Fortress Forever's implementation](https://github.com/fortressforever/fortressforever) combined with reverse engineering specific values from Team Fortress Classic. | ||
Concussion Grenades (Concs) are a weapon from Team Fortress which do not cause damage, but instead moves players away from the explosion. Conc mode features maps which can be completed though using these concs. Momentum Mod's implementation of Concs comes from a mix of [Fortress Forever's implementation](https://github.com/fortressforever/fortressforever) combined with reverse engineering specific values from Team Fortress Classic. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Concussion Grenades (Concs) are a weapon from Team Fortress
they come from team fortress classic
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
conc nades were in the original release of quake team fortress, even from 1.0.
https://www.moddb.com/mods/team-fortress/downloads/team-fortress-v10
/*
TeamFortress 1.0 - 10/8/96
Robin Walker, John Cook, Ian Caughley.
Functions specific to the TeamFortress QuakeC patch.
*/
//=========================================================================
// Concussion grenade explosion function
void() ConcussionGrenadeExplode =
{
T_RadiusBounce (self, self.owner, 240, world);
WriteByte (MSG_BROADCAST, SVC_TEMPENTITY);
WriteByte (MSG_BROADCAST, TE_EXPLOSION);
WriteCoord (MSG_BROADCAST, self.origin_x);
WriteCoord (MSG_BROADCAST, self.origin_y);
WriteCoord (MSG_BROADCAST, self.origin_z);
BecomeExplosion ();
};
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should instead do "Quake Team Fortress" instead since most people know "Team Fortress" as tf2 or tfc
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i would suggest something like "The Team Fortress mod for Quake" (if it was actually a mod, I never can remember). at the very least putting quake in there somewhere so people get a general idea, as most people will see "team fortress" and think of either tfc or tf2.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is a mod yeah
expanded and corrected conc description and history