Author Topic: Randomness on Damage  (Read 1686 times)

0 Members and 1 Guest are viewing this topic.

Offline Grumbs

  • طالبان
  • King
  • **********
  • Renown: 1170
  • Infamy: 617
  • cRPG Player Sir White Rook A Gentleman and a Scholar
    • View Profile
Randomness on Damage
« on: December 16, 2011, 02:54:52 pm »
0
I was wondering how accurate this site is for theory crafting damage: http://infinitum.dyndns.org/crpg/calc.htm

"It appears that random factor is included in damage calculation."

With 42 cut damage if someone has like 60 armour (+3 sarranid guard armour + mail gauntlets for eg) then you can do 1-29 damage with 7 powerstrike, 150 wpf. Why such a large damage range? For 32 piercing its 10-29, much more reliable damage but still very random. Apparently this is independent of the area you hit someone, its just flat RNG applied on the hit.

Is it really like that because it seems a bit strange that damage could be so random for a game like this
If you have ranged troubles use this:

visitors can't see pics , please register or login


Offline HoboJoe

  • Noble
  • **
  • Renown: 16
  • Infamy: 3
  • cRPG Player A Gentleman and a Scholar
    • View Profile
Re: Randomness on Damage
« Reply #1 on: December 16, 2011, 04:04:13 pm »
0
There is nothing random about the damage. It's a combination of weapon base damage, where you hit and the speedbonus.
I am American, and therefore it is my business to meddle in other peoples affairs.

Offline Vodner

  • Duke
  • *******
  • Renown: 526
  • Infamy: 73
  • cRPG Player
  • SaulCanner
    • View Profile
  • Game nicks: SaulCanner
Re: Randomness on Damage
« Reply #2 on: December 16, 2011, 04:10:26 pm »
0
There is nothing random about the damage. It's a combination of weapon base damage, where you hit and the speedbonus.
Looking through the source for the damage calculator, it looks like they are accounting for a substantial random factor:

Code: [Select]
// Urist:
// "However here is where randomisation kicks in again. I think that a
// random number between the full and the half armor value are used."
var min_damage = potential_damage - 1 * arm * soak_factor;
var max_damage = potential_damage - 0.5 * arm * soak_factor;

//Damage reduction

// Urist:
// "The same random armor between the half and full armor points
// of the armor is used."
min_damage = min_damage * (1 - arm / 100.0 * reduction_factor);
max_damage = max_damage * ( 1 - 0.5 * arm / 100.0 * reduction_factor );

Assuming this is correct, it would be nice if this could be removed. Random factors are always bad.

I'm not familiar enough with Warband modding to comment on whether or not this is correct, however.
« Last Edit: December 16, 2011, 04:18:01 pm by Vodner »

Offline Skysong

  • Knight
  • ***
  • Renown: 57
  • Infamy: 10
  • cRPG Player
    • View Profile
  • Game nicks: Guard_Skysong
Re: Randomness on Damage
« Reply #3 on: December 16, 2011, 04:18:17 pm »
0
Looking through the source for the damage calculator, I believe there is a substantial random factor:

Code: [Select]
// Urist:
// "However here is where randomisation kicks in again. I think that a
// random number between the full and the half armor value are used."
var min_damage = potential_damage - 1 * arm * soak_factor;
var max_damage = potential_damage - 0.5 * arm * soak_factor;

//Damage reduction

// Urist:
// "The same random armor between the half and full armor points
// of the armor is used."
min_damage = min_damage * (1 - arm / 100.0 * reduction_factor);
max_damage = max_damage * ( 1 - 0.5 * arm / 100.0 * reduction_factor );

Assuming this is correct, it would be nice if this could be removed. Random factors are always bad.

I don't think this is about randomness. It should be more likely about targets distance/weapon reach. As when your target is too close you deal almost no damage with melee.
Still i can be wrong about this.

Offline Paul

  • Developer
  • ******
  • Renown: 1879
  • Infamy: 442
  • cRPG Player A Gentleman and a Scholar
  • ball bounce boss
    • View Profile
  • IRC nick: Urist
Re: Randomness on Damage
« Reply #4 on: December 16, 2011, 04:18:46 pm »
+1
Raw damage(without armor) isn't randomised much, it's between 90 and 100%. For both armor soak and reduction calculation, the armor value gets a good chunk of randomness with being between 45 to 100% of the shown value. It's Native and not changed yet with WSE as far as I know.
« Last Edit: December 16, 2011, 04:20:55 pm by Paul »

Offline Angantyr

  • King
  • **********
  • Renown: 1134
  • Infamy: 130
  • cRPG Player A Gentleman and a Scholar
    • View Profile
Re: Randomness on Damage
« Reply #5 on: December 16, 2011, 04:25:03 pm »
0
I remember a TW dev once commenting that this was supposed to represent how some hits could be more critical than others, as in veins and arteries getting hit through chinks in the armor and such.

Offline Vodner

  • Duke
  • *******
  • Renown: 526
  • Infamy: 73
  • cRPG Player
  • SaulCanner
    • View Profile
  • Game nicks: SaulCanner
Re: Randomness on Damage
« Reply #6 on: December 16, 2011, 04:25:24 pm »
0
Raw damage(without armor) isn't randomised much, it's between 90 and 100%. For both armor soak and reduction calculation, the armor value gets a good chunk of randomness with being between 45 to 100% of the shown value. It's Native and not changed yet with WSE as far as I know.
Thanks for clearing that up.

I don't suppose the devs would be willing to fix those values to 95% raw damage and 72.5% effective armor? I can't speak for the rest of the community, but I think the possibility of losing or winning a fight from a bad damage roll is unfortunate.

Offline MrShine

  • Ragdoll Basher
  • King
  • **********
  • Renown: 1156
  • Infamy: 193
  • cRPG Player A Gentleman and a Scholar
  • Fear the stache
    • View Profile
  • Game nicks: MrShine
Re: Randomness on Damage
« Reply #7 on: December 16, 2011, 04:31:34 pm »
0
pros of reducing randomness: gives you a better sense of what your build can handle, less cheesiness.
cons of reducing randomness: will provide players a better chance to fine tune/tweak their hp levels to their ideal (devs in the past seemed to be irked by this but I personally think it's fine)

But yeah random in general is bad.  When you can duplicate an exact fight and based on the random damage factor a different player could win each time, that's kinda lame.
Holy crap I have a youtube gaming channel! https://www.youtube.com/user/MrShine12345

Offline Grumbs

  • طالبان
  • King
  • **********
  • Renown: 1170
  • Infamy: 617
  • cRPG Player Sir White Rook A Gentleman and a Scholar
    • View Profile
Re: Randomness on Damage
« Reply #8 on: December 16, 2011, 07:55:56 pm »
0
Interesting. So this is something that can be changed with WSE? Personally I feel for a game as skill based as this you shouldn't have too much RNG. A good player could win no matter what, but when you have 2 good players you would hope the best player wins, or the one who makes the fewest mistakes. Should be higher minimum damage and less variance imo.

I also noticed cut seems pretty sub par, no matter what armour people have. With higher armour blunt and piercing are better, even with 10 less in the stat, and with lower armour they do more minimum damage and the max cut damage is only a few extra.
If you have ranged troubles use this:

visitors can't see pics , please register or login


Offline Vodner

  • Duke
  • *******
  • Renown: 526
  • Infamy: 73
  • cRPG Player
  • SaulCanner
    • View Profile
  • Game nicks: SaulCanner
Re: Randomness on Damage
« Reply #9 on: December 16, 2011, 09:34:35 pm »
+1
I also noticed cut seems pretty sub par, no matter what armour people have. With higher armour blunt and piercing are better, even with 10 less in the stat, and with lower armour they do more minimum damage and the max cut damage is only a few extra.
Cut is pretty good on 2H and polearms. I would really like to see a damage increase for 1h though. I say this as somebody playing out a 2h gen right now.

Offline hippy_with_a_scimi

  • Knight
  • ***
  • Renown: 55
  • Infamy: 9
  • cRPG Player
  • Balbasaur
    • View Profile
  • Game nicks: Balbaroth since the dawn of times
Re: Randomness on Damage
« Reply #10 on: December 17, 2011, 12:04:57 am »
0
Cut is pretty good on 2H and polearms. I would really like to see a damage increase for 1h though. I say this as somebody playing out a 2h gen right now.

i would say yes to that , but people think i dish too much damage already with 1h :(

Offline Bobthehero

  • Duke
  • *******
  • Renown: 515
  • Infamy: 195
  • cRPG Player
  • Grandmaster Ultimate God Of Swashbucklin'
    • View Profile
  • Faction: Bridgeburners
  • Game nicks: Bobthehero_Whals and I am totally not all the Not_Bobthehero alts ever.
  • IRC nick: Buff Swashbuckling
Re: Randomness on Damage
« Reply #11 on: December 17, 2011, 12:17:32 am »
0
Same here balby.
visitors can't see pics , please register or login
The Narwhals, dedicated swashbuckler part of FCC


Stabbing is my speciality and one hitting people, my art

Offline hippy_with_a_scimi

  • Knight
  • ***
  • Renown: 55
  • Infamy: 9
  • cRPG Player
  • Balbasaur
    • View Profile
  • Game nicks: Balbaroth since the dawn of times
Re: Randomness on Damage
« Reply #12 on: December 17, 2011, 12:22:43 am »
0
Same here balby.

no you its different you gdamn poke hacker :D

Offline San

  • Developer
  • ******
  • Renown: 1456
  • Infamy: 143
  • cRPG Player A Gentleman and a Scholar
  • 1/Sympathy = Divide By Zero
    • View Profile
    • My youtube Brawl videos
  • Faction: Chaos
  • Game nicks: San_of_Chaos
  • IRC nick: San
Re: Randomness on Damage
« Reply #13 on: December 17, 2011, 02:10:34 am »
0
I would be fine with taking away randomness, since speed bonus is already an important skill-based variable that affects damage. I would like to see speed-bonus more.. out in the open in terms of how much you've taken/received.