Note: LucasForums Archive Project
The content here was reconstructed by scraping the Wayback Machine in an effort to restore some of what was lost when LF went down. The LucasForums Archive Project claims no ownership over the content or assets that were archived on archive.org.

This project is meant for research purposes only.

What is the falling of projectiles governed by?

Page: 1 of 1
 sroerick
02-19-2004, 10:40 PM
#1
E.G repeater alternate fire. Where would you change how fast it falls?
 Codja X
04-18-2004, 8:14 AM
#2
Gravity.

Seriously - there's a gravity cvar that is set by default to 800, so if you change it, you can change the trajectory of it. This would affect other weapons as well and projectiles such as the grenades etc.

My 1st post in the coding forum - hope it helps someone:)
 Jon Denver
04-18-2004, 8:54 AM
#3
I would think that every entity has a 'weight', at least that would make sense... :confused:
 Codja X
04-18-2004, 10:31 AM
#4
I'm pretty sure the cvar is sv_gravity. Type it in the console - the lower the number specified, the lower the gravity. You could probably set this in the .cfg per map and wouldn't need coding or compiling.
 Wudan
04-19-2004, 1:20 PM
#5
Yes, but changing the cvar affects everything.

The code for the behavior of this projectile is in g_weapon.c, the function is "static void WP_RepeaterAltFire( gentity_t *ent )", it's at line 1074.

To make it descend slower, just alter the line:

missile->s.pos.trDelta[2] += 40.0f; //give a slight boost in the upward direction

as you see fit. What i'd do is make a server side cvar, tie it to missile->s.pos.trDelta[2] and then play with the setting to get it where you want it.
Page: 1 of 1