Posts: 354
Threads: 19
Joined: Jun 2010
18 Sep 10, 04:29PM
(This post was last modified: 18 Sep 10, 04:45PM by makkE.)
We have just changed the armour values and a slight change to the way the armour behaves.
This should bring the damage required to kill down again towards a 1.0.4 feel. No more 3 sniper shots to kill... most "shots to kill" are quite close to 1.0.4 again.
Also, having only picked up one helmet alone (having 25 armour) will not provide as much protection anymore...
Armour protection above 50 is still higher - just increasing less dramatic.
These changes will be in the upcoming 1.1.0.3 release.
We are not planning on making inter-weapon balance changes just yet.
I'd first like to see how this change is being percieved. I hope it will convince the majority of 1.1 - after that I hope there will be time for constructive criticism and discussion about fine-tuning the weapons.
Please test it in the svn if you have the time and means. Thank you.
Keep in mind, this is a server-side change.
Posts: 1,823
Threads: 20
Joined: Jun 2010
18 Sep 10, 04:33PM
(This post was last modified: 18 Sep 10, 04:39PM by Gibstick.)
Glad to hear this!
Because 800ms for an SMG to kill someone is excessive, no?
Edit: One grenade at feet, 100/100 will leave you with 3/36 now, a much better improvement.
Posts: 1,981
Threads: 63
Joined: Jun 2010
Very good, thanks. You listened the advices given. I hope this will convince some players to play 1.1...
:)
Posts: 999
Threads: 20
Joined: Jul 2010
I still think nades should kill a player even if he has 100/100, but i'm glad to see some change :-) Thanks!
Posts: 354
Threads: 19
Joined: Jun 2010
Yes, that's true. This nade issue is on our list.
Posts: 126
Threads: 7
Joined: Jul 2010
(18 Sep 10, 05:21PM)titiPT Wrote: I still think nades should kill a player even if he has 100/100, but i'm glad to see some change :-) Thanks!
No more nade jumping and awesome GEMAs? :'(
P@ndel
Posts: 1,436
Threads: 7
Joined: Jun 2010
Note to self: nade jumping means that you jump before the nade explodes.
Posts: 126
Threads: 7
Joined: Jul 2010
(18 Sep 10, 06:07PM)tempest Wrote: Note to self: nade jumping means that you jump before the nade explodes.
Oh thanks i didn't realize that...
-.-
P@ndel
Posts: 1,981
Threads: 63
Joined: Jun 2010
18 Sep 10, 06:57PM
(This post was last modified: 18 Sep 10, 06:57PM by Luc@s.)
(18 Sep 10, 06:55PM)P@ndel Wrote: (18 Sep 10, 06:07PM)tempest Wrote: Note to self: nade jumping means that you jump before the nade explodes.
Oh thanks i didn't realize that...
-.-
P@ndel it will be like in the 1.0.4 version that you love so much
Posts: 890
Threads: 16
Joined: Jun 2010
Does the grenade splash decay linearly, or is it a quadratic or cubic formula?
Posts: 3,462
Threads: 72
Joined: Jun 2010
18 Sep 10, 08:48PM
(This post was last modified: 18 Sep 10, 09:11PM by Ronald_Reagan.)
Hm, I dont know how I feel about the armour values.
If more people start playing then I'm all for it.
Edit; On the topic of 1.1.0.3, are there any new idents for cubescript? (besides the ones introduced in 1.1.0.2 ofc)
Posts: 208
Threads: 35
Joined: Jul 2010
Awesome :D, im glad i will be able to kill with my sniper like 1.04 :D good job
Posts: 1,136
Threads: 22
Joined: Jun 2010
a step towards a better tomorrow.
Posts: 400
Threads: 37
Joined: Jun 2010
Yeah, sniper is getting his power back! :)
Posts: 951
Threads: 23
Joined: Jun 2010
Mael Wrote:Does the grenade splash decay linearly, or is it a quadratic or cubic formula?
Can someone please answer Mael's question? I am very interested in the answer.
Posts: 999
Threads: 20
Joined: Jul 2010
(18 Sep 10, 05:26PM)makkE Wrote: Yes, that's true. This nade issue is on our list.
Awesome :) Maybe.. 2 frags per nade?
Posts: 1,981
Threads: 63
Joined: Jun 2010
Posts: 3,780
Threads: 33
Joined: Jun 2010
(19 Sep 10, 03:30PM)Viper Wrote: Mael Wrote:Does the grenade splash decay linearly, or is it a quadratic or cubic formula?
Can someone please answer Mael's question? I am very interested in the answer. This whole time it took for me to get my internet back you could've been perusing the SVN source code to get your own answers! :-P
Posts: 126
Threads: 7
Joined: Jul 2010
(19 Sep 10, 04:02PM)DES|V-Man Wrote: This whole time it took for me to get my internet back you could've been perusing the SVN source code to get your own answers! :-P
I see you like and use *source code* a lot x)
Can you, please, tell us all how should we do that, to *perusing the SVN source code to get your own answers*? Much appreciated!
P@ndel
Posts: 1,823
Threads: 20
Joined: Jun 2010
Just browser through the /source/src folder or the projects included ^^
Posts: 1,981
Threads: 63
Joined: Jun 2010
and if you don't understand something read the comments
Posts: 192
Threads: 0
Joined: Jun 2010
(19 Sep 10, 04:42PM)P@ndel Wrote: Can you, please, tell us all how should we do that, to *perusing the SVN source code to get your own answers*? Much appreciated!
P@ndel
[TUTORIAL] SVN on Linux
[TUTORIAL] SVN on Windows
By ärkefiende
Posts: 1,823
Threads: 20
Joined: Jun 2010
19 Sep 10, 05:23PM
(This post was last modified: 19 Sep 10, 05:24PM by Gibstick.)
(19 Sep 10, 03:30PM)Viper Wrote: Mael Wrote:Does the grenade splash decay linearly, or is it a quadratic or cubic formula?
Can someone please answer Mael's question? I am very interested in the answer. #define EXPDAMRAD 10
...
void radialeffect(playerent *o, vec &v, int qdam, playerent *at, int gun)
{
...
if(dist<EXPDAMRAD)
{
int damage = (int)(qdam*(1-dist/EXPDAMRAD));
hit(damage, o, at, dir, gun, true, int(dist*DMF));
}
...
With Luc4s' help, I made sense of these few snippets of code that have to do with grenade. If distance is less than "10" (unknown unit), damage equal to
maximum grenade damage × (1 - distance ÷ maximum grenade range)
or
200 × (1 - distance ÷ 10).
Posts: 170
Threads: 24
Joined: Aug 2010
I'm keen to see how this works, and especially for the future fine tuning of weapons
Posts: 1,436
Threads: 7
Joined: Jun 2010
i. e. it's a linear function, to finally answer Mael's question.
Posts: 126
Threads: 7
Joined: Jul 2010
(19 Sep 10, 04:57PM)Luc@s Wrote: and if you don't understand something read the comments
Uhu... Okay... Nice face btw...
So we needed a couple of guys to understand the answer to Mael's question, but i am being suggested to *read the comments* and stuff... Uhu... :F
P@ndel
Posts: 241
Threads: 3
Joined: Jun 2010
Sounds like good changes. Please release a beta for a widespread test?!
Posts: 354
Threads: 19
Joined: Jun 2010
The plan is to first let you people try the new armour values, because I think that both intoducing the new armour and the new weapon balance was a bit too much maybe.
After the basical damage feels more 1.0.4 again, I think weapon balance diffrences can be compared better to what it was before. So I think it might be wisest to first test the balance on nerfed armour for a while, then start a discussion about the weapons themselves.
Posts: 533
Threads: 33
Joined: Jun 2010
(19 Sep 10, 08:02PM)Panda Wrote: Sounds like good changes. Please release a beta for a widespread test?!
I commited new windows binaries today
Posts: 354
Threads: 1
Joined: Jun 2010
(19 Sep 10, 04:57PM)Luc@s Wrote: and if you don't understand something read the comments Haha, comments. Comments in AC source. Get it?
Funny as.
|