dear wolfman: if you are going to do this, realize that you are going to piss people off. thanks. -freem
This commit is contained in:
@@ -200,19 +200,20 @@ r['DDR SuperNOVA 2'] = function(params, pss)
|
|||||||
};
|
};
|
||||||
setmetatable(multLookup, ZeroIfNotFound);
|
setmetatable(multLookup, ZeroIfNotFound);
|
||||||
local radarValues = GetDirectRadar(params.Player);
|
local radarValues = GetDirectRadar(params.Player);
|
||||||
local totalItems = GetTotalItems(radarValues);
|
local totalItems = GetTotalItems(radarValues) - radarValues:GetValue('RadarCategory_Lifts');
|
||||||
|
|
||||||
-- handle holds
|
-- handle holds
|
||||||
local maxAdd = 0;
|
local maxAdd = 0;
|
||||||
if params.HoldNoteScore == 'HoldNoteScore_Held' then
|
if params.HoldNoteScore == 'HoldNoteScore_Held' then
|
||||||
maxAdd = 10;
|
maxAdd = 10;
|
||||||
elseif params.HoldNoteScore == 'HoldNoteScore_LetGo' then
|
|
||||||
maxAdd = 0;
|
|
||||||
else
|
else
|
||||||
maxAdd = multLookup[params.TapNoteScore];
|
if params.HoldNoteScore == 'HoldNoteScore_LetGo' then
|
||||||
if params.TapNoteScore == 'TapNoteScore_W2' or 'TapNoteScore_W3' then
|
maxAdd = 0;
|
||||||
-- [ja] 超最終手段
|
else
|
||||||
pss:SetCurMaxScore( pss:GetCurMaxScore() + 1000000 );
|
maxAdd = multLookup[params.TapNoteScore];
|
||||||
|
if params.TapNoteScore == 'TapNoteScore_W2' or 'TapNoteScore_W3' then
|
||||||
|
-- [ja] 超最終手段
|
||||||
|
pss:SetCurMaxScore( pss:GetCurMaxScore() + 1000000 );
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
pss:SetCurMaxScore(pss:GetCurMaxScore() + maxAdd);
|
pss:SetCurMaxScore(pss:GetCurMaxScore() + maxAdd);
|
||||||
|
|||||||
Reference in New Issue
Block a user