home *** CD-ROM | disk | FTP | other *** search
/ Chip 2011 November / CHIP_2011_11.iso / Programy / Inne / Gry / UltraStar_Deluxe / ultrastardx-1.1-installer-full.exe / plugins / duel.usdx < prev    next >
Text File  |  2010-06-08  |  1KB  |  41 lines

  1. --[[
  2.  * UltraStar Deluxe - Karaoke Game
  3.  *
  4.  * UltraStar Deluxe is the legal property of its developers, whose names
  5.  * are too numerous to list here. Please refer to the COPYRIGHT
  6.  * file distributed with this source distribution.
  7.  *
  8.  * This program is free software; you can redistribute it and/or
  9.  * modify it under the terms of the GNU General Public License
  10.  * as published by the Free Software Foundation; either version 2
  11.  * of the License, or (at your option) any later version.
  12.  *
  13.  * This program is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  * GNU General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU General Public License
  19.  * along with this program; see the file COPYING. If not, write to
  20.  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  21.  * Boston, MA 02110-1301, USA.
  22.  *
  23.  * $URL: http://ultrastardx.svn.sourceforge.net/svnroot/ultrastardx/trunk/game/plugins/duel.usdx $
  24.  * $Id: duel.usdx 2258 2010-04-20 20:08:16Z whiteshark0 $
  25.  *]]
  26.  
  27. function plugin_init()
  28.   register('party mode: duel', '1.00', 'USDX Team', 'http://www.UltrastarDeluxe.org');
  29.  
  30.   require('Usdx.Party')
  31.  
  32.   local Mode = {}
  33.  
  34.   Mode.Name = 'Duel'
  35.   Mode.CanNonParty = true;
  36.   Mode.CanParty = true;
  37.  
  38.   Usdx.Party.Register(Mode)
  39.  
  40.   return true;
  41. end