Jump to content
Search In
  • More options...
Find results that contain...
Find results in...
42PercentHealth

What happens to "extra" hitscan tracers?

Recommended Posts

This question came up when I was starting map 30 of Scythe 2, and trying to kill the horde of imps with the BFG. If you hit a monster with more than the number of hitscan tracers needed to kill it, do the extras stop at the monster, or do they continue? From a practical perspective, is it more ammo-efficient to stand at some distance from the imps, so as to hit more of them, or will all of the tracers do damage even up close?

If the extra tracers do continue (as I suspect, since the SSG does not gib weaker enemies in most source ports), then is there some way to know which tracers are calculated first?

I only ask because I have an ammo-efficiency OCD.

Share this post


Link to post

No bullets go to waste! So the most efficient way to shoot is to line up enemies, one behind the other.

Share this post


Link to post

Are there any mods/source port features out there that visualize hitscan tracers (e.g. as a red line or whatever)?

I'd be fascinated to play around with a feature like that to help me further understand the nuances of hitscan weapons (especially the BFG).

Share this post


Link to post
VGA said:

No bullets go to waste! So the most efficient way to shoot is to line up enemies, one behind the other.

Awesome! Sometimes I get myself into awkward situations trying to calculate the ideal distance to stand from a horde of monsters -- sounds like I don't need to be so particular.

Thanks a bunch!

Share this post


Link to post

One time I changed the source code to display the missed BFG tracers. So, normally they're just invisibly hitting a wall if they don't hit a thing.

The code says this about BFG tracers:
for (i=0 ; i<40 ; i++) {
an = mo->angle - ANG90/2 + ANG90/40*i;

I'll understand they start from the left and go to the right.

Share this post


Link to post

The instant an enemy dies, it stops intercepting any further tracers / bullets (they're basically the same thing as far as the engine is concerned). This is why you can't gib enemies with the super shotgun.

Share this post


Link to post
Jimi said:

The code says this about BFG tracers:
for (i=0 ; i<40 ; i++) {
an = mo->angle - ANG90/2 + ANG90/40*i;

I'll understand they start from the left and go to the right.

Actually vice versa, since an angle in the Doom engine goes counter-clockwise as its value increases, and the value of the expression in the code above is initially (thing's angle - 45 degrees), that is 45 degrees to the right, and increases with each iteration up to (thing's angle + 45 degrees), that is 45 degrees to the left.

Curiously, the loop stops one step before the exact "45 degrees to the left" angle is reached. As a result, the entire range of tracers is not perfectly left-to-right symmetrical, but slightly tilted to the right side. If the expression "ANG90/40" was replaced by "ANG90/39", it'd be symmetrical.

Share this post


Link to post

I know Brutal Doom uses Tracers for zombiemen shots, you could look into that.

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×