Skip to content

Commit

Permalink
edit test wife curves
Browse files Browse the repository at this point in the history
2 hard punishes ma (2 hurdd probably) but completely failed at punishing bad pa, do a slight nudge to the former and a little more a kick to the latter

3 seemed promising for most things <98 but it didn't really tackle high ra well and it probably overpunished globally a little bit

4 seems generally ok and where it didn't do well, pushing ridic down should help overall
  • Loading branch information
MinaciousGrace committed Apr 17, 2020
1 parent 1c49f7f commit 2d953af
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Themes/_fallback/Scripts/10 Scores.lua
Original file line number Diff line number Diff line change
Expand Up @@ -648,8 +648,8 @@ function wife3(maxms, ts, version) -- args are going to be set from in here for
ridic = 5 * ts
max_boo_weight = 180 * ts
j_pow = 0.66
poi = 55 * (ts^j_pow)
dev = 20 * (ts^j_pow)
poi = 56 * (ts^j_pow)
dev = 23 * (ts^j_pow)
end
-- shortcut case handling
if maxms <= ridic then -- anything below this (judge scaled) threshold is counted as full pts
Expand All @@ -664,13 +664,13 @@ function wife3(maxms, ts, version) -- args are going to be set from in here for
else -- logarithmic lower bound
if version == 3 then
max_points = 2
miss_weight = -5
ridic = 11 * ts
miss_weight = -5.5
ridic = 5 * ts
max_boo_weight = 180 * ts
j_pow = 0.66
poi = 55 * (ts^j_pow)
dev = 30 * (ts^j_pow)
magic = 180 * ts
magic = 40 * ts
log_pow = 8 -- higher = more linear, but its really sensitive and you have to change some other parameters along with it just dont touch ok
elseif version == 5 then
max_points = 2
Expand All @@ -685,7 +685,7 @@ function wife3(maxms, ts, version) -- args are going to be set from in here for
elseif version == 4 then
max_points = 2
miss_weight = -5
ridic = 11 * ts
ridic = 6 * ts
max_boo_weight = 180 * ts
j_pow = 0.66
poi = 61 * (ts^j_pow)
Expand Down

0 comments on commit 2d953af

Please sign in to comment.