aboutsummaryrefslogtreecommitdiffstats
path: root/game/plugins/5000points.usdx
diff options
context:
space:
mode:
Diffstat (limited to 'game/plugins/5000points.usdx')
-rw-r--r--game/plugins/5000points.usdx48
1 files changed, 48 insertions, 0 deletions
diff --git a/game/plugins/5000points.usdx b/game/plugins/5000points.usdx
new file mode 100644
index 00000000..7ebd23b4
--- /dev/null
+++ b/game/plugins/5000points.usdx
@@ -0,0 +1,48 @@
+function plugin_init()
+ register('party mode: 5000points', '1.00', 'USDX Team', 'http://www.UltrastarDeluxe.org');
+
+ require('Usdx.Party')
+ require('Usdx.ScreenSing');
+
+ local Mode = {}
+
+ Mode.Name = '5000points'
+ Mode.CanNonParty = true;
+ Mode.CanParty = true;
+ Mode.OnSing = 'Sing';
+ Mode.AfterSing = 'Calculate_Winner';
+
+ Usdx.Party.Register(Mode)
+
+ return true;
+end
+
+function Sing()
+ Scores = ScreenSing.GetScores();
+
+ for i = 1, #Scores do
+ if (Scores[i] >= 5000) then
+ ScreenSing.Finish();
+ break;
+ end
+ end
+
+ return true;
+end
+
+function Calculate_Winner()
+ Scores = Scores or ScreenSing.GetScores();
+ local Ranking = {};
+ for i = 1, #Scores do
+ if Scores[i] >= 5000 then
+ Ranking[i] = 1
+ else
+ Ranking[i] = #Scores
+ end
+ end
+
+ Party.SetRoundRanking(Ranking);
+ Scores = nil;
+
+ return true;
+end \ No newline at end of file