From 2c6031e127f83e22c9a82511d0b75fb054d1a68c Mon Sep 17 00:00:00 2001 From: whiteshark0 Date: Sat, 23 May 2009 15:06:13 +0000 Subject: reimplemented party mode blind git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1775 b956fd51-792f-4845-bead-9b4dfca2ff2c --- Lua/game/plugins/blind.usdx | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Lua/game/plugins/blind.usdx (limited to 'Lua/game/plugins') 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 -- cgit v1.2.3