I always like how it was in Native, that you needed weapon master to increase your proficiency any further.
Kinda sounds like what you are suggesting.
wpf_0 = 25
delta_wpf_WM = (20+10*WM) #for increasing WM by one
delta_wpf_lvl = 5 + (lvl-1) DIV 5 #for increasing lvl by one
with DIV being (Euclidean) integer division(5 DIV 2 = 2), ignoring the remainder
total_wpf= wpf_0 + sum(delta_wpf_WM) + sum(delta_wpf_lvl)
total_wpf = 5*WM*(5+WM) + 25 + 5*lvl + max((lvl-5), 0) + max((lvl-10), 0) + max((lvl-15), 0) + max((lvl-20), 0) + max((lvl-25), 0) + max((lvl-30), 0) + max((lvl-35), 0) + ...
total_wpf = 5*WM*(5+WM) + 25 + lvl*(5+((lvl-1)DIV5)) - 5/2*((lvl-1)DIV5)*(((lvl-1)DIV5)+1)
(can't get my head around a better simplification for the lvl based wpf atm, sry)
example: level 26; WM=4 =>
total_wpf = 5*4*(5+4) + 25 + 26*(5+((26-1)DIV5)) - 5/2*((26-1)DIV5)*(((26-1)DIV5)+1)
total_wpf = 180 + 25 + 26*(5+5) - 5/2*(5*(5+1))
total_wpf = 180 + 25 + 260 - 75 = 180 + 210 = 390
Current wpf gain is done like this afaik:Code: [Select]wpf_0 = 25
delta_wpf_WM = (20+10*WM) #for increasing WM by one
delta_wpf_lvl = 5 + (lvl-1) DIV 5 #for increasing lvl by one
with DIV being (Euclidean) integer division(5 DIV 2 = 2), ignoring the remainder
delta_wpf = wpf_0 + delta_wpf_WM + delta_wpf_lvl
For total wpf gain over the whole career one can develop the following equation:Code: [Select]total_wpf = 5*WM*(5+WM) + 25 + 5*lvl + max((lvl-5), 0) + max((lvl-10), 0) + max((lvl-15), 0) + max((lvl-20), 0) + max((lvl-25), 0) + max((lvl-30), 0) + max((lvl-35), 0) + ...
total_wpf = 5*WM*(5+WM) + 25 + lvl*(5+((lvl-1)DIV5)) - 5/2*((lvl-1)DIV5)*(((lvl-1)DIV5)+1)
(can't get my head around a better simplification for the lvl based wpf atm, sry)
example: level 26; WM=4 =>
total_wpf = 5*4*(5+4) + 25 + 26*(5+((26-1)DIV5)) - 5/2*((26-1)DIV5)*(((26-1)DIV5)+1)
total_wpf = 180 + 25 + 26*(5+5) - 5/2*(5*(5+1))
total_wpf = 180 + 25 + 260 - 75 = 180 + 210 = 390
We think about getting rid of the lvl based gain. Maybe totally, maybe not. Suggest new delta_wpf formulars.
I'm an all -time hybrid player and recently retired to do a 21/18 build with 6 WM again. At lvl 33 (my end build) i'm supposed to have ~140 wpf in 1h and ~ 90 in polearms. Makes me a viable but not a totally op hybrid. I'd like it to stay that way if you bring changes to the wpf mechanics.
I get alot of wpf from leveling up though, should be the other way around. People who invest in WM should see the benefits. Just my two cents.
I think it should be enough for 3 x 125 wpf or 2 x 150.That's a bit too much imo. If someone goes for a pure build this amount of speed bonus + wpf is actually almost like the 2 -3 extra ps that they'd lose, especially for 2handers. I would say ~x2 130-135 for 6 wm is fine.
wpf_0 = 25
delta_wpf_WM = (20+10*WM) #for increasing WM by one
delta_wpf_[b]AGI[/b] = 5 + ([b]AGI[/b]-1) DIV 5 #for increasing [b]AGI [/b]by one
with DIV being (Euclidean) integer division(5 DIV 2 = 2), ignoring the remainder
delta_wpf = wpf_0 + delta_wpf_WM + delta_wpf_[b]agi[/b]
total_wpf = 5*WM*(5+WM) + 25 + [b]AGI[/b]*(5+(([b]AGI[/b]-1)DIV5)) - 5/2*((AGI-1)DIV5)*(((AGI-1)DIV5)+1)
(can't get my head around a better simplification for the lvl based wpf atm, sry)
example: [b]level 30; WM=6; Agility 18[/b] =>
total_wpf = 5*6*(5+6) + 25 + 18*(5+((18-1)DIV5)) - 5/2*((18-1)DIV5)*(((18-1)DIV5)+1)
total_wpf = 330 + 25 + 18*(5+3) - 5/2*(3*(3+1))
total_wpf = 330 + 25 + 144 - 30
[b]total_wpf = 469[/b]
example: [b]level 30; WM=3; Agility 9[/b] =>
total_wpf = 5*3*(5+3) + 25 + 9*(5+((9-1)DIV5)) - 5/2*((9-1)DIV5)*(((9-1)DIV5)+1)
total_wpf = 120 + 25 + 9*(5+1) - 5/2*(1*(1+1))
total_wpf = 120 + 25 + 45 - 2.5 (wat)
[b][b]total_wpf = 188[/b][/b]
Even Panos has a point. You can block - return swing against any weapon with any weapon, and that integrity has remained through every build, but I know we'd see 1000 more longsword and heavy bastard swords with 190 wpf running around.
Uhm...Thanks??
I guess..
1) Change level based wpf to agility based wpf and change DIV5 to DIV10
delta_wpf_agility = 5 + (lvl-1) DIV 10 #for increasing lvl by one
How bad would High agility builds get if you kept it at DIV5?
Adjusting the curve so that sub-100 wpf takes fewer wpf points and 140+ wpf takes many more wpf points
Buffing attributes and making skills look bad, once again.
With the current wpf0 and WM gain we'd have:
total_wpf=25+5*WM*(WM+1)+agi*(agi+1)/2
That formula gives some very low wpfs - only 406 total_wpf @ 18 agi, 6WM, instead of the current 580.Yeah, those 3-9str guy wm stackers are sure dangerous and overpowered, thank goat I can rest easier knowing that people with 2ps and 12wm won't be as invincible as they are now. :rolleyes:
If you like simplified formulas though how about
total_wpf = 15*Agi + 55*WM
With this you get the following total_wpfs
@ level 30, 3 Agility, 1WM = 100 total_wpf (currently 280)
@ level 30, 6 Agility, 2WM = 200 total_wpf (currently 320)
@ level 30, 12 Agility, 4WM = 400 total_wpf (currently 430)
@ level 30, 18 Agility, 6WM = 600 total_wpf (currently 580)
@ level 30, 24 Agility, 8WM = 800 total_wpf (currently 770)
@ level 30, 30 Agility, 10WM = 1000 total_wpf (currently 1000)
@ level 30, 36 Agility, 12WM = 1200 total_wpf (currently 1270)
PROs
- It nerfs low agi or 0WM builds
- It buffs medium -> high agi/WM builds
- It nerfs extreme agi/WM builds a bit and therefore will not break anything ;)
- It still allows medium agi, low WM builds as nicely viable, keeping medium -> high WM as mainly the choice of hybrids
- It is extremely simple to calculate and explain
- It is extremely simple to change
Yeah, those 3-9str guy wm stackers are sure dangerous and overpowered, thank goat I can rest easier knowing that people with 2ps and 12wm won't be as invincible as they are now. :rolleyes:
See modified post about that. You must have started replying almost as soon as i posted since i changed that bit within 2 mins of posting :DWell in any case there are enough solutions to the wm issue that picking one which hits people who don't deserve it in any way doesn't make sense.
Well in any case there are enough solutions to the wm issue that picking one which hits people who don't deserve it in any way doesn't make sense.
Yeah, those 3-9str guy wm stackers are sure dangerous and overpowered, thank goat I can rest easier knowing that people with 2ps and 12wm won't be as invincible as they are now. :rolleyes:
I think they should continue fucking up the mod until WSE2 is the final nail in the coffin.
That formula gives some very low wpfs - only 406 total_wpf @ 18 agi, 6WM, instead of the current 580.
If you like simplified formulas though how about
total_wpf =15*agi+55*WM
You can't directly tinker with the total wpf formular. You have to change the deltas instead and the new total will result from that. What can be done is that I parameterize delta wpf WM and in a similar style delta wpf agi.
So then we have:
wpf_0
delta_wpf_WM=a+b*WM
(currently a=20 and b=10)
delta_wpf_agi=c+d*agi
total_wpf=wpf_0+sum(wpf_WM)+sum(wpf_agi)
total_wpf=wpf_0+a*WM+b*WM*(WM+1)/2+c*agi+d*agi*(agi+1)/2
total_wpf=wpf_0+WM*(a+b*(WM+1)/2)+agi*(c+d*(agi+1)/2)
You can then freely choose wpf_0, a, b,c and d for theorycrafting.
You can't directly tinker with the total wpf formular.To which extent (if any) is it possible to edit the actual wpf (like 2h wpf) formulas?
You can't directly tinker with the total wpf formular. You have to change the deltas instead and the new total will result from that. What can be done is that I parameterize delta wpf WM and in a similar style delta wpf agi.
So then we have:
wpf_0
delta_wpf_WM=a+b*WM
(currently a=20 and b=10)
delta_wpf_agi=c+d*agi
total_wpf=wpf_0+sum(wpf_WM)+sum(wpf_agi)
total_wpf=wpf_0+a*WM+b*WM*(WM+1)/2+c*agi+d*agi*(agi+1)/2
total_wpf=wpf_0+WM*(a+b*(WM+1)/2)+agi*(c+d*(agi+1)/2)
You can then freely choose wpf_0, a, b,c and d for theorycrafting.
The problem with a fixed gain per WM is that it seems less rewarding to put a point into WM for higher level guys because of the increased wpf point demand for raising a high weapon skill. So while the total wpf formular is nice and linear, the actual gain seems diminishing for the leveling player. Hence the non-zero b in the current formular and the non-linear total wpf result.
The problem with a fixed gain per WM is that it seems less rewarding to put a point into WM for higher level guys because of the increased wpf point demand for raising a high weapon skill. So while the total wpf formular is nice and linear, the actual gain seems diminishing for the leveling player. Hence the non-zero b in the current formular and the non-linear total wpf result.
wpf_0 = 0
a = 1
b = 11
c = 0.1
d = 0.8
I never liked wpf.
if you have 150 wpf in 2hand.. a master.
You are suddenly a complete beginner if you pick up a 1hand sword.
much better than the current scheme would be:
Swordmaster
Axemaster
Spearmaster
etc...
Where it did not matter if it was classified as 1 or 2hand. Some might even be throwable when reaching a certain level of wpf, like spears and axes with alternatve mode.
Per Tydeus' commentary in Nditions Teamspeak:
Current tentative rough being-discussed in-development not-finalized idea for Weapon Master (WM), Weapon Proficency (WPF), and Weapon Proficiency Points (WPP) change
0 Weapon Master yields about 50 WPF for only 1 weapon class
4-5 Weapon Master yields about the same WPF for only 1 weapon class as the 4-5 Weapon Master yields under the current system
8 Weapon Master yields about 170 WPF in only 1 weapon class or 130/130 WPF split in 2 weapon classes
The formula for the amount of WPP needed to increase WPF by 1 will be very simple:
1-25 WPF = 1 WPP
26-50 WPF = 2 WPP
51-75 WPF = 3 WPP
76-100 WPF = 4 WPP
101-125 WPF = 5 WPP
126-150 WPF = 6 WPP
151-175 WPF = 7 WPP
176-200 WPF = 8 WPP
201-225 WPF = 9 WPP
226-250 WPF = 10 WPP
Not sure on how many WPP each point of WM will offer, but possibly a little more?
*Points in Agility will yield WPP as well
What do people feel about this?