Author Topic: any reason why im constantly knocked down?  (Read 2474 times)

0 Members and 1 Guest are viewing this topic.

Offline Phazey

  • Count
  • *****
  • Renown: 222
  • Infamy: 51
  • cRPG Player
    • View Profile
  • Faction: Mercenaries
  • Game nicks: Merc_Phaz, Merc_Phazh, Merc_Phazhe, Merc_Phazhey and Merc_Phazey
  • IRC nick: Phazh
Re: any reason why im constantly knocked down?
« Reply #15 on: May 08, 2012, 11:57:14 am »
+3
Nope, knockdown chance looks at raw damage before armour kicks in. So wearing extra armour does not reduce knockdown chance.

Read this:
http://forum.c-rpg.net/index.php/topic,5144.msg89017.html#msg89017

(rand(0.0, 1.0) < min(item_weight * 0.33, 2.0) * min((raw_damage - 20.0) * 0.5, 10.0) * 0.015)

expression true -> knockdown
expression false -> no knockdown

raw_damage is the potential damage dealt BEFORE the armor calc done. it includes the weapon base damage as well as the numberous modifiers like speed bonus, powerstrike bonus, wpf bonus etc.


example 1:
winged mace (2 weight)
weak attack -> 28 raw_damage

(rand(0.0, 1.0) < min( 2 * 0.33, 2.0) * min((28 - 20.0) * 0.5, 10.0) * 0.015)
(rand(0.0, 1.0) < min( 0.66, 2.0) * min(4, 10.0) * 0.015)
(rand(0.0, 1.0) < 0.66 * 4 * 0.015)
(rand(0.0, 1.0) < 0,0396)
Knockdown chance just below 4%.


example 2:
great maul (8 weight)
strong attack -> 70 raw_damage

(rand(0.0, 1.0) < min( 8 * 0.33, 2.0) * min((70 - 20.0) * 0.5, 10.0) * 0.015)
(rand(0.0, 1.0) < min( 2.67, 2.0) * min(25, 10.0) * 0.015)
(rand(0.0, 1.0) < 2.0 * 10.0) * 0.015)
(rand(0.0, 1.0) < 0.3)
Knockdown chance(kd) is 30%. It is the maximum kd possible chance because weight is capped at 6 and raw_damage at 40 within this calculation.


example 3:
wooden stick (1 weight)
puny peasant attack -> 15 raw_damage

(rand(0.0, 1.0) < min( 1 * 0.33, 2.0) * min((15 - 20.0) * 0.5, 10.0) * 0.015)
(rand(0.0, 1.0) < min( 0.66, 2.0) * min(-5, 10.0) * 0.015)
(rand(0.0, 1.0) < 0.66 * -5 * 0.015)
(rand(0.0, 1.0) < -0.0495
Knockdown chance is 0% because the random left side can't go below 0 and thus the expression is always false.

The problem with this calculation is that the raw_damage itself alters a lot ingame although it has no necessarily random component itself. So even with using the same weapon one will have different raw_damage values because of speed bonus and the sweetspot calculation. So even our beloved peasant can cause a knockdown with the right speed bonus that boosts his raw_damage past 20.

The main insight is that the armor of the victim does not help against knockdown since it does not effect the raw_damage.

« Last Edit: May 08, 2012, 12:02:55 pm by Phazey »

Offline Ronin

  • Marshall
  • ********
  • Renown: 859
  • Infamy: 198
  • cRPG Player
    • View Profile
Re: any reason why im constantly knocked down?
« Reply #16 on: May 08, 2012, 12:21:26 pm »
0
Also a little reminder here, it is not the damage type that does the knockdown if I am not horribly mistaken.
Long spiked club has pierce damage for swings and blunt damage for thrusts. It has the knockdown feature.
visitors can't see pics , please register or login


Also some blunt weapons do not have the knockdown feature. An example is the short spear.
visitors can't see pics , please register or login


Haven't tested though. But I just wanted to remind of this little detail. Someone can do a test if he's/she's willing and inform us about the result.
Quote from: BlindGuy
Seems the fascists are gaining ground once again in UKR... right vving politics is SO bad for the general populace but STILL in times of trouble the uneducated turn to them for help, simply because they are so amoral they vvill supply those vvilling to fight vvith vveapons rather than knovvledge.

My UU key is broken incase you can't tell :D

Offline dodnet

  • Duke
  • *******
  • Renown: 595
  • Infamy: 149
  • cRPG Player A Gentleman and a Scholar
    • View Profile
  • Faction: Wolpertinger
  • Game nicks: DoD, DoD_Wolper
Re: any reason why im constantly knocked down?
« Reply #17 on: May 08, 2012, 12:27:51 pm »
0
Also a little reminder here, it is not the damage type that does the knockdown if I am not horribly mistaken.

Wasn't knockdown exclusive for blunt? So for long spiked club its only on thrust?
The logic of war seems to be that if a belligerent can fight he will fight.

(click to show/hide)

Offline Ronin

  • Marshall
  • ********
  • Renown: 859
  • Infamy: 198
  • cRPG Player
    • View Profile
Re: any reason why im constantly knocked down?
« Reply #18 on: May 08, 2012, 12:35:01 pm »
0
There is also light spiked club with no thrust attack, but only swing with a pierce damage. It has the knockdown.
visitors can't see pics , please register or login

I would try myself, but having 0 ps lowers my chance of landing a succesful knockdown.
Quote from: BlindGuy
Seems the fascists are gaining ground once again in UKR... right vving politics is SO bad for the general populace but STILL in times of trouble the uneducated turn to them for help, simply because they are so amoral they vvill supply those vvilling to fight vvith vveapons rather than knovvledge.

My UU key is broken incase you can't tell :D

Offline cmp

  • M:BG Developer
  • Supreme Overlord
  • *******
  • Renown: 2052
  • Infamy: 569
  • cRPG Player
    • View Profile
  • IRC nick: cmp
Re: any reason why im constantly knocked down?
« Reply #19 on: May 08, 2012, 12:40:01 pm »
+3
Weapons need to be blunt or knockdown won't work, no matter what the item tooltip says. It doesn't mean that all blunt weapons have knockdown, though.

Offline Molly

  • King
  • **********
  • Renown: 1860
  • Infamy: 693
  • cRPG Player Sir Black Rook A Gentleman and a Scholar
    • View Profile
    • For the glorious Khorin...
  • Game nicks: Molly
Re: any reason why im constantly knocked down?
« Reply #20 on: May 08, 2012, 12:50:05 pm »
+1
Nope, knockdown chance looks at raw damage before armour kicks in. So wearing extra armour does not reduce knockdown chance.
[...]
Well, it shouldnt be like this tho. It's kinda stupid when a player in full plate gets knocked down by an archer spamming his mini-2h-mace-thingy. And before you say that it's not possible... it happened to me more than once already and I've seen it happen to others.
Armor should be taken into consideration somehow...
When west germany annexed east germany, nobody moved a finger too.

Offline Cup1d

  • Count
  • *****
  • Renown: 167
  • Infamy: 54
  • cRPG Player
    • View Profile
  • Faction: Mercs
Re: any reason why im constantly knocked down?
« Reply #21 on: May 08, 2012, 02:54:03 pm »
0
Well, it shouldnt be like this tho. It's kinda stupid when a player in full plate gets knocked down by an archer spamming his mini-2h-mace-thingy. And before you say that it's not possible... it happened to me more than once already and I've seen it happen to others.
Armor should be taken into consideration somehow...

Yes, defenitely, all blunt hits must  have «healing» effect if you attack heavy armored person.
Like this - http://www.youtube.com/watch?feature=player_detailpage&v=qhknaG9ifbs#t=63s

Offline dodnet

  • Duke
  • *******
  • Renown: 595
  • Infamy: 149
  • cRPG Player A Gentleman and a Scholar
    • View Profile
  • Faction: Wolpertinger
  • Game nicks: DoD, DoD_Wolper
Re: any reason why im constantly knocked down?
« Reply #22 on: May 08, 2012, 03:24:10 pm »
0
Well, it shouldnt be like this tho. It's kinda stupid when a player in full plate gets knocked down by an archer spamming his mini-2h-mace-thingy. And before you say that it's not possible... it happened to me more than once already and I've seen it happen to others.
Armor should be taken into consideration somehow...

Happens to me too, its also stupid that any of the one handed dildos has knockdown.
The logic of war seems to be that if a belligerent can fight he will fight.

(click to show/hide)

Offline Phazey

  • Count
  • *****
  • Renown: 222
  • Infamy: 51
  • cRPG Player
    • View Profile
  • Faction: Mercenaries
  • Game nicks: Merc_Phaz, Merc_Phazh, Merc_Phazhe, Merc_Phazhey and Merc_Phazey
  • IRC nick: Phazh
Re: any reason why im constantly knocked down?
« Reply #23 on: May 08, 2012, 03:31:12 pm »
+1
Wahh waahh i get knocked down!!!1oneone  :mad:

Omg heavy armour doesnt protect against knockdown!!!!!  :cry:

*sigh*

Blunt weapons are made for knocking down tincans. And knocking down someone wearing a whole bunch of metal is easier than knocking down someone who isn't. Not only does it make sense from a realism perspective, it's also a very valid gameplay mechanic, balancing out the advantages of wearing heavy armour a bit.

Remember, most blunt weapons are shorter or slower (or both) than most cut weapons. So you should be able to block them or avoid getting hit with footwork.

Offline Grumbs

  • طالبان
  • King
  • **********
  • Renown: 1170
  • Infamy: 617
  • cRPG Player Sir White Rook A Gentleman and a Scholar
    • View Profile
Re: any reason why im constantly knocked down?
« Reply #24 on: May 08, 2012, 04:33:58 pm »
0
I don't see how having a 4% chance to knock someone down is a valid game mechanic. Whats the point?

A 1 hander isn't going to knock someone down just because its got a blunt end, if it were to happen at all it would be for any weapon type

My main problem with this is the sheer randomness of it, and that it shouldn't really happen with a tiny one handed weapon. When I said "shitty one hander" I wasn't referring to a player btw, just that it can happen with any old short 1 handed weapon
If you have ranged troubles use this:

visitors can't see pics , please register or login


Offline Pappus

  • Peasant
  • *
  • Renown: 2
  • Infamy: 0
  • cRPG Player
    • View Profile
Re: any reason why im constantly knocked down?
« Reply #25 on: May 08, 2012, 04:54:49 pm »
0
    Strength: 15
    Agility: 24
    Hit points: 54

    Skills to attributes: 8

    Ironflesh: 2
    Power Strike: 5
    Shield: 8
    Athletics: 8
    Riding: 0
    Horse Archery: 0
    Power Draw: 0
    Power Throw: 0
    Weapon Master: 0

    One Handed: 114
    Two Handed: 1
    Polearm: 1
    Archery: 1
    Crossbow: 1
    Throwing: 1

Would be my next build idea, as I am planning on using a Military Hammer as main weapon I am asking if I can achieve regular knockdowns?
I tried using the formula, since I don't know how to get your raw_damage I just typed in my stats into the crpg damage calculator against 0 armor, which was 43.

Since I am starting out with Heavy Military Hammer it would be weight = 2.3


(rand(0.0, 1.0) < min(2.3 * 0.33, 2.0) * min((43 - 20.0) * 0.5, 10.0) * 0.015)
"" < min(0.759 , 2.0)*min (13,10) *0,015
"" < 0,759*10*0,015
= 11% knockdown chance on a hit?

This seems kinda low /:

Offline Zanze

  • Earl
  • ******
  • Renown: 366
  • Infamy: 69
  • cRPG Player
    • View Profile
  • Faction: Ravens of Valhalla
  • Game nicks: Raven_Zan
Re: any reason why im constantly knocked down?
« Reply #26 on: May 08, 2012, 05:04:40 pm »
0
Drop some Agi. I use 5 ath and only the strongest S key heroes can outrange me once or twice before I get use to their heroic techniques. With 21 strength, 1 in 4 overheads seem to knockdown for me with a +0 military hammer. When I owned a +3 one before, it was 1 in 3.

Offline Kafein

  • King
  • **********
  • Renown: 2203
  • Infamy: 808
  • cRPG Player Sir White Rook A Gentleman and a Scholar
    • View Profile
Re: any reason why im constantly knocked down?
« Reply #27 on: May 08, 2012, 05:09:52 pm »
0
I was under the impression that damage taken is part of the factor of whether you get knocked down. wearing shit armor = more chance to get knocked down.

Stop wearing shit rags for armor

From my experience, armors and damage matters very little, if at all, in the knockdown chances. I see agi characters knocking down full plate guys with tiny maces just as much as a str mauler knocks peasants down (before they die  :lol: )

Offline Pappus

  • Peasant
  • *
  • Renown: 2
  • Infamy: 0
  • cRPG Player
    • View Profile
Re: any reason why im constantly knocked down?
« Reply #28 on: May 08, 2012, 05:17:26 pm »
0
Drop some Agi. I use 5 ath and only the strongest S key heroes can outrange me once or twice before I get use to their heroic techniques. With 21 strength, 1 in 4 overheads seem to knockdown for me with a +0 military hammer. When I owned a +3 one before, it was 1 in 3.

I tried it with 5 athl and a shield, the problem I had was, that I maneuvered myself in bad situations rather quickly and all it took was one guy being a bit faster then me and he could position himself at an angle and I drop dead.

So this time I want to make sure, that I can get out of bad situations until my awareness and combat abilities go up.

Offline dreadnok

  • Marshall
  • ********
  • Renown: 838
  • Infamy: 562
  • cRPG Player
  • fuck these jerkoff kids
    • View Profile
  • Faction: KBW<MB<SoW
  • Game nicks: Gorp_The_Gorger
Re: any reason why im constantly knocked down?
« Reply #29 on: May 08, 2012, 05:32:21 pm »
0
Nobway diggs, ?y armor is definitly the problem. its better than your low armor viking nonsense. i counted the other day, a winged mace two times back to back followed up by a flanged mace back to back. thats 4 out of 4. all 4 times were from behind. and arathian im talking bout your tking and twing awfulness. your atrocious with it. so the warhammer should knockddow the most for 1h?
visitors can't see pics , please register or login