Upcoming Release Balance Discussion (SVN)
(14 Jan 12, 01:05AM)Felix-The-Ghost Wrote: Random != luck. It's also a very small degree. I think it's a good idea to have variable damage.

By that I think you mean that randomness can be managed somewhat similar to how professional poker players manage randomness. It's somewhat true, but it still breaks too many things (e.g. the classic one: a single sniper shot may require three medkits to recover; makes all fights more random still). And then there appears to be no real benefit to it...

While I'm here, I'll add that spawns should also be more deterministic... i.e. the game should aim to always give one of the spawns closest to the flag if it's been picked up or otherwise the center of the base.

And please, please lower spread across all the weapons. I tested this today by removing recoil, making bulletholes permanent and firing with my crosshair completely still on a moderately far wall. The bullet spread is two to three player widths after about three bullets with AR and even worse with SMG!!!

Example of common engagement range in ac_outpost.
(In case it's not clear because of the low FOV, I took the shots from right back against the box.)



And here's a small patch that would make things a lot nicer:

In weapon::attackphysics change:
#define RNDD (rnd(spread)-spread/2)*f
vec r(RNDD, RNDD, RNDD);
to.add(r);
#undef RNDD
to
#define randf 1.0*rand()/RAND_MAX
#define RNDD spread*(randf-0.5)*(randf-0.5)*f
vec r(RNDD, RNDD, RNDD);
to.add(r);
#undef RNDD
#undef randf

Here's what it looks like with this (all bullets within one body width):
http://postimage.org/image/w2nbe4nit/
The shots were fired from the same location as in the first screenshot.

The new code has the benefit of distributing the bullets to the center more rather than uniformly within a square. Notice also that the shape is circular instead of square. It also uses floating-point arithmetic in entirety so the function is continuous.

Better still would be modeling using the normal distribution. That way spread could be customised by changing the variance while giving extremely realistic results. I'd be happy to work on a patch if it would be considered for inclusion.
Thanks given by:


Messages In This Thread
RE: Upcoming 1.1.0.5 Balance Discussion (SVN) - by CyberKlown28 - 23 Jan 11, 07:08PM
RE: Upcoming 1.1.0.5 Balance Discussion (SVN) - by CyberKlown28 - 24 Jan 11, 12:31AM
RE: Upcoming 1.1.0.5 Balance Discussion (SVN) - by CyberKlown28 - 25 Jan 11, 04:22AM
RE: Upcoming 1.1.0.5 Balance Discussion (SVN) - by CyberKlown28 - 28 Jan 11, 08:23PM
RE: Upcoming 1.1.0.5 Balance Discussion (SVN) - by CyberKlown28 - 01 Feb 11, 09:29PM
RE: Upcoming 1.1.0.5 Balance Discussion (SVN) - by CyberKlown28 - 02 Feb 11, 02:16PM
RE: Upcoming 1.1.0.5 Balance Discussion (SVN) - by CyberKlown28 - 02 Feb 11, 06:27PM
RE: Upcoming 1.1.0.5 Balance Discussion (SVN) - by CyberKlown28 - 02 Feb 11, 09:13PM
RE: Upcoming 1.1.0.5 Balance Discussion (SVN) - by CyberKlown28 - 05 Feb 11, 12:37AM
RE: Upcoming 1.1.0.5 Balance Discussion (SVN) - by CyberKlown28 - 05 Feb 11, 04:25AM
RE: Upcoming 1.1.0.5 Balance Discussion (SVN) - by CyberKlown28 - 06 Feb 11, 09:46PM
RE: Upcoming 1.1.0.5 Balance Discussion (SVN) - by CyberKlown28 - 06 Feb 11, 11:23PM
RE: Upcoming 1.1.0.5 Balance Discussion (SVN) - by ph4ntom - 08 Feb 11, 02:58PM
RE: Upcoming 1.1.0.5 Balance Discussion (SVN) - by CyberKlown28 - 11 Feb 11, 01:04AM
RE: Upcoming 1.1.0.5 Balance Discussion (SVN) - by CyberKlown28 - 11 Feb 11, 11:28PM
RE: Upcoming Release Balance Discussion (SVN) - by HellJanitorIsHispanic - 26 Jun 11, 11:57AM
RE: Upcoming Release Balance Discussion (SVN) - by HellJanitorIsHispanic - 26 Jun 11, 03:20PM
RE: Upcoming Release Balance Discussion (SVN) - by HellJanitorIsHispanic - 28 Jun 11, 07:55AM
RE: Upcoming Release Balance Discussion (SVN) - by Harps - 20 Dec 11, 06:47PM
RE: Upcoming Release Balance Discussion (SVN) - by Harps - 22 Dec 11, 05:06PM
RE: Upcoming Release Balance Discussion (SVN) - by Harps - 22 Dec 11, 10:05PM
RE: Upcoming Release Balance Discussion (SVN) - by Harps - 23 Dec 11, 12:18AM
RE: Upcoming Release Balance Discussion (SVN) - by Roflcopter - 14 Jan 12, 03:47AM
RE: Upcoming Release Balance Discussion (SVN) - by Harps - 18 Apr 12, 01:07AM
RE: Upcoming Release Balance Discussion (SVN) - by Harps - 18 Apr 12, 12:44PM
RE: Upcoming Release Balance Discussion (SVN) - by Harps - 25 Apr 12, 02:48PM
RE: Upcoming Release Balance Discussion (SVN) - by Grenade - 10 Jun 12, 08:40PM