added sn2 scoring, misc

This commit is contained in:
Flameshadowxeroshin
2010-12-31 19:13:14 -06:00
parent fbf8f3d493
commit 098dbb4b1e
2 changed files with 10 additions and 2 deletions
+9 -1
View File
@@ -41,6 +41,14 @@ end;
r[4] = function(params, pss)
local dp = pss:GetPossibleDancePoints();
if dp == 0 then pss:SetScore(0) return nil end
pss:SetScore(math.round((pss:GetActualDancePoints()/dp)*1000000);
pss:SetScore(math.round((pss:GetActualDancePoints()/dp)*1000000));
end;
-----------------------------------------------------------
--DDR SuperNOVA 2(-esque) scoring
-----------------------------------------------------------
r[5] = function(params, pss)
local dp = pss:GetPossibleDancePoints();
if dp == 0 then pss:SetScore(0) return nil end
pss:SetScore(math.round((pss:GetActualDancePoints()/dp)*100000)*10);
end;
SpecialScoring = r;