Skip to content
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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

philchute
Copy link

expanded and corrected conc description and history

expanded and corrected conc description and history
Copy link
Contributor

@yasiralamriki yasiralamriki left a 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.
Copy link
Contributor

@yasiralamriki yasiralamriki Feb 22, 2022

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

Copy link
Author

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 ();

};

Copy link
Contributor

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

Copy link
Member

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.

Copy link
Contributor

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants