Adding Proximity Voice: Difference between revisions
Jump to navigation
Jump to search
CRACKbomber (talk | contribs) No edit summary |
m (Add Russian Lang) |
||
Line 1: | Line 1: | ||
{{otherlang2 | |||
|ru=Adding_Proximity_Voice:ru | |||
}} | |||
Hello today I am going to be showing you how to create proximity chat for HL2MP mod or equivalent. | Hello today I am going to be showing you how to create proximity chat for HL2MP mod or equivalent. | ||
Revision as of 00:35, 20 May 2013
Hello today I am going to be showing you how to create proximity chat for HL2MP mod or equivalent.
This was implemented in the Source Mod Faceless by Ethereal Entertainment.
First thing you are going to need to do is open game/shared/voice_gamemgr.cpp
Then go to around line 226...
bool bProximity = false;
Change that to...
bool bProximity = true;
Next you need to change the distance at which it will project the voice. Locate line 104 and change ...
m_iProximityDistance = -1;
To something like this...
m_iProximityDistance = 10;
source: http://t-plusplus.com/creating-proximity-chat-in-the-source-engine-sdk/