diff options
author | s_alexander <s_alexander@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2010-01-12 19:15:46 +0000 |
---|---|---|
committer | s_alexander <s_alexander@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2010-01-12 19:15:46 +0000 |
commit | 8163ee219fbde2eb2508d57c8c1498e66df9db0d (patch) | |
tree | 968453d97f4df43a8c1112773928ff05598f2862 /game/plugins/5000points.usdx | |
parent | 067a9f3484d6abae175453acb28bd556e0f570a4 (diff) | |
download | usdx-8163ee219fbde2eb2508d57c8c1498e66df9db0d.tar.gz usdx-8163ee219fbde2eb2508d57c8c1498e66df9db0d.tar.xz usdx-8163ee219fbde2eb2508d57c8c1498e66df9db0d.zip |
added previous ignored plugins
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@2073 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r-- | game/plugins/5000points.usdx | 48 |
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 |