diff options
author | whiteshark0 <whiteshark0@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2009-05-23 15:06:13 +0000 |
---|---|---|
committer | whiteshark0 <whiteshark0@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2009-05-23 15:06:13 +0000 |
commit | 2c6031e127f83e22c9a82511d0b75fb054d1a68c (patch) | |
tree | 0cae8aaa886dbf70df25526418a44badc9846288 /Lua | |
parent | 4acd4f4d8c2a563b1357b5415fb0c1bb3b266d50 (diff) | |
download | usdx-2c6031e127f83e22c9a82511d0b75fb054d1a68c.tar.gz usdx-2c6031e127f83e22c9a82511d0b75fb054d1a68c.tar.xz usdx-2c6031e127f83e22c9a82511d0b75fb054d1a68c.zip |
reimplemented party mode blind
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1775 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'Lua')
-rw-r--r-- | Lua/game/plugins/blind.usdx | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Lua/game/plugins/blind.usdx b/Lua/game/plugins/blind.usdx new file mode 100644 index 00000000..2d2ce44e --- /dev/null +++ b/Lua/game/plugins/blind.usdx @@ -0,0 +1,27 @@ +function plugin_init()
+ register('party mode: blind', '1.00', 'USDX Team', 'http://www.UltrastarDeluxe.org');
+
+ require('Usdx.Party')
+ require('Usdx.ScreenSing')
+
+ local Mode = {}
+
+ Mode.Name = 'Blind'
+ Mode.CanNonParty = true;
+ Mode.CanParty = true;
+
+ Mode.BeforeSing = 'BeforeSing';
+
+ Usdx.Party.Register(Mode)
+
+ return true;
+end
+
+function BeforeSing()
+ local Settings = {};
+ Settings['NotesVisible'] = {}; -- notes hidden for every player
+
+ ScreenSing.SetSettings(Settings);
+
+ return true;
+end
\ No newline at end of file |