Welcome, Guest! Login | Register

Non-Exploding Snarks [Print this Article]
Posted by: The Evil One
Date posted: Feb 13 2003
User Rating: 4 out of 5.0
Number of views: 2170
Number of comments: 0
Description: Just for fun
This tutorial explains how to have snarks that don't explode after 15 seconds in your mod.

Open up the server dll project for Half-Life, and open the file squeakgrenade.cpp.
Starting at the CSqueakGrenade::HuntThink function, comment out the next two lines after

g_vecAttackDir = pev->velocity.Normalize( );

so they look like this:


//pev->health = -1;
//Killed( pev, 0 );

Now below that last line, add the line:

m_flDie = gpGlobals->time + SQUEEK_DETONATE_DELAY;

You must put this line here, or else really weird stuff will happen when you play, which I will explain in a moment.
Compile mp.dll, and instead of exploding after 15 seconds, the snarks should hang around until you kill them.

The line you add below the now commented lines is VERY important!

There is some code that calculates the pitch of the snark's squeal. The closer to the snark's explosion time (m_flDie) the higher the pitch ('urgency') of it's squeal is. Without that modification, the squeal would be inaudible (seeing as the time left until death is a negative figure, it starts playing the squeal so quickly that you cant hear it.
Also as time goes on, the client's computer has to process the small squeal of all the snarks, and do all the normal things, which gets a bit ugly). So basically, this line resets the time till death (which is only being used for the squeal now) every SQUEEK_DETONATE_DELAY seconds. This sounds a tad unnatural at the default 15 seconds (SQUEEK_DETONATE_DELAY is defined on line 86), so I usually set it to 120 seconds (2 minutes).

Rate This Article
This article is currently rated: 4 out of 5.0 (1 Votes)

You have to register to rate this article.
User Comments

No User Comments

You must register to post a comment. If you have already registered, you must login.

Latest Articles
3rd person View in Multiplayer
Half-Life 2 | Coding | Client Side Tutorials
How to enable it in HL2DM

By: cct | Nov 13 2006

Making a Camera
Half-Life 2 | Level Design
This camera is good for when you join a map, it gives you a view of the map before you join a team

By: slackiller | Mar 04 2006

Making a camera , Part 2
Half-Life 2 | Level Design
these cameras are working monitors that turn on when a button is pushed.

By: slackiller | Mar 04 2006

Storing weapons on ladder
Half-Life 2 | Coding | Snippets
like Raven Sheild or BF2

By: British_Bomber | Dec 24 2005

Implementation of a string lookup table
Half-Life 2 | Coding | Snippets
A string lookup table is a set of functions that is used to convert strings to pre-defined values

By: deathz0rz | Nov 13 2005


Latest Comments
Spinning Corpses Simple Fix
Half-Life | Coding | Snippets
By: darkPhoenix | Sep 05 2008
 
Where do we go from here
General | News
By: MIFUNE | Jun 09 2008
 
The Input/Output system
Half-Life 2 | Level Design
By: nazitaco | Dec 23 2007
 
Where do we go from here
General | News
By: Rob_F | Nov 22 2007
 
Rescaling Half-Life
Half-Life | Coding | Shared Tutorials
By: christoph | Nov 12 2007
 
GameUI
Half-Life 2 | Coding | Client Side Tutorials
By: Evil_j | Oct 29 2007
 
3 State Zoom For Any Weapon
Half-Life 2 | Coding | Server Side Tutorials
By: Ennuified | Oct 18 2007
 
Storing weapons on ladder
Half-Life 2 | Coding | Snippets
By: cct | Sep 07 2007
 
CTF Gameplay Part 1
Half-Life | Coding | Shared Tutorials
By: DarkNight | Aug 28 2007
 
CTF Gameplay Part 1
Half-Life | Coding | Shared Tutorials
By: deedok | Aug 20 2007
 

Site Info
296 Approved Articless
5 Pending Articles
3940 Registered Members
2 People Online (20 guests)
About - Credits - Contact Us

Wavelength version: 3.0.0.9
Valid XHTML 1.0! Valid CSS!