diff options
author | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-08-30 18:14:18 +0000 |
---|---|---|
committer | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-08-30 18:14:18 +0000 |
commit | 58c1daf3692d4c5c534750a4fda97e087b0f0cbb (patch) | |
tree | 4b825dc642cb6eb9a060e54bf8d69288fbee4904 | |
parent | 5f11f9f3e328f6818a42f0a3405404612399c64e (diff) | |
download | usdx-58c1daf3692d4c5c534750a4fda97e087b0f0cbb.tar.gz usdx-58c1daf3692d4c5c534750a4fda97e087b0f0cbb.tar.xz usdx-58c1daf3692d4c5c534750a4fda97e087b0f0cbb.zip |
Removed outdated 1.1 branch contents
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/1.1@1332 b956fd51-792f-4845-bead-9b4dfca2ff2c
225 files changed, 0 insertions, 17020 deletions
diff --git a/ScoreConverter/ScoreConverter.dpr b/ScoreConverter/ScoreConverter.dpr deleted file mode 100644 index 5736b733..00000000 --- a/ScoreConverter/ScoreConverter.dpr +++ /dev/null @@ -1,17 +0,0 @@ -program ScoreConverter;
-
-uses
- Forms,
- Umainform in 'Umainform.pas' {mainform},
- UScores in 'UScores.pas',
- UDataBase in '..\Game\Code\Classes\UDataBase.pas',
- USongs in 'USongs.pas';
-
-{$R *.res}
-
-begin
- Application.Initialize;
- Application.Title := 'Score Converter';
- Application.CreateForm(Tmainform, mainform);
- Application.Run;
-end.
diff --git a/ScoreConverter/ScoreConverter.ico b/ScoreConverter/ScoreConverter.ico Binary files differdeleted file mode 100644 index 80319014..00000000 --- a/ScoreConverter/ScoreConverter.ico +++ /dev/null diff --git a/ScoreConverter/ScoreConverter.res b/ScoreConverter/ScoreConverter.res Binary files differdeleted file mode 100644 index 2d3bea87..00000000 --- a/ScoreConverter/ScoreConverter.res +++ /dev/null diff --git a/ScoreConverter/UScores.pas b/ScoreConverter/UScores.pas deleted file mode 100644 index 3e2c4e92..00000000 --- a/ScoreConverter/UScores.pas +++ /dev/null @@ -1,102 +0,0 @@ -unit UScores;
-
-interface
-
-uses USongs;
-
-procedure ReadScore(var Song: TSong);
-procedure WriteScore(var Song: TSong);
-procedure AddScore(var Song: TSong; Level: integer; Name: string; Score: integer);
-
-implementation
-
-uses IniFiles, SysUtils;
-
-procedure ReadScore(var Song: TSong);
-var
- F: TIniFile;
- S: string;
- P: integer;
- Lev: integer;
- LevS: string;
-begin
- F := TIniFile.Create(Song.Path + ChangeFileExt(Song.FileName, '.sco'));
-
- for Lev := 0 to 2 do begin
- case Lev of
- 0: LevS := 'Easy';
- 1: LevS := 'Normal';
- 2: LevS := 'Hard';
- end;
-
- P := 1;
- S := F.ReadString(LevS + IntToStr(P), 'Name', '');
- while (S <> '') and (P<=5) do begin
- SetLength(Song.Score[Lev], P);
- Song.Score[Lev, P-1].Name := S;
- Song.Score[Lev, P-1].Score := F.ReadInteger(LevS + IntToStr(P), 'Score', 0);
-
- Inc(P);
- S := F.ReadString(LevS + IntToStr(P), 'Name', '');
- end;
- end;
-end;
-
-procedure AddScore(var Song: TSong; Level: integer; Name: string; Score: integer);
-var
- S: integer;
- S2: integer;
-begin
- S := 0;
- while (S <= High(Song.Score[Level])) and (Score <= Song.Score[Level, S].Score) do
- Inc(S);
- // S has the number for new score
-
-
- // we create new score
- SetLength(Song.Score[Level], Length(Song.Score[Level]) + 1);
-
- // we move down old scores
- for S2 := High(Song.Score[Level])-1 downto S do
- Song.Score[Level, S2+1] := Song.Score[Level, S2];
-
- // we fill new score
- Song.Score[Level, S].Name := Name;
- Song.Score[Level, S].Score := Score;
-
- if Length(Song.Score[Level]) > 5 then begin
- SetLength(Song.Score[Level], 5);
- end;
-end;
-
-procedure WriteScore(var Song: TSong);
-var
- F: TIniFile;
- S: integer;
- Lev: integer;
- LevS: string;
- FileName: string;
-begin
- FileName := Song.Path + ChangeFileExt(Song.FileName, '.sco');
- if (not FileExists(FileName)) or (FileExists(FileName) and DeleteFile(FileName)) then begin
- // file has been deleted -> creating new file
- F := TIniFile.Create(FileName);
-
- for Lev := 0 to 2 do begin
- case Lev of
- 0: LevS := 'Easy';
- 1: LevS := 'Normal';
- 2: LevS := 'Hard';
- end;
-
- for S := 0 to high(Song.Score[Lev]) do begin
- F.WriteString(LevS + IntToStr(S+1), 'Name', Song.Score[Lev, S].Name);
- F.WriteInteger(LevS + IntToStr(S+1), 'Score', Song.Score[Lev, S].Score);
-
- end; // for S
- end; // for Lev
- F.Free;
- end; // if
-end;
-
-end.
diff --git a/ScoreConverter/USongs.pas b/ScoreConverter/USongs.pas deleted file mode 100644 index a43ea61e..00000000 --- a/ScoreConverter/USongs.pas +++ /dev/null @@ -1,160 +0,0 @@ -unit USongs;
-
-interface
-
-type
- TScore = record
- Name: string;
- Score: integer;
- Length: string;
- end;
-
- TSong = record
- Path: string;
- FileName: string;
-
- Title: string;
- Artist: string;
-
- Score: array[0..2] of array of TScore;
- end;
-
- TSongs = class
- LastCount: Integer;
- Song: array of TSong; // array of songs
-
- function ReadHeader(var rSong: TSong): boolean;
- procedure BrowseDir(Dir: string); // Browse a dir + subdirs for songfiles
- end;
-
- var Songs: TSongs;
-
-implementation
-uses Sysutils, UMainForm, Dialogs;
-
-function TSongs.ReadHeader(var rSong: TSong): boolean;
-var
- Line, Identifier, Value: String;
- Temp: word;
- Done: byte;
- SongFile: Textfile;
-begin
- Result := False;
-
-
- //Open File and set File Pointer to the beginning
- AssignFile(SongFile, rSong.Path + rSong.FileName);
- Reset(SongFile);
-
- //Read Header
- Result := true;
-
- //Read first Line
- ReadLn (SongFile, Line);
-
- if (Length(Line)<=0) then
- begin
- Result := False;
- Exit;
- end;
- Done := 0;
- //Read Lines while Line starts with #
- While (Line[1] = '#') do
- begin
- Temp := Pos(':', Line);
-
- //Line has a Seperator-> Headerline
- if (Temp <> 0) then
- begin
- //Read Identifier and Value
- Identifier := Uppercase(Trim(Copy(Line, 2, Temp - 2))); //Uppercase is for Case Insensitive Checks
- Value := Trim(Copy(Line, Temp + 1,Length(Line) - Temp));
-
- //Check the Identifier (If Value is given)
- if (Length(Value) <> 0) then
- begin
-
- //-----------
- //Required Attributes
- //-----------
-
- //Title
- if (Identifier = 'TITLE') then
- begin
- rSong.Title := Value;
-
- //Add Title Flag to Done
- Done := Done or 1;
- end
-
- //Artist
- else if (Identifier = 'ARTIST') then
- begin
- rSong.Artist := Value;
-
- //Add Artist Flag to Done
- Done := Done or 2;
- end;
-
- end;
- end;
-
- if not EOf(SongFile) then
- ReadLn (SongFile, Line)
- else
- begin
- Result := False;
- break;
- end;
-
- //End on first empty Line
- if (Length(Line) = 0) then
- break;
- end;
-
- //Check if all Required Values are given
- if (Done <> 3) then
- begin
- Result := False;
- end;
-
- //And Close File
- CloseFile(SongFile);
-end;
-
-procedure TSongs.BrowseDir(Dir: string);
-var
- SR: TSearchRec; // for parsing Songs Directory
- SLen: integer;
-begin
- if FindFirst(Dir + '*', faDirectory, SR) = 0 then begin
- repeat
- if (SR.Name <> '.') and (SR.Name <> '..') then
- BrowseDir(Dir + Sr.Name + '\');
- until FindNext(SR) <> 0;
- end;
- FindClose(SR);
-
- if FindFirst(Dir + '*.txt', 0, SR) = 0 then begin
- repeat
- SLen := Length(Song);
- SetLength(Song, SLen + 1);
-
- Song[SLen].Path := Dir;
- Song[SLen].FileName := SR.Name;
-
- if (ReadHeader(Song[SLen]) = false) then SetLength(Song, SLen);
-
- //update Songs Label
- if LastCount <> SLen div 30 then
- begin
- LastCount := SLen div 30;
- MainForm.UpdateLoadedSongs(Dir, SLen);
- end;
-
- until FindNext(SR) <> 0;
- end; // if FindFirst
- FindClose(SR);
-end;
-
-end.
diff --git a/ScoreConverter/Umainform.dfm b/ScoreConverter/Umainform.dfm deleted file mode 100644 index a4291e7b..00000000 --- a/ScoreConverter/Umainform.dfm +++ /dev/null @@ -1,123 +0,0 @@ -object mainform: Tmainform
- Left = 328
- Top = 228
- HorzScrollBar.Visible = False
- VertScrollBar.Visible = False
- BorderIcons = [biSystemMenu, biMinimize]
- BorderStyle = bsSingle
- Caption = 'Ultrastar Deluxe Score Converter'
- ClientHeight = 159
- ClientWidth = 449
- Color = clBtnFace
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'MS Sans Serif'
- Font.Style = []
- OldCreateOrder = False
- Position = poDesktopCenter
- OnCreate = FormCreate
- PixelsPerInch = 96
- TextHeight = 13
- object Label1: TLabel
- Left = 8
- Top = 8
- Width = 60
- Height = 13
- Caption = 'SongFolder: '
- end
- object lFolder: TLabel
- Left = 8
- Top = 24
- Width = 29
- Height = 13
- Caption = 'Folder'
- end
- object Label2: TLabel
- Left = 8
- Top = 48
- Width = 49
- Height = 13
- Caption = 'Database:'
- end
- object lDatabase: TLabel
- Left = 8
- Top = 64
- Width = 46
- Height = 13
- Caption = 'Database'
- end
- object lDatabase2: TLabel
- Left = 72
- Top = 48
- Width = 54
- Height = 13
- Caption = 'lDatabase2'
- end
- object lFolder2: TLabel
- Left = 72
- Top = 8
- Width = 37
- Height = 13
- Caption = 'lFolder2'
- end
- object lStatus: TLabel
- Left = 0
- Top = 96
- Width = 449
- Height = 13
- Alignment = taCenter
- AutoSize = False
- Caption = 'lStatus'
- end
- object bFLoad: TButton
- Left = 176
- Top = 8
- Width = 57
- Height = 17
- Caption = 'Load'
- TabOrder = 0
- OnClick = bFLoadClick
- end
- object bDLoad: TButton
- Left = 176
- Top = 48
- Width = 57
- Height = 17
- Caption = 'Load'
- TabOrder = 1
- OnClick = bDLoadClick
- end
- object bToDB: TButton
- Left = 16
- Top = 112
- Width = 153
- Height = 17
- Caption = 'Convert *.SCO to Database'
- Enabled = False
- TabOrder = 2
- OnClick = bToDBClick
- end
- object bFromDB: TButton
- Left = 288
- Top = 112
- Width = 145
- Height = 17
- Caption = 'Convert Database to *.SCO'
- Enabled = False
- TabOrder = 3
- OnClick = bFromDBClick
- end
- object pProgress: TProgressBar
- Left = 8
- Top = 136
- Width = 433
- Height = 17
- TabOrder = 4
- end
- object oDatabase: TOpenDialog
- Filter = 'Ultrastar Deluxe Database|ultrastar.db'
- Left = 136
- Top = 48
- end
-end
diff --git a/ScoreConverter/Umainform.pas b/ScoreConverter/Umainform.pas deleted file mode 100644 index c5cc5347..00000000 --- a/ScoreConverter/Umainform.pas +++ /dev/null @@ -1,230 +0,0 @@ -unit Umainform;
-
-interface
-
-uses
- Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
- Dialogs, StdCtrls, ComCtrls, UDataBase, ShellAPI, ShlObj, USongs;
-
-type
- Tmainform = class(TForm)
- Label1: TLabel;
- lFolder: TLabel;
- bFLoad: TButton;
- Label2: TLabel;
- lDatabase: TLabel;
- bDLoad: TButton;
- lDatabase2: TLabel;
- lFolder2: TLabel;
- bToDB: TButton;
- bFromDB: TButton;
- pProgress: TProgressBar;
- oDatabase: TOpenDialog;
- lStatus: TLabel;
- procedure FormCreate(Sender: TObject);
- procedure bDLoadClick(Sender: TObject);
- function BrowseDialog (const Title: string; const Flag: integer): string;
- procedure bFLoadClick(Sender: TObject);
- procedure UpdateLoadedSongs(Path: String; Count: integer);
- procedure bToDBClick(Sender: TObject);
- procedure bFromDBClick(Sender: TObject);
- private
- { Private-Deklarationen }
- public
- { Public-Deklarationen }
- end;
-
-var
- mainform: Tmainform;
- DBLoaded: Boolean;
- SFLoaded: Boolean;
-
-
-implementation
-
-uses UScores;
-
-{$R *.dfm}
-
-function Tmainform.BrowseDialog
- (const Title: string; const Flag: integer): string;
-var
- lpItemID : PItemIDList;
- BrowseInfo : TBrowseInfo;
- DisplayName : array[0..MAX_PATH] of char;
- TempPath : array[0..MAX_PATH] of char;
-begin
- Result:='';
- FillChar(BrowseInfo, sizeof(TBrowseInfo), #0);
- with BrowseInfo do begin
- hwndOwner := Application.Handle;
- pszDisplayName := @DisplayName;
- lpszTitle := PChar(Title);
- ulFlags := Flag;
- end;
- lpItemID := SHBrowseForFolder(BrowseInfo);
- if lpItemId <> nil then begin
- SHGetPathFromIDList(lpItemID, TempPath);
- Result := TempPath;
- GlobalFreePtr(lpItemID);
- end;
-end;
-
-procedure Tmainform.FormCreate(Sender: TObject);
-begin
- Database := TDataBaseSystem.Create;
- Songs := TSongs.Create;
- lStatus.Caption := 'Welcome to USD Score Converter';
- lFolder2.Caption := 'No Songs loaded';
- lFolder.Caption := '';
- lDataBase2.Caption := 'No Database loaded';
- lDataBase.Caption := '';
-end;
-
-procedure Tmainform.bDLoadClick(Sender: TObject);
-begin
- if oDatabase.Execute then
- begin
- try
- Database.Init(oDataBase.FileName);
- lDataBase2.Caption := 'Database loaded';
- lDataBase.Caption := oDataBase.FileName;
- DBLoaded := True;
- except
- lDataBase2.Caption := 'No Database loaded';
- lDataBase.Caption := '';
- DBLoaded := False;
- end;
- end;
- bToDB.Enabled := DBLoaded and SFLoaded;
- bFromDB.Enabled := bToDB.Enabled;
-end;
-
-procedure Tmainform.bFLoadClick(Sender: TObject);
-var
- Path: String;
-begin
- Path := BrowseDialog('Select UltraStar SongFolder', BIF_RETURNONLYFSDIRS);
-
- if Path <> '' then
- begin
- SetLength(Songs.Song, 0);
- try
- Songs.BrowseDir(Path + '\');
- lFolder2.Caption := Inttostr(Length(Songs.Song)) + ' Songs loaded';
- lFolder.Caption := Path;
- SFLoaded := True;
- except
- lFolder2.Caption := 'No Songs loaded';
- lFolder.Caption := '';
- SFLoaded := False;
- end;
- end;
-
- bToDB.Enabled := DBLoaded and SFLoaded;
- bFromDB.Enabled := bToDB.Enabled;
-end;
-
-procedure Tmainform.UpdateLoadedSongs(Path: String; Count: integer);
-begin
- lFolder2.Caption := Inttostr(Count) + ' Songs loaded';
- lFolder.Caption := Path;
- Application.ProcessMessages;
-end;
-
-procedure Tmainform.bToDBClick(Sender: TObject);
-var
- I, J, K: Integer;
- LastI: integer;
-begin
- if (Messagebox(0, PChar('If the same directory is added more than one time the Score-File will be useless. Contìnue ?'), PChar(Mainform.Caption), MB_ICONWARNING or MB_YESNO) = IDYes) then
- begin
- pProgress.Max := high(Songs.Song);
- pProgress.Position := 0;
- // Go through all Songs
- For I := 0 to high(Songs.Song) do
- begin
- try
- //Read Scores from .SCO File
- ReadScore (Songs.Song[I]);
-
- //Go from Easy to Difficult
- For J := 0 to 2 do
- begin
- //Go through all Score Entrys with Difficulty J
- For K := 0 to high(Songs.Song[I].Score[J]) do
- begin
- //Add to DataBase
- DataBase.AddScore(Songs.Song[I], J, Songs.Song[I].Score[J][K].Name, Songs.Song[I].Score[J][K].Score);
- end;
- end;
-
- except
- showmessage ('Error Converting Score From Song: ' + Songs.Song[I].Path + Songs.Song[I].FileName);
- end;
-
- //Update ProgressBar
- J := I div 30;
- if (LastI <> J) then
- begin
- LastI := J;
- pProgress.Position := I;
- lStatus.Caption := 'Adding Songscore: ' + Songs.Song[I].Artist + ' - ' + Songs.Song[I].Title;
- Application.ProcessMessages;
- end;
- end;
-
- pProgress.Position := pProgress.Max;
- lStatus.Caption := 'Finished';
- end;
-end;
-
-procedure Tmainform.bFromDBClick(Sender: TObject);
-var
- I, J: Integer;
- LastI: integer;
- anyScoreinthere: boolean;
-begin
- if (Messagebox(0, PChar('All Score Entrys in the Song Directory having an equivalent will be Overwritten. Contìnue ?'), PChar(Mainform.Caption), MB_ICONWARNING or MB_YESNO) = IDYes) then
- begin
- pProgress.Max := high(Songs.Song);
- pProgress.Position := 0;
- // Go through all Songs
- For I := 0 to high(Songs.Song) do
- begin
- try
- //Not Write ScoreFile when there are no Scores for this File
- anyScoreinthere := false;
- //Read Scores from DB File
- Database.ReadScore (Songs.Song[I]);
-
- //Go from Easy to Difficult
- For J := 0 to 2 do
- begin
- anyScoreinthere := anyScoreinthere or (Length(Songs.Song[I].Score[J]) > 0);
- end;
-
- if AnyScoreinThere then
- WriteScore(Songs.Song[I]);
-
- except
- showmessage ('Error Converting Score From Song: ' + Songs.Song[I].Path + Songs.Song[I].FileName);
- end;
-
- //Update ProgressBar
- J := I div 30;
- if (LastI <> J) then
- begin
- LastI := J;
- pProgress.Position := I;
- lStatus.Caption := 'Writing ScoreFile: ' + Songs.Song[I].Artist + ' - ' + Songs.Song[I].Title;
- Application.ProcessMessages;
- end;
- end;
-
- pProgress.Position := pProgress.Max;
- lStatus.Caption := 'Finished';
- end;
-end;
-
-end.
diff --git a/Skins/Classic/Star.ini b/Skins/Classic/Star.ini deleted file mode 100644 index 336af00c..00000000 --- a/Skins/Classic/Star.ini +++ /dev/null @@ -1,160 +0,0 @@ -;0.5.1
-;experimental version
-;if you are using this as a sample for your theme
-;don't be suprised it doesn't work good with newer releases
-
-[Skin]
-Theme=Classic
-Name=Star
-Creator=UltraStar Deluxe Team
-Color=Blue
-
-[Textures]
-
-# # # M A I N # # #
-Button = [main]Button.jpg
-ButtonF = [main]ButtonEditor.jpg
-MainBar = [main]Bar.jpg
-Logo = [main]Logo.jpg
-
-#Backgrounds
-#LoadingBG = #Placeholder for new Classic Skins
-#MainBG =
-#SongBG =
-#ScoresBG =
-#Top5BG =
-#OptionsBG =
-#PartyBG =
-
-#Icons on screen
-MainIcon = [icon]Star.jpg
-MainSearch = [icon]Search.jpg
-IconOption = [icon]Options.jpg
-IconSongMenu = [icon]SongMenu.jpg
-ScoreIcon = [icon]Score.jpg
-PartyIcon = [icon]Party.jpg
-StatIcon = [icon]Stats.jpg
-SongCD = [icon]cd.jpg
-IconQuestion = [icon]question.jpg
-IconError = [icon]error.jpg
-VideoIcon = [icon]video.jpg
-
-# # # M A I N S C R E E N # # #
-ButtonSolo = [mainbutton]Solo.jpg
-ButtonMulti = [mainbutton]Multi.jpg
-ButtonEditor = [mainbutton]Solo.jpg
-ButtonStats = [mainbutton]Stats.jpg
-ButtonOptions = [mainbutton]Options.jpg
-ButtonExit = [mainbutton]Exit.jpg
-
-# # # S O N G S E L E C E T # # #
-SongSelection = [song]selection.jpg
-SongFade = [song]BGFade.jpg
-SongEqualizerBG= [song]EqualizerBG.jpg
-SongCover = [main]songCover.jpg
-
-
-# # # S I N G # # #
-#the bar where the lyrics reside
-LyricBar = [sing]textBar.jpg
-
-#this one slides in, to tell you that singing starts immediately
-LyricHelpBar = [sing]lyricsHelpBar.bmp
-
-#the time progress bar (not skinned in this theme :P )
-TimeBar1 = [sing]timeBarBG.jpg
-
-#the bar behind the timestuff
-TimeBar2 = [sing]timeBar.jpg
-
-#linebonus, the thing that pop ups at the score
-LineBonusBack = [sing]lineBonusPopUp.jpg
-
-#Singbar (the thing beneath the scores)
-SingBarBack = [sing]singBarBack.jpg
-SingBarBar = [sing]singBarBar.jpg
-SingBarFront = [sing]singBarFront.jpg
-
-#Background for scores
-ScoreBG = [sing]scoreBg.jpg
-
-#Background for the P1, P2 and so on
-P = [sing]p.jpg
-
-#Pointer for lyrics
-Ball = [sing]LyricsBall.bmp
-
-
-# # # S C O R E / T O P 5 # # #
-ScoreBox = [score]Box.jpg
-ScoreLevel = [score]level.jpg
-ScoreLevelRound = [score]levelRound.jpg
-ScoreLine = [score]line.jpg
-PlayerNumberBox = [main]playerNumberBox.jpg
-
-
-# # # P A R T Y # # #
-Joker =[party]Joker.jpg
-PartyPlayerButton =[party]playerButton.jpg
-PartyTeamButton1 =[party]roundTeamButton.jpg
-PartyTeamButton2 =[party]playerTeamButton.jpg
-PartyTeamButton3 =[party]winTeamButton1.jpg
-PartyTeamButton4 =[party]winTeamButton2.jpg
-PartyTeamButton5 =[party]winTeamButton3.jpg
-PartyRoundBG1 =[party]roundBG1.jpg
-PartyRoundBG2 =[party]roundBG2.jpg
-PartyRoundBG3 =[party]roundBG3.jpg
-PartyRoundBG4 =[party]roundBG4.jpg
-HDL_Pointer =[party]pointer.bmp
-PartyTeamPoints =[party]teamPoints.jpg
-PartyScoreDeco =[party]scoreDecoration.jpg
-PartyScoreBG1 =[party]scoreBG1.jpg
-PartyScoreBG2 =[party]scoreBG2.jpg
-PartyWinDeco1 =[party]winDecoration.jpg
-PartyWinDeco2 =[party]winDecoration.jpg
-PartyWinDeco3 =[party]winDecoration.jpg
-
-# # # S T A T S # # #
-StatMainBG1 = [stat]mainBG1.jpg
-StatMainBG2 = [stat]mainBG2.jpg
-StatMainBG3 = [stat]mainBG3.jpg
-StatDetailBG1 = [stat]detailBG1.jpg
-
-
-# # # N A V I # # #
-ButtonP = [button]p.jpg
-ButtonE = [button]e.jpg
-ButtonM = [button]m.jpg
-ButtonJ = [button]j.jpg
-ButtonAlt = [button]alt.jpg
-ButtonAZ = [button]az.jpg
-ButtonEnter = [button]enter.jpg
-ButtonNavi = [button]navi.jpg
-ButtonEsc = [button]esc.jpg
-Button13 = [button]13.jpg
-
-JumpToBG = [menu]JumptoBg.jpg
-SongMenuBG = [menu]songMenuBg.jpg
-SongMenuBorder = [menu]songMenuBorder.jpg
-SongMenuButton = [menu]songMenuButtonBG.jpg
-SongMenuSelectBG = [menu]songMenuSelectBg.jpg
-PopUpBG = [menu]popUpBG.jpg
-PopUpFG = [menu]popUpFG.jpg
-
-
-# # # N O T E S # # #
-GrayLeft = [sing]notesLeft.bmp
-GrayMid = [sing]notesMid.bmp
-GrayRight = [sing]notesRight.bmp
-NoteBGLeft = [sing]notesBgLeft.bmp
-NoteBGMid = [sing]notesBgMid.bmp
-NoteBGRight = [sing]notesBgRight.bmp
-
-
-# # # E F F E C T S # # #
-NoteStar = [effect]goldenNoteStar.jpg
-NotePerfectStar = [effect]perfectNoteStar.jpg
-
-
-# # # dirty helpers # # #
-Rectangle = [helper]rectangle.jpg
\ No newline at end of file diff --git a/Skins/Classic/[button]13.jpg b/Skins/Classic/[button]13.jpg Binary files differdeleted file mode 100644 index 5787bb24..00000000 --- a/Skins/Classic/[button]13.jpg +++ /dev/null diff --git a/Skins/Classic/[button]alt.jpg b/Skins/Classic/[button]alt.jpg Binary files differdeleted file mode 100644 index ec3e630f..00000000 --- a/Skins/Classic/[button]alt.jpg +++ /dev/null diff --git a/Skins/Classic/[button]az.jpg b/Skins/Classic/[button]az.jpg Binary files differdeleted file mode 100644 index b486604e..00000000 --- a/Skins/Classic/[button]az.jpg +++ /dev/null diff --git a/Skins/Classic/[button]e.jpg b/Skins/Classic/[button]e.jpg Binary files differdeleted file mode 100644 index 7b247260..00000000 --- a/Skins/Classic/[button]e.jpg +++ /dev/null diff --git a/Skins/Classic/[button]enter.jpg b/Skins/Classic/[button]enter.jpg Binary files differdeleted file mode 100644 index 16ee885a..00000000 --- a/Skins/Classic/[button]enter.jpg +++ /dev/null diff --git a/Skins/Classic/[button]esc.jpg b/Skins/Classic/[button]esc.jpg Binary files differdeleted file mode 100644 index 7c40487a..00000000 --- a/Skins/Classic/[button]esc.jpg +++ /dev/null diff --git a/Skins/Classic/[button]j.jpg b/Skins/Classic/[button]j.jpg Binary files differdeleted file mode 100644 index b6eed56c..00000000 --- a/Skins/Classic/[button]j.jpg +++ /dev/null diff --git a/Skins/Classic/[button]m.jpg b/Skins/Classic/[button]m.jpg Binary files differdeleted file mode 100644 index ebb7156e..00000000 --- a/Skins/Classic/[button]m.jpg +++ /dev/null diff --git a/Skins/Classic/[button]navi.jpg b/Skins/Classic/[button]navi.jpg Binary files differdeleted file mode 100644 index 41b44525..00000000 --- a/Skins/Classic/[button]navi.jpg +++ /dev/null diff --git a/Skins/Classic/[button]p.jpg b/Skins/Classic/[button]p.jpg Binary files differdeleted file mode 100644 index d2d60c02..00000000 --- a/Skins/Classic/[button]p.jpg +++ /dev/null diff --git a/Skins/Classic/[effect]goldenNoteStar.jpg b/Skins/Classic/[effect]goldenNoteStar.jpg Binary files differdeleted file mode 100644 index 1b31d267..00000000 --- a/Skins/Classic/[effect]goldenNoteStar.jpg +++ /dev/null diff --git a/Skins/Classic/[effect]perfectNoteStar.jpg b/Skins/Classic/[effect]perfectNoteStar.jpg Binary files differdeleted file mode 100644 index 189a22a3..00000000 --- a/Skins/Classic/[effect]perfectNoteStar.jpg +++ /dev/null diff --git a/Skins/Classic/[helper]rectangle.jpg b/Skins/Classic/[helper]rectangle.jpg Binary files differdeleted file mode 100644 index e03f98fc..00000000 --- a/Skins/Classic/[helper]rectangle.jpg +++ /dev/null diff --git a/Skins/Classic/[icon]Star.jpg b/Skins/Classic/[icon]Star.jpg Binary files differdeleted file mode 100644 index ee98f9d7..00000000 --- a/Skins/Classic/[icon]Star.jpg +++ /dev/null diff --git a/Skins/Classic/[icon]error.jpg b/Skins/Classic/[icon]error.jpg Binary files differdeleted file mode 100644 index 5802e312..00000000 --- a/Skins/Classic/[icon]error.jpg +++ /dev/null diff --git a/Skins/Classic/[icon]question.jpg b/Skins/Classic/[icon]question.jpg Binary files differdeleted file mode 100644 index e78fe6a8..00000000 --- a/Skins/Classic/[icon]question.jpg +++ /dev/null diff --git a/Skins/Classic/[icon]stats.jpg b/Skins/Classic/[icon]stats.jpg Binary files differdeleted file mode 100644 index cd5e03fb..00000000 --- a/Skins/Classic/[icon]stats.jpg +++ /dev/null diff --git a/Skins/Classic/[icon]video.jpg b/Skins/Classic/[icon]video.jpg Binary files differdeleted file mode 100644 index 12d71add..00000000 --- a/Skins/Classic/[icon]video.jpg +++ /dev/null diff --git a/Skins/Classic/[main]Bar.jpg b/Skins/Classic/[main]Bar.jpg Binary files differdeleted file mode 100644 index 2453cc3b..00000000 --- a/Skins/Classic/[main]Bar.jpg +++ /dev/null diff --git a/Skins/Classic/[main]Bar1.jpg b/Skins/Classic/[main]Bar1.jpg Binary files differdeleted file mode 100644 index 4e9693e3..00000000 --- a/Skins/Classic/[main]Bar1.jpg +++ /dev/null diff --git a/Skins/Classic/[main]Button.jpg b/Skins/Classic/[main]Button.jpg Binary files differdeleted file mode 100644 index e6191a95..00000000 --- a/Skins/Classic/[main]Button.jpg +++ /dev/null diff --git a/Skins/Classic/[main]Button2.jpg b/Skins/Classic/[main]Button2.jpg Binary files differdeleted file mode 100644 index e3e9679a..00000000 --- a/Skins/Classic/[main]Button2.jpg +++ /dev/null diff --git a/Skins/Classic/[main]Button3.jpg b/Skins/Classic/[main]Button3.jpg Binary files differdeleted file mode 100644 index 3ac1f442..00000000 --- a/Skins/Classic/[main]Button3.jpg +++ /dev/null diff --git a/Skins/Classic/[main]ButtonEditor.jpg b/Skins/Classic/[main]ButtonEditor.jpg Binary files differdeleted file mode 100644 index 32e455ef..00000000 --- a/Skins/Classic/[main]ButtonEditor.jpg +++ /dev/null diff --git a/Skins/Classic/[main]Logo.jpg b/Skins/Classic/[main]Logo.jpg Binary files differdeleted file mode 100644 index 1902cb02..00000000 --- a/Skins/Classic/[main]Logo.jpg +++ /dev/null diff --git a/Skins/Classic/[main]songCover.jpg b/Skins/Classic/[main]songCover.jpg Binary files differdeleted file mode 100644 index 426bf22d..00000000 --- a/Skins/Classic/[main]songCover.jpg +++ /dev/null diff --git a/Skins/Classic/[main]square.jpg b/Skins/Classic/[main]square.jpg Binary files differdeleted file mode 100644 index 8af62b71..00000000 --- a/Skins/Classic/[main]square.jpg +++ /dev/null diff --git a/Skins/Classic/[mainbutton]Exit.jpg b/Skins/Classic/[mainbutton]Exit.jpg Binary files differdeleted file mode 100644 index 55494e65..00000000 --- a/Skins/Classic/[mainbutton]Exit.jpg +++ /dev/null diff --git a/Skins/Classic/[mainbutton]Multi.jpg b/Skins/Classic/[mainbutton]Multi.jpg Binary files differdeleted file mode 100644 index ad5980d7..00000000 --- a/Skins/Classic/[mainbutton]Multi.jpg +++ /dev/null diff --git a/Skins/Classic/[mainbutton]Options.jpg b/Skins/Classic/[mainbutton]Options.jpg Binary files differdeleted file mode 100644 index 5e1bff71..00000000 --- a/Skins/Classic/[mainbutton]Options.jpg +++ /dev/null diff --git a/Skins/Classic/[mainbutton]Solo.jpg b/Skins/Classic/[mainbutton]Solo.jpg Binary files differdeleted file mode 100644 index a7e3d82a..00000000 --- a/Skins/Classic/[mainbutton]Solo.jpg +++ /dev/null diff --git a/Skins/Classic/[mainbutton]Stats.jpg b/Skins/Classic/[mainbutton]Stats.jpg Binary files differdeleted file mode 100644 index 71cc13ad..00000000 --- a/Skins/Classic/[mainbutton]Stats.jpg +++ /dev/null diff --git a/Skins/Classic/[menu]PopUpBg.JPG b/Skins/Classic/[menu]PopUpBg.JPG Binary files differdeleted file mode 100644 index 1a23a90c..00000000 --- a/Skins/Classic/[menu]PopUpBg.JPG +++ /dev/null diff --git a/Skins/Classic/[menu]PopUpFg.JPG b/Skins/Classic/[menu]PopUpFg.JPG Binary files differdeleted file mode 100644 index 530d4cf9..00000000 --- a/Skins/Classic/[menu]PopUpFg.JPG +++ /dev/null diff --git a/Skins/Classic/[menu]jumpToBg.jpg b/Skins/Classic/[menu]jumpToBg.jpg Binary files differdeleted file mode 100644 index d0cd1da8..00000000 --- a/Skins/Classic/[menu]jumpToBg.jpg +++ /dev/null diff --git a/Skins/Classic/[menu]songMenuBg.jpg b/Skins/Classic/[menu]songMenuBg.jpg Binary files differdeleted file mode 100644 index e4242fc5..00000000 --- a/Skins/Classic/[menu]songMenuBg.jpg +++ /dev/null diff --git a/Skins/Classic/[menu]songMenuBorder.jpg b/Skins/Classic/[menu]songMenuBorder.jpg Binary files differdeleted file mode 100644 index 11dd0604..00000000 --- a/Skins/Classic/[menu]songMenuBorder.jpg +++ /dev/null diff --git a/Skins/Classic/[menu]songMenuButtonBG.jpg b/Skins/Classic/[menu]songMenuButtonBG.jpg Binary files differdeleted file mode 100644 index 53f0da59..00000000 --- a/Skins/Classic/[menu]songMenuButtonBG.jpg +++ /dev/null diff --git a/Skins/Classic/[menu]songMenuSelectBG.jpg b/Skins/Classic/[menu]songMenuSelectBG.jpg Binary files differdeleted file mode 100644 index cd3041e2..00000000 --- a/Skins/Classic/[menu]songMenuSelectBG.jpg +++ /dev/null diff --git a/Skins/Classic/[party]Joker.jpg b/Skins/Classic/[party]Joker.jpg Binary files differdeleted file mode 100644 index 78b66936..00000000 --- a/Skins/Classic/[party]Joker.jpg +++ /dev/null diff --git a/Skins/Classic/[party]playerButton.jpg b/Skins/Classic/[party]playerButton.jpg Binary files differdeleted file mode 100644 index 15a34c66..00000000 --- a/Skins/Classic/[party]playerButton.jpg +++ /dev/null diff --git a/Skins/Classic/[party]playerTeamButton.jpg b/Skins/Classic/[party]playerTeamButton.jpg Binary files differdeleted file mode 100644 index 2faf9c4b..00000000 --- a/Skins/Classic/[party]playerTeamButton.jpg +++ /dev/null diff --git a/Skins/Classic/[party]pointer.bmp b/Skins/Classic/[party]pointer.bmp Binary files differdeleted file mode 100644 index 88bbcc3d..00000000 --- a/Skins/Classic/[party]pointer.bmp +++ /dev/null diff --git a/Skins/Classic/[party]roundBG1.jpg b/Skins/Classic/[party]roundBG1.jpg Binary files differdeleted file mode 100644 index 464aabea..00000000 --- a/Skins/Classic/[party]roundBG1.jpg +++ /dev/null diff --git a/Skins/Classic/[party]roundBG2.jpg b/Skins/Classic/[party]roundBG2.jpg Binary files differdeleted file mode 100644 index 3413958f..00000000 --- a/Skins/Classic/[party]roundBG2.jpg +++ /dev/null diff --git a/Skins/Classic/[party]roundBG3.jpg b/Skins/Classic/[party]roundBG3.jpg Binary files differdeleted file mode 100644 index c6b53caf..00000000 --- a/Skins/Classic/[party]roundBG3.jpg +++ /dev/null diff --git a/Skins/Classic/[party]roundBG4.jpg b/Skins/Classic/[party]roundBG4.jpg Binary files differdeleted file mode 100644 index 5e4da0ac..00000000 --- a/Skins/Classic/[party]roundBG4.jpg +++ /dev/null diff --git a/Skins/Classic/[party]roundTeamButton.jpg b/Skins/Classic/[party]roundTeamButton.jpg Binary files differdeleted file mode 100644 index 692db1bd..00000000 --- a/Skins/Classic/[party]roundTeamButton.jpg +++ /dev/null diff --git a/Skins/Classic/[party]scoreBG1.jpg b/Skins/Classic/[party]scoreBG1.jpg Binary files differdeleted file mode 100644 index f558425d..00000000 --- a/Skins/Classic/[party]scoreBG1.jpg +++ /dev/null diff --git a/Skins/Classic/[party]scoreBG2.jpg b/Skins/Classic/[party]scoreBG2.jpg Binary files differdeleted file mode 100644 index 47239d85..00000000 --- a/Skins/Classic/[party]scoreBG2.jpg +++ /dev/null diff --git a/Skins/Classic/[party]scoreDecoration.jpg b/Skins/Classic/[party]scoreDecoration.jpg Binary files differdeleted file mode 100644 index 49204e19..00000000 --- a/Skins/Classic/[party]scoreDecoration.jpg +++ /dev/null diff --git a/Skins/Classic/[party]teamPoints.jpg b/Skins/Classic/[party]teamPoints.jpg Binary files differdeleted file mode 100644 index 96855bc9..00000000 --- a/Skins/Classic/[party]teamPoints.jpg +++ /dev/null diff --git a/Skins/Classic/[party]winDecoration.jpg b/Skins/Classic/[party]winDecoration.jpg Binary files differdeleted file mode 100644 index 1d48ddb3..00000000 --- a/Skins/Classic/[party]winDecoration.jpg +++ /dev/null diff --git a/Skins/Classic/[party]winTeamButton1.jpg b/Skins/Classic/[party]winTeamButton1.jpg Binary files differdeleted file mode 100644 index 10c8d80f..00000000 --- a/Skins/Classic/[party]winTeamButton1.jpg +++ /dev/null diff --git a/Skins/Classic/[party]winTeamButton2.jpg b/Skins/Classic/[party]winTeamButton2.jpg Binary files differdeleted file mode 100644 index fbd85056..00000000 --- a/Skins/Classic/[party]winTeamButton2.jpg +++ /dev/null diff --git a/Skins/Classic/[party]winTeamButton3.jpg b/Skins/Classic/[party]winTeamButton3.jpg Binary files differdeleted file mode 100644 index e8dd9566..00000000 --- a/Skins/Classic/[party]winTeamButton3.jpg +++ /dev/null diff --git a/Skins/Classic/[score]box.jpg b/Skins/Classic/[score]box.jpg Binary files differdeleted file mode 100644 index b37f7e46..00000000 --- a/Skins/Classic/[score]box.jpg +++ /dev/null diff --git a/Skins/Classic/[score]level.jpg b/Skins/Classic/[score]level.jpg Binary files differdeleted file mode 100644 index e47280cb..00000000 --- a/Skins/Classic/[score]level.jpg +++ /dev/null diff --git a/Skins/Classic/[score]levelround.jpg b/Skins/Classic/[score]levelround.jpg Binary files differdeleted file mode 100644 index dbc5b5af..00000000 --- a/Skins/Classic/[score]levelround.jpg +++ /dev/null diff --git a/Skins/Classic/[score]line.jpg b/Skins/Classic/[score]line.jpg Binary files differdeleted file mode 100644 index 2fd951aa..00000000 --- a/Skins/Classic/[score]line.jpg +++ /dev/null diff --git a/Skins/Classic/[sing]LyricsBall.bmp b/Skins/Classic/[sing]LyricsBall.bmp Binary files differdeleted file mode 100644 index 5b7d7943..00000000 --- a/Skins/Classic/[sing]LyricsBall.bmp +++ /dev/null diff --git a/Skins/Classic/[sing]lineBonusPopUp.jpg b/Skins/Classic/[sing]lineBonusPopUp.jpg Binary files differdeleted file mode 100644 index 58d93130..00000000 --- a/Skins/Classic/[sing]lineBonusPopUp.jpg +++ /dev/null diff --git a/Skins/Classic/[sing]lyricsHelpBar.bmp b/Skins/Classic/[sing]lyricsHelpBar.bmp Binary files differdeleted file mode 100644 index 24fa2b52..00000000 --- a/Skins/Classic/[sing]lyricsHelpBar.bmp +++ /dev/null diff --git a/Skins/Classic/[sing]notesBgLeft.bmp b/Skins/Classic/[sing]notesBgLeft.bmp Binary files differdeleted file mode 100644 index 776e567c..00000000 --- a/Skins/Classic/[sing]notesBgLeft.bmp +++ /dev/null diff --git a/Skins/Classic/[sing]notesBgMid.bmp b/Skins/Classic/[sing]notesBgMid.bmp Binary files differdeleted file mode 100644 index 759ac8a3..00000000 --- a/Skins/Classic/[sing]notesBgMid.bmp +++ /dev/null diff --git a/Skins/Classic/[sing]notesBgRight.bmp b/Skins/Classic/[sing]notesBgRight.bmp Binary files differdeleted file mode 100644 index 9b1ffc18..00000000 --- a/Skins/Classic/[sing]notesBgRight.bmp +++ /dev/null diff --git a/Skins/Classic/[sing]notesLeft.bmp b/Skins/Classic/[sing]notesLeft.bmp Binary files differdeleted file mode 100644 index c819849b..00000000 --- a/Skins/Classic/[sing]notesLeft.bmp +++ /dev/null diff --git a/Skins/Classic/[sing]notesMid.bmp b/Skins/Classic/[sing]notesMid.bmp Binary files differdeleted file mode 100644 index 2fdce32d..00000000 --- a/Skins/Classic/[sing]notesMid.bmp +++ /dev/null diff --git a/Skins/Classic/[sing]notesRight.bmp b/Skins/Classic/[sing]notesRight.bmp Binary files differdeleted file mode 100644 index 3241beeb..00000000 --- a/Skins/Classic/[sing]notesRight.bmp +++ /dev/null diff --git a/Skins/Classic/[sing]p.jpg b/Skins/Classic/[sing]p.jpg Binary files differdeleted file mode 100644 index 5217c6b1..00000000 --- a/Skins/Classic/[sing]p.jpg +++ /dev/null diff --git a/Skins/Classic/[sing]scoreBg.jpg b/Skins/Classic/[sing]scoreBg.jpg Binary files differdeleted file mode 100644 index 01d3ca75..00000000 --- a/Skins/Classic/[sing]scoreBg.jpg +++ /dev/null diff --git a/Skins/Classic/[sing]singBarBack.jpg b/Skins/Classic/[sing]singBarBack.jpg Binary files differdeleted file mode 100644 index d7dcd791..00000000 --- a/Skins/Classic/[sing]singBarBack.jpg +++ /dev/null diff --git a/Skins/Classic/[sing]singBarBar.jpg b/Skins/Classic/[sing]singBarBar.jpg Binary files differdeleted file mode 100644 index 4fd9bde9..00000000 --- a/Skins/Classic/[sing]singBarBar.jpg +++ /dev/null diff --git a/Skins/Classic/[sing]singBarFront.jpg b/Skins/Classic/[sing]singBarFront.jpg Binary files differdeleted file mode 100644 index eec27b79..00000000 --- a/Skins/Classic/[sing]singBarFront.jpg +++ /dev/null diff --git a/Skins/Classic/[sing]textBar.jpg b/Skins/Classic/[sing]textBar.jpg Binary files differdeleted file mode 100644 index e2734bce..00000000 --- a/Skins/Classic/[sing]textBar.jpg +++ /dev/null diff --git a/Skins/Classic/[song]BGFade.jpg b/Skins/Classic/[song]BGFade.jpg Binary files differdeleted file mode 100644 index 1d6b80ff..00000000 --- a/Skins/Classic/[song]BGFade.jpg +++ /dev/null diff --git a/Skins/Classic/[song]EqualizerBG.jpg b/Skins/Classic/[song]EqualizerBG.jpg Binary files differdeleted file mode 100644 index 54ff27f2..00000000 --- a/Skins/Classic/[song]EqualizerBG.jpg +++ /dev/null diff --git a/Skins/Classic/[song]selection.jpg b/Skins/Classic/[song]selection.jpg Binary files differdeleted file mode 100644 index b6c0065e..00000000 --- a/Skins/Classic/[song]selection.jpg +++ /dev/null diff --git a/Skins/Classic/[stat]detailBG1.jpg b/Skins/Classic/[stat]detailBG1.jpg Binary files differdeleted file mode 100644 index 120dc483..00000000 --- a/Skins/Classic/[stat]detailBG1.jpg +++ /dev/null diff --git a/Skins/Classic/[stat]mainBG1.jpg b/Skins/Classic/[stat]mainBG1.jpg Binary files differdeleted file mode 100644 index a937b24a..00000000 --- a/Skins/Classic/[stat]mainBG1.jpg +++ /dev/null diff --git a/Skins/Classic/[stat]mainBG2.jpg b/Skins/Classic/[stat]mainBG2.jpg Binary files differdeleted file mode 100644 index 201d49b8..00000000 --- a/Skins/Classic/[stat]mainBG2.jpg +++ /dev/null diff --git a/Skins/Classic/[stat]mainBG3.jpg b/Skins/Classic/[stat]mainBG3.jpg Binary files differdeleted file mode 100644 index 812a8d78..00000000 --- a/Skins/Classic/[stat]mainBG3.jpg +++ /dev/null diff --git a/Skins/Deluxe/Blue.ini b/Skins/Deluxe/Blue.ini deleted file mode 100644 index f752b289..00000000 --- a/Skins/Deluxe/Blue.ini +++ /dev/null @@ -1,192 +0,0 @@ -;0.5.1
-;experimental version
-;if you are using this as a sample for your theme
-;don't be suprised it doesn't work good with newer releases
-
-[Skin]
-Theme=Deluxe
-Name=Blue
-Color=Blue
-
-[Textures]
-
-# # # M A I N # # #
-Button = [main]button.png
-ButtonF = [main]buttonf.jpg
-MainBar = [main]mainBar.png
-SelectBG = [main]selectbg.png
-
-#Backgrounds
-LoadingBG = [bg-load]blue.jpg
-MainBG = [bg-main]blue.jpg
-SongBG = [bg-main]blue.jpg
-ScoreScreenBG = [bg-main]blue.jpg
-Top5BG = [bg-main]blue.jpg
-OptionsBG = [bg-main]blue.jpg
-PartyBG = [bg-main]blue.jpg
-
-#Icons on screen
-SongCD = [icon]cd.png
-MainIcon = [icon]main.png
-MainSearch = [icon]search.png
-IconOption = [icon]options.png
-IconSongMenu = [icon]songmenu.png
-ScoreIcon = [icon]score.png
-PartyIcon = [icon]party.png
-StatIcon = [icon]stats.png
-VideoIcon = [icon]video.png
-
-IconError = [icon]error.png
-IconQuestion = [icon]question.png
-
-# # # S O N G S E L E C E T # # #
-SongSelection1 = [main]songSelection1.png
-SongSelection2 = [main]songSelection2.png
-SongCover = [main]songCover.jpg
-
-
-# # # S I N G # # #
-#the bar where the lyrics reside
-LyricBar = [sing]textBar.png
-
-#this one slides in, to tell you that singing starts immediately
-LyricHelpBar = [sing]lyricsHelpBar.bmp
-
-#the bar behind the timestuff
-TimeBar1 = [sing]timeBarBG.png
-
-#the time progress bar (not skinned in this theme :P )
-TimeBar = [sing]timeBar.jpg
-
-#linebonus, the thing that pop ups at the score
-LineBonusBack = [sing]lineBonusPopUp.png
-
-#Singbar (the thing beneath the scores)
-SingBarBack = [sing]singBarBack.png
-SingBarBar = [sing]singBarBar.png
-SingBarFront = [sing]singBarFront.png
-
-#Background for scores
-ScoreBG = [sing]scoreBg.png
-
-#Background for the P1, P2 and so on
-P = [sing]p.png
-
-#Pointer for lyrics
-Ball = [sing]LyricsBall.bmp
-
-
-# # # S C O R E / T O P 5 # # #
-ScoreBox = [score]box.png
-ScoreGlassBox = [score]glass_box.png
-ScoreLevel = [score]level.png
-ScoreLevelRound = [score]levelround.png
-
-ScoreLevel_Dark = [score]level_dark.png
-ScoreLevel_Dark_Round = [score]level_dark_round.png
-
-ScoreLevel_Light = [score]level_light.png
-ScoreLevel_Light_Round = [score]level_light_round.png
-
-ScoreLevel_Lightest = [score]level_lightest.png
-ScoreLevel_Lightest_Round = [score]level_lightest_round.png
-
-# Boxes near the text, that show what color is for which bar
-ScoreBar_box_lightest = [score]bar_box_lightest.png
-ScoreBar_box_light = [score]bar_box_light.png
-ScoreBar_box_dark = [score]bar_box_dark.png
-
-ScoreEndCap = [score]endcap.png
-ScoreLine = [score]line.png
-PlayerNumberBox = [main]playerNumberBox.jpg
-
-PlayerIDBox01 = [sing.player1]lyric_active.png
-PlayerIDBox02 = [sing.player2]lyric_active.png
-PlayerIDBox03 = [sing.player3]lyric_active.png
-PlayerIDBox04 = [sing.player4]lyric_active.png
-PlayerIDBox05 = [sing.player5]lyric_active.png
-PlayerIDBox06 = [sing.player6]lyric_active.png
-
-# these icons are part of the tango icon set
-# licensed under Creative Commons Attribution Share-Alike license
-# http://tango.freedesktop.org
-Rating_0 = [score]rating_0.png
-Rating_1 = [score]rating_1.png
-Rating_2 = [score]rating_2.png
-Rating_3 = [score]rating_3.png
-Rating_4 = [score]rating_4.png
-Rating_5 = [score]rating_5.png
-Rating_6 = [score]rating_6.png
-# thank you girls and guys!!!
-
-# # # P A R T Y # # #
-Joker =[party]Joker.png
-PartyPlayerButton =[party]playerButton.png
-PartyTeamButton1 =[party]roundTeamButton.png
-PartyTeamButton2 =[party]playerTeamButton.png
-PartyTeamButton3 =[party]winTeamButton1.png
-PartyTeamButton4 =[party]winTeamButton2.png
-PartyTeamButton5 =[party]winTeamButton3.png
-PartyRoundBG1 =[party]roundBG1.png
-PartyRoundBG2 =[party]roundBG2.png
-PartyRoundBG3 =[party]roundBG3.png
-PartyRoundBG4 =[party]roundBG4.png
-HDL_Pointer =[party]pointer.bmp
-PartyTeamPoints =[party]teamPoints.png
-PartyScoreDeco =[party]scoreDecoration.png
-PartyScoreBG1 =[party]scoreBG1.png
-PartyScoreBG2 =[party]scoreBG2.png
-PartyWinDeco1 =[party]winDecoration.png
-PartyWinDeco2 =[party]winDecoration.png
-PartyWinDeco3 =[party]winDecoration.png
-
-# # # S T A T S # # #
-StatMainBG1 = [stat]mainBG1.png
-StatMainBG2 = [stat]mainBG2.png
-StatMainBG3 = [stat]mainBG3.png
-StatDetailBG1 = [stat]detailBG1.png
-
-
-# # # N A V I # # #
-ButtonP = [button]p.png
-ButtonM = [button]m.png
-ButtonJ = [button]j.png
-ButtonAlt = [button]alt.png
-ButtonAZ = [button]az.png
-ButtonEnter = [button]enter.png
-ButtonNavi = [button]navi.png
-ButtonEsc = [button]esc.png
-Button13 = [button]13.png
-
-Leiste1 = [special]bar1.png
-Leiste2 = [special]bar2.png
-
-JumpToBG = [menu]jumpToBg.png
-SongMenuBG = [menu]songMenuBg.png
-SongMenuSelectBG = [menu]songMenuSelectBg.png
-PopUpBG = [menu]popUpBG.png
-
-
-# # # N O T E S # # #
-# sung notes - colorized with playercolors
-GrayLeft = [sing]notesLeft.png
-GrayMid = [sing]notesMid.png
-GrayRight = [sing]notesRight.png
-# unsung notes - colorized with playercolors
-NotePlainLeft = [sing]notesPlainLeft.png
-NotePlainMid = [sing]notesPlainMid.png
-NotePlainRight = [sing]notesPlainRight.png
-# the glow around unsung/sung notes - colorized with playercolors
-NoteBGLeft = [sing]notesBgLeft.png
-NoteBGMid = [sing]notesBgMid.png
-NoteBGRight = [sing]notesBgRight.png
-
-
-# # # E F F E C T S # # #
-NoteStar = [effect]goldenNoteStar.png
-NotePerfectStar = [effect]perfectNoteStar.png
-
-
-# # # dirty helpers # # #
-Rectangle = [helper]rectangle.jpg
-ButtonFade = [helper]buttonFade.png
diff --git a/Skins/Deluxe/Fall.ini b/Skins/Deluxe/Fall.ini deleted file mode 100644 index be195124..00000000 --- a/Skins/Deluxe/Fall.ini +++ /dev/null @@ -1,190 +0,0 @@ -;0.5.1
-;experimental version
-;if you are using this as a sample for your theme
-;don't be suprised it doesn't work good with newer releases
-
-[Skin]
-Theme=Deluxe
-Name=Fall
-Color=Orange
-
-[Textures]
-# # # M A I N # # #
-Button = [main]button.png
-ButtonF = [main]buttonf.jpg
-MainBar = [main]mainBar.png
-SelectBG = [main]selectbg.png
-
-#Backgrounds
-LoadingBG = [bg-load]fall.jpg
-MainBG = [bg-main]fall.jpg
-SongBG = [bg-main]fall.jpg
-ScoreScreenBG = [bg-main]fall.jpg
-Top5BG = [bg-main]fall.jpg
-OptionsBG = [bg-main]fall.jpg
-PartyBG = [bg-main]fall.jpg
-
-#Icons on screen
-SongCD = [icon]cd.png
-MainIcon = [icon]main.png
-MainSearch = [icon]search.png
-IconOption = [icon]options.png
-IconSongMenu = [icon]songmenu.png
-ScoreIcon = [icon]score.png
-PartyIcon = [icon]party.png
-StatIcon = [icon]stats.png
-VideoIcon = [icon]video.png
-
-IconError = [icon]error.png
-IconQuestion = [icon]question.png
-
-# # # S O N G S E L E C E T # # #
-SongSelection1 = [main]songSelection1.png
-SongSelection2 = [main]songSelection2.png
-SongCover = [main]songCover.jpg
-
-
-# # # S I N G # # #
-#the bar where the lyrics reside
-LyricBar = [sing]textBar.png
-
-#this one slides in, to tell you that singing starts immediately
-LyricHelpBar = [sing]lyricsHelpBar.bmp
-
-#the bar behind the timestuff
-TimeBar1 = [sing]timeBarBG.png
-
-#the time progress bar (not skinned in this theme :P )
-TimeBar = [sing]timeBar.jpg
-
-#linebonus, the thing that pop ups at the score
-LineBonusBack = [sing]lineBonusPopUp.png
-
-#Singbar (the thing beneath the scores)
-SingBarBack = [sing]singBarBack.png
-SingBarBar = [sing]singBarBar.png
-SingBarFront = [sing]singBarFront.png
-
-#Background for scores
-ScoreBG = [sing]scoreBg.png
-
-#Background for the P1, P2 and so on
-P = [sing]p.png
-
-#Pointer for lyrics
-Ball = [sing]LyricsBall.bmp
-
-# # # S C O R E / T O P 5 # # #
-ScoreBox = [score]box.png
-ScoreGlassBox = [score]glass_box.png
-ScoreLevel = [score]level.png
-ScoreLevelRound = [score]levelRound.png
-
-ScoreLevel_Dark = [score]level_dark.png
-ScoreLevel_Dark_Round = [score]level_dark_round.png
-
-ScoreLevel_Light = [score]level_light.png
-ScoreLevel_Light_Round = [score]level_light_round.png
-
-ScoreLevel_Lightest = [score]level_lightest.png
-ScoreLevel_Lightest_Round = [score]level_lightest_round.png
-
-# Boxes near the text, that show what color is for which bar
-ScoreBar_box_lightest = [score]bar_box_lightest.png
-ScoreBar_box_light = [score]bar_box_light.png
-ScoreBar_box_dark = [score]bar_box_dark.png
-
-ScoreEndCap = [score]endcap.png
-ScoreLine = [score]line.png
-PlayerNumberBox = [main]playerNumberBox.jpg
-
-PlayerIDBox01 = [sing.player1]lyric_active.png
-PlayerIDBox02 = [sing.player2]lyric_active.png
-PlayerIDBox03 = [sing.player3]lyric_active.png
-PlayerIDBox04 = [sing.player4]lyric_active.png
-PlayerIDBox05 = [sing.player5]lyric_active.png
-PlayerIDBox06 = [sing.player6]lyric_active.png
-
-# these icons are part of the tango icon set
-# licensed under Creative Commons Attribution Share-Alike license
-# http://tango.freedesktop.org
-Rating_0 = [score]rating_0.png
-Rating_1 = [score]rating_1.png
-Rating_2 = [score]rating_2.png
-Rating_3 = [score]rating_3.png
-Rating_4 = [score]rating_4.png
-Rating_5 = [score]rating_5.png
-Rating_6 = [score]rating_6.png
-# thank you girls and guys!!!
-
-# # # P A R T Y # # #
-Joker =[party]Joker.png
-PartyPlayerButton =[party]playerButton.png
-PartyTeamButton1 =[party]roundTeamButton.png
-PartyTeamButton2 =[party]playerTeamButton.png
-PartyTeamButton3 =[party]winTeamButton1.png
-PartyTeamButton4 =[party]winTeamButton2.png
-PartyTeamButton5 =[party]winTeamButton3.png
-PartyRoundBG1 =[party]roundBG1.png
-PartyRoundBG2 =[party]roundBG2.png
-PartyRoundBG3 =[party]roundBG3.png
-PartyRoundBG4 =[party]roundBG4.png
-HDL_Pointer =[party]pointer.bmp
-PartyTeamPoints =[party]teamPoints.png
-PartyScoreDeco =[party]scoreDecoration.png
-PartyScoreBG1 =[party]scoreBG1.png
-PartyScoreBG2 =[party]scoreBG2.png
-PartyWinDeco1 =[party]winDecoration.png
-PartyWinDeco2 =[party]winDecoration.png
-PartyWinDeco3 =[party]winDecoration.png
-
-# # # S T A T S # # #
-StatMainBG1 = [stat]mainBG1.png
-StatMainBG2 = [stat]mainBG2.png
-StatMainBG3 = [stat]mainBG3.png
-StatDetailBG1 = [stat]detailBG1.png
-
-
-# # # N A V I # # #
-ButtonP = [button]p.png
-ButtonM = [button]m.png
-ButtonJ = [button]j.png
-ButtonAlt = [button]alt.png
-ButtonAZ = [button]az.png
-ButtonEnter = [button]enter.png
-ButtonNavi = [button]navi.png
-ButtonEsc = [button]esc.png
-Button13 = [button]13.png
-
-Leiste1 = [special]bar1.png
-Leiste2 = [special]bar2.png
-
-JumpToBG = [menu]jumpToBg.png
-SongMenuBG = [menu]songMenuBg.png
-SongMenuSelectBG = [menu]songMenuSelectBg.png
-PopUpBG = [menu]popUpBG.png
-
-
-# # # N O T E S # # #
-# sung notes - colorized with playercolors
-GrayLeft = [sing]notesLeft.png
-GrayMid = [sing]notesMid.png
-GrayRight = [sing]notesRight.png
-# unsung notes - colorized with playercolors
-NotePlainLeft = [sing]notesPlainLeft.png
-NotePlainMid = [sing]notesPlainMid.png
-NotePlainRight = [sing]notesPlainRight.png
-# the glow around unsung/sung notes - colorized with playercolors
-NoteBGLeft = [sing]notesBgLeft.png
-NoteBGMid = [sing]notesBgMid.png
-NoteBGRight = [sing]notesBgRight.png
-
-
-# # # E F F E C T S # # #
-NoteStar = [effect]goldenNoteStar.png
-NotePerfectStar = [effect]perfectNoteStar.png
-
-
-# # # dirty helpers # # #
-Rectangle = [helper]rectangle.jpg
-ButtonFade = [helper]buttonFade.png
\ No newline at end of file diff --git a/Skins/Deluxe/Summer.ini b/Skins/Deluxe/Summer.ini deleted file mode 100644 index 2e03a934..00000000 --- a/Skins/Deluxe/Summer.ini +++ /dev/null @@ -1,190 +0,0 @@ -;0.5.1
-;experimental version
-;if you are using this as a sample for your theme
-;don't be suprised it doesn't work good with newer releases
-
-[Skin]
-Theme=Deluxe
-Name=Summer
-Color=Blue
-
-[Textures]
-# # # M A I N # # #
-Button = [main]button.png
-ButtonF = [main]buttonf.jpg
-MainBar = [main]mainBar.png
-SelectBG = [main]selectbg.png
-
-#Backgrounds
-LoadingBG = [bg-load]summer.jpg
-MainBG = [bg-main]summer.jpg
-SongBG = [bg-main]summer.jpg
-ScoreScreenBG = [bg-main]summer.jpg
-Top5BG = [bg-main]summer.jpg
-OptionsBG = [bg-main]summer.jpg
-PartyBG = [bg-main]summer.jpg
-
-#Icons on screen
-SongCD = [icon]cd.png
-MainIcon = [icon]main.png
-MainSearch = [icon]search.png
-IconOption = [icon]options.png
-IconSongMenu = [icon]songmenu.png
-ScoreIcon = [icon]score.png
-PartyIcon = [icon]party.png
-StatIcon = [icon]stats.png
-VideoIcon = [icon]video.png
-
-IconError = [icon]error.png
-IconQuestion = [icon]question.png
-
-# # # S O N G S E L E C E T # # #
-SongSelection1 = [main]songSelection1.png
-SongSelection2 = [main]songSelection2.png
-SongCover = [main]songCover.jpg
-
-
-# # # S I N G # # #
-#the bar where the lyrics reside
-LyricBar = [sing]textBar.png
-
-#this one slides in, to tell you that singing starts immediately
-LyricHelpBar = [sing]lyricsHelpBar.bmp
-
-#the bar behind the timestuff
-TimeBar1 = [sing]timeBarBG.png
-
-#the time progress bar (not skinned in this theme :P )
-TimeBar = [sing]timeBar.jpg
-
-#linebonus, the thing that pop ups at the score
-LineBonusBack = [sing]lineBonusPopUp.png
-
-#Singbar (the thing beneath the scores)
-SingBarBack = [sing]singBarBack.png
-SingBarBar = [sing]singBarBar.png
-SingBarFront = [sing]singBarFront.png
-
-#Background for scores
-ScoreBG = [sing]scoreBg.png
-
-#Background for the P1, P2 and so on
-P = [sing]p.png
-
-#Pointer for lyrics
-Ball = [sing]LyricsBall.bmp
-
-# # # S C O R E / T O P 5 # # #
-ScoreBox = [score]box.png
-ScoreGlassBox = [score]glass_box.png
-ScoreLevel = [score]level.png
-ScoreLevelRound = [score]levelRound.png
-
-ScoreLevel_Dark = [score]level_dark.png
-ScoreLevel_Dark_Round = [score]level_dark_round.png
-
-ScoreLevel_Light = [score]level_light.png
-ScoreLevel_Light_Round = [score]level_light_round.png
-
-ScoreLevel_Lightest = [score]level_lightest.png
-ScoreLevel_Lightest_Round = [score]level_lightest_round.png
-
-# Boxes near the text, that show what color is for which bar
-ScoreBar_box_lightest = [score]bar_box_lightest.png
-ScoreBar_box_light = [score]bar_box_light.png
-ScoreBar_box_dark = [score]bar_box_dark.png
-
-ScoreEndCap = [score]endcap.png
-ScoreLine = [score]line.png
-PlayerNumberBox = [main]playerNumberBox.jpg
-
-PlayerIDBox01 = [sing.player1]lyric_active.png
-PlayerIDBox02 = [sing.player2]lyric_active.png
-PlayerIDBox03 = [sing.player3]lyric_active.png
-PlayerIDBox04 = [sing.player4]lyric_active.png
-PlayerIDBox05 = [sing.player5]lyric_active.png
-PlayerIDBox06 = [sing.player6]lyric_active.png
-
-# these icons are part of the tango icon set
-# licensed under Creative Commons Attribution Share-Alike license
-# http://tango.freedesktop.org
-Rating_0 = [score]rating_0.png
-Rating_1 = [score]rating_1.png
-Rating_2 = [score]rating_2.png
-Rating_3 = [score]rating_3.png
-Rating_4 = [score]rating_4.png
-Rating_5 = [score]rating_5.png
-Rating_6 = [score]rating_6.png
-# thank you girls and guys!!!
-
-# # # P A R T Y # # #
-Joker =[party]Joker.png
-PartyPlayerButton =[party]playerButton.png
-PartyTeamButton1 =[party]roundTeamButton.png
-PartyTeamButton2 =[party]playerTeamButton.png
-PartyTeamButton3 =[party]winTeamButton1.png
-PartyTeamButton4 =[party]winTeamButton2.png
-PartyTeamButton5 =[party]winTeamButton3.png
-PartyRoundBG1 =[party]roundBG1.png
-PartyRoundBG2 =[party]roundBG2.png
-PartyRoundBG3 =[party]roundBG3.png
-PartyRoundBG4 =[party]roundBG4.png
-HDL_Pointer =[party]pointer.bmp
-PartyTeamPoints =[party]teamPoints.png
-PartyScoreDeco =[party]scoreDecoration.png
-PartyScoreBG1 =[party]scoreBG1.png
-PartyScoreBG2 =[party]scoreBG2.png
-PartyWinDeco1 =[party]winDecoration.png
-PartyWinDeco2 =[party]winDecoration.png
-PartyWinDeco3 =[party]winDecoration.png
-
-# # # S T A T S # # #
-StatMainBG1 = [stat]mainBG1.png
-StatMainBG2 = [stat]mainBG2.png
-StatMainBG3 = [stat]mainBG3.png
-StatDetailBG1 = [stat]detailBG1.png
-
-
-# # # N A V I # # #
-ButtonP = [button]p.png
-ButtonM = [button]m.png
-ButtonJ = [button]j.png
-ButtonAlt = [button]alt.png
-ButtonAZ = [button]az.png
-ButtonEnter = [button]enter.png
-ButtonNavi = [button]navi.png
-ButtonEsc = [button]esc.png
-Button13 = [button]13.png
-
-Leiste1 = [special]bar1.png
-Leiste2 = [special]bar2.png
-
-JumpToBG = [menu]jumpToBg.png
-SongMenuBG = [menu]songMenuBg.png
-SongMenuSelectBG = [menu]songMenuSelectBg.png
-PopUpBG = [menu]popUpBG.png
-
-
-# # # N O T E S # # #
-# sung notes - colorized with playercolors
-GrayLeft = [sing]notesLeft.png
-GrayMid = [sing]notesMid.png
-GrayRight = [sing]notesRight.png
-# unsung notes - colorized with playercolors
-NotePlainLeft = [sing]notesPlainLeft.png
-NotePlainMid = [sing]notesPlainMid.png
-NotePlainRight = [sing]notesPlainRight.png
-# the glow around unsung/sung notes - colorized with playercolors
-NoteBGLeft = [sing]notesBgLeft.png
-NoteBGMid = [sing]notesBgMid.png
-NoteBGRight = [sing]notesBgRight.png
-
-
-# # # E F F E C T S # # #
-NoteStar = [effect]goldenNoteStar.png
-NotePerfectStar = [effect]perfectNoteStar.png
-
-
-# # # dirty helpers # # #
-Rectangle = [helper]rectangle.jpg
-ButtonFade = [helper]buttonFade.png
diff --git a/Skins/Deluxe/Winter.ini b/Skins/Deluxe/Winter.ini deleted file mode 100644 index a26bfea6..00000000 --- a/Skins/Deluxe/Winter.ini +++ /dev/null @@ -1,191 +0,0 @@ -;0.5.1
-;experimental version
-;if you are using this as a sample for your theme
-;don't be suprised it doesn't work good with newer releases
-
-[Skin]
-Theme=Deluxe
-Name=Winter
-Color=Blue
-
-[Textures]
-# # # M A I N # # #
-Button = [main]button.png
-ButtonF = [main]buttonf.jpg
-MainBar = [main]mainBar.png
-SelectBG = [main]selectbg.png
-
-#Backgrounds
-LoadingBG = [bg-load]winter.jpg
-MainBG = [bg-main]winter.jpg
-SongBG = [bg-main]winter.jpg
-ScoreScreenBG = [bg-main]winter.jpg
-Top5BG = [bg-main]winter.jpg
-OptionsBG = [bg-main]winter.jpg
-PartyBG = [bg-main]winter.jpg
-
-#Icons on screen
-SongCD = [icon]cd.png
-MainIcon = [icon]main.png
-MainSearch = [icon]search.png
-IconOption = [icon]options.png
-IconSongMenu = [icon]songmenu.png
-ScoreIcon = [icon]score.png
-PartyIcon = [icon]party.png
-StatIcon = [icon]stats.png
-VideoIcon = [icon]video.png
-
-IconError = [icon]error.png
-IconQuestion = [icon]question.png
-
-# # # S O N G S E L E C E T # # #
-SongSelection1 = [main]songSelection1.png
-SongSelection2 = [main]songSelection2.png
-SongCover = [main]songCover.jpg
-
-
-# # # S I N G # # #
-#the bar where the lyrics reside
-LyricBar = [sing]textBar.png
-
-#this one slides in, to tell you that singing starts immediately
-LyricHelpBar = [sing]lyricsHelpBar.bmp
-
-#the bar behind the timestuff
-TimeBar1 = [sing]timeBarBG.png
-
-#the time progress bar (not skinned in this theme :P )
-TimeBar = [sing]timeBar.jpg
-
-#linebonus, the thing that pop ups at the score
-LineBonusBack = [sing]lineBonusPopUp.png
-
-#Singbar (the thing beneath the scores)
-SingBarBack = [sing]singBarBack.png
-SingBarBar = [sing]singBarBar.png
-SingBarFront = [sing]singBarFront.png
-
-#Background for scores
-ScoreBG = [sing]scoreBg.png
-
-#Background for the P1, P2 and so on
-P = [sing]p.png
-
-#Pointer for lyrics
-Ball = [sing]LyricsBall.bmp
-
-
-# # # S C O R E / T O P 5 # # #
-ScoreBox = [score]box.png
-ScoreGlassBox = [score]glass_box.png
-ScoreLevel = [score]level.png
-ScoreLevelRound = [score]levelRound.png
-
-ScoreLevel_Dark = [score]level_dark.png
-ScoreLevel_Dark_Round = [score]level_dark_round.png
-
-ScoreLevel_Light = [score]level_light.png
-ScoreLevel_Light_Round = [score]level_light_round.png
-
-ScoreLevel_Lightest = [score]level_lightest.png
-ScoreLevel_Lightest_Round = [score]level_lightest_round.png
-
-# Boxes near the text, that show what color is for which bar
-ScoreBar_box_lightest = [score]bar_box_lightest.png
-ScoreBar_box_light = [score]bar_box_light.png
-ScoreBar_box_dark = [score]bar_box_dark.png
-
-ScoreEndCap = [score]endcap.png
-ScoreLine = [score]line.png
-PlayerNumberBox = [main]playerNumberBox.jpg
-
-PlayerIDBox01 = [sing.player1]lyric_active.png
-PlayerIDBox02 = [sing.player2]lyric_active.png
-PlayerIDBox03 = [sing.player3]lyric_active.png
-PlayerIDBox04 = [sing.player4]lyric_active.png
-PlayerIDBox05 = [sing.player5]lyric_active.png
-PlayerIDBox06 = [sing.player6]lyric_active.png
-
-# these icons are part of the tango icon set
-# licensed under Creative Commons Attribution Share-Alike license
-# http://tango.freedesktop.org
-Rating_0 = [score]rating_0.png
-Rating_1 = [score]rating_1.png
-Rating_2 = [score]rating_2.png
-Rating_3 = [score]rating_3.png
-Rating_4 = [score]rating_4.png
-Rating_5 = [score]rating_5.png
-Rating_6 = [score]rating_6.png
-# thank you girls and guys!!!
-
-# # # P A R T Y # # #
-Joker =[party]Joker.png
-PartyPlayerButton =[party]playerButton.png
-PartyTeamButton1 =[party]roundTeamButton.png
-PartyTeamButton2 =[party]playerTeamButton.png
-PartyTeamButton3 =[party]winTeamButton1.png
-PartyTeamButton4 =[party]winTeamButton2.png
-PartyTeamButton5 =[party]winTeamButton3.png
-PartyRoundBG1 =[party]roundBG1.png
-PartyRoundBG2 =[party]roundBG2.png
-PartyRoundBG3 =[party]roundBG3.png
-PartyRoundBG4 =[party]roundBG4.png
-HDL_Pointer =[party]pointer.bmp
-PartyTeamPoints =[party]teamPoints.png
-PartyScoreDeco =[party]scoreDecoration.png
-PartyScoreBG1 =[party]scoreBG1.png
-PartyScoreBG2 =[party]scoreBG2.png
-PartyWinDeco1 =[party]winDecoration.png
-PartyWinDeco2 =[party]winDecoration.png
-PartyWinDeco3 =[party]winDecoration.png
-
-# # # S T A T S # # #
-StatMainBG1 = [stat]mainBG1.png
-StatMainBG2 = [stat]mainBG2.png
-StatMainBG3 = [stat]mainBG3.png
-StatDetailBG1 = [stat]detailBG1.png
-
-
-# # # N A V I # # #
-ButtonP = [button]p.png
-ButtonM = [button]m.png
-ButtonJ = [button]j.png
-ButtonAlt = [button]alt.png
-ButtonAZ = [button]az.png
-ButtonEnter = [button]enter.png
-ButtonNavi = [button]navi.png
-ButtonEsc = [button]esc.png
-Button13 = [button]13.png
-
-Leiste1 = [special]bar1.png
-Leiste2 = [special]bar2.png
-
-JumpToBG = [menu]jumpToBg.png
-SongMenuBG = [menu]songMenuBg.png
-SongMenuSelectBG = [menu]songMenuSelectBg.png
-PopUpBG = [menu]popUpBG.png
-
-
-# # # N O T E S # # #
-# sung notes - colorized with playercolors
-GrayLeft = [sing]notesLeft.png
-GrayMid = [sing]notesMid.png
-GrayRight = [sing]notesRight.png
-# unsung notes - colorized with playercolors
-NotePlainLeft = [sing]notesPlainLeft.png
-NotePlainMid = [sing]notesPlainMid.png
-NotePlainRight = [sing]notesPlainRight.png
-# the glow around unsung/sung notes - colorized with playercolors
-NoteBGLeft = [sing]notesBgLeft.png
-NoteBGMid = [sing]notesBgMid.png
-NoteBGRight = [sing]notesBgRight.png
-
-
-# # # E F F E C T S # # #
-NoteStar = [effect]goldenNoteStar.png
-NotePerfectStar = [effect]perfectNoteStar.png
-
-
-# # # dirty helpers # # #
-Rectangle = [helper]rectangle.jpg
-ButtonFade = [helper]buttonFade.png
diff --git a/Skins/Deluxe/[bg-load]blue.jpg b/Skins/Deluxe/[bg-load]blue.jpg Binary files differdeleted file mode 100644 index bea672c4..00000000 --- a/Skins/Deluxe/[bg-load]blue.jpg +++ /dev/null diff --git a/Skins/Deluxe/[bg-load]fall.jpg b/Skins/Deluxe/[bg-load]fall.jpg Binary files differdeleted file mode 100644 index d205a4e4..00000000 --- a/Skins/Deluxe/[bg-load]fall.jpg +++ /dev/null diff --git a/Skins/Deluxe/[bg-load]summer.jpg b/Skins/Deluxe/[bg-load]summer.jpg Binary files differdeleted file mode 100644 index af7fdaa7..00000000 --- a/Skins/Deluxe/[bg-load]summer.jpg +++ /dev/null diff --git a/Skins/Deluxe/[bg-load]winter.jpg b/Skins/Deluxe/[bg-load]winter.jpg Binary files differdeleted file mode 100644 index 826c22a7..00000000 --- a/Skins/Deluxe/[bg-load]winter.jpg +++ /dev/null diff --git a/Skins/Deluxe/[bg-main]blue.jpg b/Skins/Deluxe/[bg-main]blue.jpg Binary files differdeleted file mode 100644 index 67c4cbbe..00000000 --- a/Skins/Deluxe/[bg-main]blue.jpg +++ /dev/null diff --git a/Skins/Deluxe/[bg-main]fall.jpg b/Skins/Deluxe/[bg-main]fall.jpg Binary files differdeleted file mode 100644 index e4736d99..00000000 --- a/Skins/Deluxe/[bg-main]fall.jpg +++ /dev/null diff --git a/Skins/Deluxe/[bg-main]summer.jpg b/Skins/Deluxe/[bg-main]summer.jpg Binary files differdeleted file mode 100644 index 9939dfcd..00000000 --- a/Skins/Deluxe/[bg-main]summer.jpg +++ /dev/null diff --git a/Skins/Deluxe/[bg-main]winter.jpg b/Skins/Deluxe/[bg-main]winter.jpg Binary files differdeleted file mode 100644 index 75cefa82..00000000 --- a/Skins/Deluxe/[bg-main]winter.jpg +++ /dev/null diff --git a/Skins/Deluxe/[button]13.png b/Skins/Deluxe/[button]13.png Binary files differdeleted file mode 100644 index c7ad98cd..00000000 --- a/Skins/Deluxe/[button]13.png +++ /dev/null diff --git a/Skins/Deluxe/[button]alt.png b/Skins/Deluxe/[button]alt.png Binary files differdeleted file mode 100644 index a7c08b31..00000000 --- a/Skins/Deluxe/[button]alt.png +++ /dev/null diff --git a/Skins/Deluxe/[button]az.png b/Skins/Deluxe/[button]az.png Binary files differdeleted file mode 100644 index 09158c47..00000000 --- a/Skins/Deluxe/[button]az.png +++ /dev/null diff --git a/Skins/Deluxe/[button]enter.png b/Skins/Deluxe/[button]enter.png Binary files differdeleted file mode 100644 index a51bd574..00000000 --- a/Skins/Deluxe/[button]enter.png +++ /dev/null diff --git a/Skins/Deluxe/[button]esc.png b/Skins/Deluxe/[button]esc.png Binary files differdeleted file mode 100644 index 817b9bea..00000000 --- a/Skins/Deluxe/[button]esc.png +++ /dev/null diff --git a/Skins/Deluxe/[button]j.png b/Skins/Deluxe/[button]j.png Binary files differdeleted file mode 100644 index 22f05306..00000000 --- a/Skins/Deluxe/[button]j.png +++ /dev/null diff --git a/Skins/Deluxe/[button]m.png b/Skins/Deluxe/[button]m.png Binary files differdeleted file mode 100644 index a9783355..00000000 --- a/Skins/Deluxe/[button]m.png +++ /dev/null diff --git a/Skins/Deluxe/[button]navi.png b/Skins/Deluxe/[button]navi.png Binary files differdeleted file mode 100644 index 7c9c8c73..00000000 --- a/Skins/Deluxe/[button]navi.png +++ /dev/null diff --git a/Skins/Deluxe/[button]p.png b/Skins/Deluxe/[button]p.png Binary files differdeleted file mode 100644 index b93e05b1..00000000 --- a/Skins/Deluxe/[button]p.png +++ /dev/null diff --git a/Skins/Deluxe/[effect]goldenNoteStar.png b/Skins/Deluxe/[effect]goldenNoteStar.png Binary files differdeleted file mode 100644 index 7bd6225f..00000000 --- a/Skins/Deluxe/[effect]goldenNoteStar.png +++ /dev/null diff --git a/Skins/Deluxe/[effect]perfectNoteStar.png b/Skins/Deluxe/[effect]perfectNoteStar.png Binary files differdeleted file mode 100644 index 99132c39..00000000 --- a/Skins/Deluxe/[effect]perfectNoteStar.png +++ /dev/null diff --git a/Skins/Deluxe/[helper]buttonFade.png b/Skins/Deluxe/[helper]buttonFade.png Binary files differdeleted file mode 100644 index 07cda41c..00000000 --- a/Skins/Deluxe/[helper]buttonFade.png +++ /dev/null diff --git a/Skins/Deluxe/[helper]rectangle.jpg b/Skins/Deluxe/[helper]rectangle.jpg Binary files differdeleted file mode 100644 index e03f98fc..00000000 --- a/Skins/Deluxe/[helper]rectangle.jpg +++ /dev/null diff --git a/Skins/Deluxe/[icon]cd.png b/Skins/Deluxe/[icon]cd.png Binary files differdeleted file mode 100644 index 2633d235..00000000 --- a/Skins/Deluxe/[icon]cd.png +++ /dev/null diff --git a/Skins/Deluxe/[icon]error.png b/Skins/Deluxe/[icon]error.png Binary files differdeleted file mode 100644 index f952f3fa..00000000 --- a/Skins/Deluxe/[icon]error.png +++ /dev/null diff --git a/Skins/Deluxe/[icon]main.png b/Skins/Deluxe/[icon]main.png Binary files differdeleted file mode 100644 index 0dabcd77..00000000 --- a/Skins/Deluxe/[icon]main.png +++ /dev/null diff --git a/Skins/Deluxe/[icon]options.png b/Skins/Deluxe/[icon]options.png Binary files differdeleted file mode 100644 index 9fac0bfd..00000000 --- a/Skins/Deluxe/[icon]options.png +++ /dev/null diff --git a/Skins/Deluxe/[icon]party.png b/Skins/Deluxe/[icon]party.png Binary files differdeleted file mode 100644 index e23230e3..00000000 --- a/Skins/Deluxe/[icon]party.png +++ /dev/null diff --git a/Skins/Deluxe/[icon]question.png b/Skins/Deluxe/[icon]question.png Binary files differdeleted file mode 100644 index a72a5c43..00000000 --- a/Skins/Deluxe/[icon]question.png +++ /dev/null diff --git a/Skins/Deluxe/[icon]score.png b/Skins/Deluxe/[icon]score.png Binary files differdeleted file mode 100644 index ccc3d8ff..00000000 --- a/Skins/Deluxe/[icon]score.png +++ /dev/null diff --git a/Skins/Deluxe/[icon]search.png b/Skins/Deluxe/[icon]search.png Binary files differdeleted file mode 100644 index f91bd284..00000000 --- a/Skins/Deluxe/[icon]search.png +++ /dev/null diff --git a/Skins/Deluxe/[icon]songmenu.png b/Skins/Deluxe/[icon]songmenu.png Binary files differdeleted file mode 100644 index 623d5339..00000000 --- a/Skins/Deluxe/[icon]songmenu.png +++ /dev/null diff --git a/Skins/Deluxe/[icon]stats.png b/Skins/Deluxe/[icon]stats.png Binary files differdeleted file mode 100644 index d8e5eac1..00000000 --- a/Skins/Deluxe/[icon]stats.png +++ /dev/null diff --git a/Skins/Deluxe/[icon]video.png b/Skins/Deluxe/[icon]video.png Binary files differdeleted file mode 100644 index 9bd65f86..00000000 --- a/Skins/Deluxe/[icon]video.png +++ /dev/null diff --git a/Skins/Deluxe/[main]button.png b/Skins/Deluxe/[main]button.png Binary files differdeleted file mode 100644 index f4110523..00000000 --- a/Skins/Deluxe/[main]button.png +++ /dev/null diff --git a/Skins/Deluxe/[main]buttonf.jpg b/Skins/Deluxe/[main]buttonf.jpg Binary files differdeleted file mode 100644 index d844add5..00000000 --- a/Skins/Deluxe/[main]buttonf.jpg +++ /dev/null diff --git a/Skins/Deluxe/[main]mainBar.png b/Skins/Deluxe/[main]mainBar.png Binary files differdeleted file mode 100644 index 87f09090..00000000 --- a/Skins/Deluxe/[main]mainBar.png +++ /dev/null diff --git a/Skins/Deluxe/[main]playerNumberBox.png b/Skins/Deluxe/[main]playerNumberBox.png Binary files differdeleted file mode 100644 index 3336ef56..00000000 --- a/Skins/Deluxe/[main]playerNumberBox.png +++ /dev/null diff --git a/Skins/Deluxe/[main]selectbg.png b/Skins/Deluxe/[main]selectbg.png Binary files differdeleted file mode 100644 index d3b02dbb..00000000 --- a/Skins/Deluxe/[main]selectbg.png +++ /dev/null diff --git a/Skins/Deluxe/[main]songCover.jpg b/Skins/Deluxe/[main]songCover.jpg Binary files differdeleted file mode 100644 index 426bf22d..00000000 --- a/Skins/Deluxe/[main]songCover.jpg +++ /dev/null diff --git a/Skins/Deluxe/[main]songSelection1.png b/Skins/Deluxe/[main]songSelection1.png Binary files differdeleted file mode 100644 index 7d7b3939..00000000 --- a/Skins/Deluxe/[main]songSelection1.png +++ /dev/null diff --git a/Skins/Deluxe/[main]songSelection2.png b/Skins/Deluxe/[main]songSelection2.png Binary files differdeleted file mode 100644 index 2a1808ac..00000000 --- a/Skins/Deluxe/[main]songSelection2.png +++ /dev/null diff --git a/Skins/Deluxe/[menu]PopUpBg.png b/Skins/Deluxe/[menu]PopUpBg.png Binary files differdeleted file mode 100644 index c9093af7..00000000 --- a/Skins/Deluxe/[menu]PopUpBg.png +++ /dev/null diff --git a/Skins/Deluxe/[menu]PopUpFg.png b/Skins/Deluxe/[menu]PopUpFg.png Binary files differdeleted file mode 100644 index 2c9785b4..00000000 --- a/Skins/Deluxe/[menu]PopUpFg.png +++ /dev/null diff --git a/Skins/Deluxe/[menu]jumpToBg.png b/Skins/Deluxe/[menu]jumpToBg.png Binary files differdeleted file mode 100644 index 8e3a3a00..00000000 --- a/Skins/Deluxe/[menu]jumpToBg.png +++ /dev/null diff --git a/Skins/Deluxe/[menu]songMenuBg.png b/Skins/Deluxe/[menu]songMenuBg.png Binary files differdeleted file mode 100644 index 92beff8e..00000000 --- a/Skins/Deluxe/[menu]songMenuBg.png +++ /dev/null diff --git a/Skins/Deluxe/[menu]songMenuSelectBg.png b/Skins/Deluxe/[menu]songMenuSelectBg.png Binary files differdeleted file mode 100644 index 8ff5eef8..00000000 --- a/Skins/Deluxe/[menu]songMenuSelectBg.png +++ /dev/null diff --git a/Skins/Deluxe/[party]Joker.png b/Skins/Deluxe/[party]Joker.png Binary files differdeleted file mode 100644 index 6f7c1208..00000000 --- a/Skins/Deluxe/[party]Joker.png +++ /dev/null diff --git a/Skins/Deluxe/[party]playerButton.png b/Skins/Deluxe/[party]playerButton.png Binary files differdeleted file mode 100644 index e1247e50..00000000 --- a/Skins/Deluxe/[party]playerButton.png +++ /dev/null diff --git a/Skins/Deluxe/[party]playerTeamButton.png b/Skins/Deluxe/[party]playerTeamButton.png Binary files differdeleted file mode 100644 index add685d0..00000000 --- a/Skins/Deluxe/[party]playerTeamButton.png +++ /dev/null diff --git a/Skins/Deluxe/[party]pointer.bmp b/Skins/Deluxe/[party]pointer.bmp Binary files differdeleted file mode 100644 index 88bbcc3d..00000000 --- a/Skins/Deluxe/[party]pointer.bmp +++ /dev/null diff --git a/Skins/Deluxe/[party]roundBG1.png b/Skins/Deluxe/[party]roundBG1.png Binary files differdeleted file mode 100644 index 64df6329..00000000 --- a/Skins/Deluxe/[party]roundBG1.png +++ /dev/null diff --git a/Skins/Deluxe/[party]roundBG2.png b/Skins/Deluxe/[party]roundBG2.png Binary files differdeleted file mode 100644 index a2780e2f..00000000 --- a/Skins/Deluxe/[party]roundBG2.png +++ /dev/null diff --git a/Skins/Deluxe/[party]roundBG3.png b/Skins/Deluxe/[party]roundBG3.png Binary files differdeleted file mode 100644 index 7a1d02d9..00000000 --- a/Skins/Deluxe/[party]roundBG3.png +++ /dev/null diff --git a/Skins/Deluxe/[party]roundBG4.png b/Skins/Deluxe/[party]roundBG4.png Binary files differdeleted file mode 100644 index 81ccfd8e..00000000 --- a/Skins/Deluxe/[party]roundBG4.png +++ /dev/null diff --git a/Skins/Deluxe/[party]roundTeamButton.png b/Skins/Deluxe/[party]roundTeamButton.png Binary files differdeleted file mode 100644 index f31d4296..00000000 --- a/Skins/Deluxe/[party]roundTeamButton.png +++ /dev/null diff --git a/Skins/Deluxe/[party]scoreBG1.png b/Skins/Deluxe/[party]scoreBG1.png Binary files differdeleted file mode 100644 index 28496bcf..00000000 --- a/Skins/Deluxe/[party]scoreBG1.png +++ /dev/null diff --git a/Skins/Deluxe/[party]scoreBG2.png b/Skins/Deluxe/[party]scoreBG2.png Binary files differdeleted file mode 100644 index e6417915..00000000 --- a/Skins/Deluxe/[party]scoreBG2.png +++ /dev/null diff --git a/Skins/Deluxe/[party]scoreDecoration.png b/Skins/Deluxe/[party]scoreDecoration.png Binary files differdeleted file mode 100644 index 388077e6..00000000 --- a/Skins/Deluxe/[party]scoreDecoration.png +++ /dev/null diff --git a/Skins/Deluxe/[party]teamPoints.png b/Skins/Deluxe/[party]teamPoints.png Binary files differdeleted file mode 100644 index 83c4f7a8..00000000 --- a/Skins/Deluxe/[party]teamPoints.png +++ /dev/null diff --git a/Skins/Deluxe/[party]winDecoration.png b/Skins/Deluxe/[party]winDecoration.png Binary files differdeleted file mode 100644 index f84dbc8a..00000000 --- a/Skins/Deluxe/[party]winDecoration.png +++ /dev/null diff --git a/Skins/Deluxe/[party]winTeamButton1.png b/Skins/Deluxe/[party]winTeamButton1.png Binary files differdeleted file mode 100644 index 9e7dba31..00000000 --- a/Skins/Deluxe/[party]winTeamButton1.png +++ /dev/null diff --git a/Skins/Deluxe/[party]winTeamButton2.png b/Skins/Deluxe/[party]winTeamButton2.png Binary files differdeleted file mode 100644 index 229dbbd3..00000000 --- a/Skins/Deluxe/[party]winTeamButton2.png +++ /dev/null diff --git a/Skins/Deluxe/[party]winTeamButton3.png b/Skins/Deluxe/[party]winTeamButton3.png Binary files differdeleted file mode 100644 index 53bc487a..00000000 --- a/Skins/Deluxe/[party]winTeamButton3.png +++ /dev/null diff --git a/Skins/Deluxe/[score]Line.png b/Skins/Deluxe/[score]Line.png Binary files differdeleted file mode 100644 index 954caf94..00000000 --- a/Skins/Deluxe/[score]Line.png +++ /dev/null diff --git a/Skins/Deluxe/[score]bar_box_dark.png b/Skins/Deluxe/[score]bar_box_dark.png Binary files differdeleted file mode 100644 index e4fbfa41..00000000 --- a/Skins/Deluxe/[score]bar_box_dark.png +++ /dev/null diff --git a/Skins/Deluxe/[score]bar_box_light.png b/Skins/Deluxe/[score]bar_box_light.png Binary files differdeleted file mode 100644 index ddc17ed8..00000000 --- a/Skins/Deluxe/[score]bar_box_light.png +++ /dev/null diff --git a/Skins/Deluxe/[score]bar_box_lightest.png b/Skins/Deluxe/[score]bar_box_lightest.png Binary files differdeleted file mode 100644 index 995bb9ef..00000000 --- a/Skins/Deluxe/[score]bar_box_lightest.png +++ /dev/null diff --git a/Skins/Deluxe/[score]box.png b/Skins/Deluxe/[score]box.png Binary files differdeleted file mode 100644 index 71a0cee6..00000000 --- a/Skins/Deluxe/[score]box.png +++ /dev/null diff --git a/Skins/Deluxe/[score]endcap.png b/Skins/Deluxe/[score]endcap.png Binary files differdeleted file mode 100644 index 3cccd2e1..00000000 --- a/Skins/Deluxe/[score]endcap.png +++ /dev/null diff --git a/Skins/Deluxe/[score]glass_box.png b/Skins/Deluxe/[score]glass_box.png Binary files differdeleted file mode 100644 index c0cf2a9c..00000000 --- a/Skins/Deluxe/[score]glass_box.png +++ /dev/null diff --git a/Skins/Deluxe/[score]level.png b/Skins/Deluxe/[score]level.png Binary files differdeleted file mode 100644 index 1f627560..00000000 --- a/Skins/Deluxe/[score]level.png +++ /dev/null diff --git a/Skins/Deluxe/[score]levelRound.png b/Skins/Deluxe/[score]levelRound.png Binary files differdeleted file mode 100644 index 2bc7a6b8..00000000 --- a/Skins/Deluxe/[score]levelRound.png +++ /dev/null diff --git a/Skins/Deluxe/[score]level_dark.png b/Skins/Deluxe/[score]level_dark.png Binary files differdeleted file mode 100644 index da4fd407..00000000 --- a/Skins/Deluxe/[score]level_dark.png +++ /dev/null diff --git a/Skins/Deluxe/[score]level_dark_round.png b/Skins/Deluxe/[score]level_dark_round.png Binary files differdeleted file mode 100644 index de239cb2..00000000 --- a/Skins/Deluxe/[score]level_dark_round.png +++ /dev/null diff --git a/Skins/Deluxe/[score]level_light.png b/Skins/Deluxe/[score]level_light.png Binary files differdeleted file mode 100644 index 1c1c8a4d..00000000 --- a/Skins/Deluxe/[score]level_light.png +++ /dev/null diff --git a/Skins/Deluxe/[score]level_light_round.png b/Skins/Deluxe/[score]level_light_round.png Binary files differdeleted file mode 100644 index 641151a5..00000000 --- a/Skins/Deluxe/[score]level_light_round.png +++ /dev/null diff --git a/Skins/Deluxe/[score]level_lightest.png b/Skins/Deluxe/[score]level_lightest.png Binary files differdeleted file mode 100644 index f02fdf7b..00000000 --- a/Skins/Deluxe/[score]level_lightest.png +++ /dev/null diff --git a/Skins/Deluxe/[score]level_lightest_round.png b/Skins/Deluxe/[score]level_lightest_round.png Binary files differdeleted file mode 100644 index 9f1bb09e..00000000 --- a/Skins/Deluxe/[score]level_lightest_round.png +++ /dev/null diff --git a/Skins/Deluxe/[score]rating_0.png b/Skins/Deluxe/[score]rating_0.png Binary files differdeleted file mode 100644 index feb7e472..00000000 --- a/Skins/Deluxe/[score]rating_0.png +++ /dev/null diff --git a/Skins/Deluxe/[score]rating_1.png b/Skins/Deluxe/[score]rating_1.png Binary files differdeleted file mode 100644 index 4a143d83..00000000 --- a/Skins/Deluxe/[score]rating_1.png +++ /dev/null diff --git a/Skins/Deluxe/[score]rating_2.png b/Skins/Deluxe/[score]rating_2.png Binary files differdeleted file mode 100644 index 67258e22..00000000 --- a/Skins/Deluxe/[score]rating_2.png +++ /dev/null diff --git a/Skins/Deluxe/[score]rating_3.png b/Skins/Deluxe/[score]rating_3.png Binary files differdeleted file mode 100644 index fe0b1662..00000000 --- a/Skins/Deluxe/[score]rating_3.png +++ /dev/null diff --git a/Skins/Deluxe/[score]rating_4.png b/Skins/Deluxe/[score]rating_4.png Binary files differdeleted file mode 100644 index 5695f8fd..00000000 --- a/Skins/Deluxe/[score]rating_4.png +++ /dev/null diff --git a/Skins/Deluxe/[score]rating_5.png b/Skins/Deluxe/[score]rating_5.png Binary files differdeleted file mode 100644 index 38ed92c3..00000000 --- a/Skins/Deluxe/[score]rating_5.png +++ /dev/null diff --git a/Skins/Deluxe/[score]rating_6.png b/Skins/Deluxe/[score]rating_6.png Binary files differdeleted file mode 100644 index f8706de3..00000000 --- a/Skins/Deluxe/[score]rating_6.png +++ /dev/null diff --git a/Skins/Deluxe/[sing.player1]lyric_active.png b/Skins/Deluxe/[sing.player1]lyric_active.png Binary files differdeleted file mode 100644 index 089c8c5e..00000000 --- a/Skins/Deluxe/[sing.player1]lyric_active.png +++ /dev/null diff --git a/Skins/Deluxe/[sing.player1]lyric_inactive.png b/Skins/Deluxe/[sing.player1]lyric_inactive.png Binary files differdeleted file mode 100644 index a349007d..00000000 --- a/Skins/Deluxe/[sing.player1]lyric_inactive.png +++ /dev/null diff --git a/Skins/Deluxe/[sing.player2]lyric_active.png b/Skins/Deluxe/[sing.player2]lyric_active.png Binary files differdeleted file mode 100644 index 509767fa..00000000 --- a/Skins/Deluxe/[sing.player2]lyric_active.png +++ /dev/null diff --git a/Skins/Deluxe/[sing.player2]lyric_inactive.png b/Skins/Deluxe/[sing.player2]lyric_inactive.png Binary files differdeleted file mode 100644 index ac40ec61..00000000 --- a/Skins/Deluxe/[sing.player2]lyric_inactive.png +++ /dev/null diff --git a/Skins/Deluxe/[sing.player3]lyric_active.png b/Skins/Deluxe/[sing.player3]lyric_active.png Binary files differdeleted file mode 100644 index 7b130ac5..00000000 --- a/Skins/Deluxe/[sing.player3]lyric_active.png +++ /dev/null diff --git a/Skins/Deluxe/[sing.player3]lyric_inactive.png b/Skins/Deluxe/[sing.player3]lyric_inactive.png Binary files differdeleted file mode 100644 index c5a00600..00000000 --- a/Skins/Deluxe/[sing.player3]lyric_inactive.png +++ /dev/null diff --git a/Skins/Deluxe/[sing.player4]lyric_active.png b/Skins/Deluxe/[sing.player4]lyric_active.png Binary files differdeleted file mode 100644 index 993041fd..00000000 --- a/Skins/Deluxe/[sing.player4]lyric_active.png +++ /dev/null diff --git a/Skins/Deluxe/[sing.player4]lyric_inactive.png b/Skins/Deluxe/[sing.player4]lyric_inactive.png Binary files differdeleted file mode 100644 index f09669b2..00000000 --- a/Skins/Deluxe/[sing.player4]lyric_inactive.png +++ /dev/null diff --git a/Skins/Deluxe/[sing.player5]lyric_active.png b/Skins/Deluxe/[sing.player5]lyric_active.png Binary files differdeleted file mode 100644 index 631dc9c3..00000000 --- a/Skins/Deluxe/[sing.player5]lyric_active.png +++ /dev/null diff --git a/Skins/Deluxe/[sing.player5]lyric_inactive.png b/Skins/Deluxe/[sing.player5]lyric_inactive.png Binary files differdeleted file mode 100644 index 716071e8..00000000 --- a/Skins/Deluxe/[sing.player5]lyric_inactive.png +++ /dev/null diff --git a/Skins/Deluxe/[sing.player6]lyric_active.png b/Skins/Deluxe/[sing.player6]lyric_active.png Binary files differdeleted file mode 100644 index 65133d03..00000000 --- a/Skins/Deluxe/[sing.player6]lyric_active.png +++ /dev/null diff --git a/Skins/Deluxe/[sing.player6]lyric_inactive.png b/Skins/Deluxe/[sing.player6]lyric_inactive.png Binary files differdeleted file mode 100644 index 0c5f34d3..00000000 --- a/Skins/Deluxe/[sing.player6]lyric_inactive.png +++ /dev/null diff --git a/Skins/Deluxe/[sing]LyricsBall.bmp b/Skins/Deluxe/[sing]LyricsBall.bmp Binary files differdeleted file mode 100644 index 5b7d7943..00000000 --- a/Skins/Deluxe/[sing]LyricsBall.bmp +++ /dev/null diff --git a/Skins/Deluxe/[sing]lineBonusPopUp.png b/Skins/Deluxe/[sing]lineBonusPopUp.png Binary files differdeleted file mode 100644 index c7bd0a41..00000000 --- a/Skins/Deluxe/[sing]lineBonusPopUp.png +++ /dev/null diff --git a/Skins/Deluxe/[sing]lyricsHelpBar.bmp b/Skins/Deluxe/[sing]lyricsHelpBar.bmp Binary files differdeleted file mode 100644 index 87a22b6b..00000000 --- a/Skins/Deluxe/[sing]lyricsHelpBar.bmp +++ /dev/null diff --git a/Skins/Deluxe/[sing]notesBgLeft.png b/Skins/Deluxe/[sing]notesBgLeft.png Binary files differdeleted file mode 100644 index 9fe2621c..00000000 --- a/Skins/Deluxe/[sing]notesBgLeft.png +++ /dev/null diff --git a/Skins/Deluxe/[sing]notesBgMid.png b/Skins/Deluxe/[sing]notesBgMid.png Binary files differdeleted file mode 100644 index 612da5d3..00000000 --- a/Skins/Deluxe/[sing]notesBgMid.png +++ /dev/null diff --git a/Skins/Deluxe/[sing]notesBgRight.png b/Skins/Deluxe/[sing]notesBgRight.png Binary files differdeleted file mode 100644 index a6f42c33..00000000 --- a/Skins/Deluxe/[sing]notesBgRight.png +++ /dev/null diff --git a/Skins/Deluxe/[sing]notesLeft.png b/Skins/Deluxe/[sing]notesLeft.png Binary files differdeleted file mode 100644 index 3a404b9c..00000000 --- a/Skins/Deluxe/[sing]notesLeft.png +++ /dev/null diff --git a/Skins/Deluxe/[sing]notesMid.png b/Skins/Deluxe/[sing]notesMid.png Binary files differdeleted file mode 100644 index 8769d01a..00000000 --- a/Skins/Deluxe/[sing]notesMid.png +++ /dev/null diff --git a/Skins/Deluxe/[sing]notesPlainLeft.png b/Skins/Deluxe/[sing]notesPlainLeft.png Binary files differdeleted file mode 100644 index 1a94a9d8..00000000 --- a/Skins/Deluxe/[sing]notesPlainLeft.png +++ /dev/null diff --git a/Skins/Deluxe/[sing]notesPlainMid.png b/Skins/Deluxe/[sing]notesPlainMid.png Binary files differdeleted file mode 100644 index 7fc64282..00000000 --- a/Skins/Deluxe/[sing]notesPlainMid.png +++ /dev/null diff --git a/Skins/Deluxe/[sing]notesPlainRight.png b/Skins/Deluxe/[sing]notesPlainRight.png Binary files differdeleted file mode 100644 index ff8bb502..00000000 --- a/Skins/Deluxe/[sing]notesPlainRight.png +++ /dev/null diff --git a/Skins/Deluxe/[sing]notesRight.png b/Skins/Deluxe/[sing]notesRight.png Binary files differdeleted file mode 100644 index 8dc40cc8..00000000 --- a/Skins/Deluxe/[sing]notesRight.png +++ /dev/null diff --git a/Skins/Deluxe/[sing]p.png b/Skins/Deluxe/[sing]p.png Binary files differdeleted file mode 100644 index 7458d8e5..00000000 --- a/Skins/Deluxe/[sing]p.png +++ /dev/null diff --git a/Skins/Deluxe/[sing]scoreBg.jpg b/Skins/Deluxe/[sing]scoreBg.jpg Binary files differdeleted file mode 100644 index 4a4459f6..00000000 --- a/Skins/Deluxe/[sing]scoreBg.jpg +++ /dev/null diff --git a/Skins/Deluxe/[sing]scoreBg.png b/Skins/Deluxe/[sing]scoreBg.png Binary files differdeleted file mode 100644 index db6ba67f..00000000 --- a/Skins/Deluxe/[sing]scoreBg.png +++ /dev/null diff --git a/Skins/Deluxe/[sing]singBarBack.png b/Skins/Deluxe/[sing]singBarBack.png Binary files differdeleted file mode 100644 index 14d2ba42..00000000 --- a/Skins/Deluxe/[sing]singBarBack.png +++ /dev/null diff --git a/Skins/Deluxe/[sing]singBarBar.jpg b/Skins/Deluxe/[sing]singBarBar.jpg Binary files differdeleted file mode 100644 index 4fd9bde9..00000000 --- a/Skins/Deluxe/[sing]singBarBar.jpg +++ /dev/null diff --git a/Skins/Deluxe/[sing]singBarBar.png b/Skins/Deluxe/[sing]singBarBar.png Binary files differdeleted file mode 100644 index 9c57057b..00000000 --- a/Skins/Deluxe/[sing]singBarBar.png +++ /dev/null diff --git a/Skins/Deluxe/[sing]singBarFront.png b/Skins/Deluxe/[sing]singBarFront.png Binary files differdeleted file mode 100644 index 42477c5a..00000000 --- a/Skins/Deluxe/[sing]singBarFront.png +++ /dev/null diff --git a/Skins/Deluxe/[sing]textBar.png b/Skins/Deluxe/[sing]textBar.png Binary files differdeleted file mode 100644 index 377cd0c2..00000000 --- a/Skins/Deluxe/[sing]textBar.png +++ /dev/null diff --git a/Skins/Deluxe/[sing]timeBar.jpg b/Skins/Deluxe/[sing]timeBar.jpg Binary files differdeleted file mode 100644 index cc5cb552..00000000 --- a/Skins/Deluxe/[sing]timeBar.jpg +++ /dev/null diff --git a/Skins/Deluxe/[sing]timeBarBG.png b/Skins/Deluxe/[sing]timeBarBG.png Binary files differdeleted file mode 100644 index 6094fdf3..00000000 --- a/Skins/Deluxe/[sing]timeBarBG.png +++ /dev/null diff --git a/Skins/Deluxe/[special]bar1.png b/Skins/Deluxe/[special]bar1.png Binary files differdeleted file mode 100644 index 415004db..00000000 --- a/Skins/Deluxe/[special]bar1.png +++ /dev/null diff --git a/Skins/Deluxe/[special]bar2.png b/Skins/Deluxe/[special]bar2.png Binary files differdeleted file mode 100644 index 13c1c242..00000000 --- a/Skins/Deluxe/[special]bar2.png +++ /dev/null diff --git a/Skins/Deluxe/[stat]detailBG1.png b/Skins/Deluxe/[stat]detailBG1.png Binary files differdeleted file mode 100644 index 8abdcfec..00000000 --- a/Skins/Deluxe/[stat]detailBG1.png +++ /dev/null diff --git a/Skins/Deluxe/[stat]mainBG1.png b/Skins/Deluxe/[stat]mainBG1.png Binary files differdeleted file mode 100644 index 3f5a4190..00000000 --- a/Skins/Deluxe/[stat]mainBG1.png +++ /dev/null diff --git a/Skins/Deluxe/[stat]mainBG2.png b/Skins/Deluxe/[stat]mainBG2.png Binary files differdeleted file mode 100644 index b88ecaf8..00000000 --- a/Skins/Deluxe/[stat]mainBG2.png +++ /dev/null diff --git a/Skins/Deluxe/[stat]mainBG3.png b/Skins/Deluxe/[stat]mainBG3.png Binary files differdeleted file mode 100644 index 28c39392..00000000 --- a/Skins/Deluxe/[stat]mainBG3.png +++ /dev/null diff --git a/Sounds/credits-outro-tune.mp3 b/Sounds/credits-outro-tune.mp3 Binary files differdeleted file mode 100644 index fc23561c..00000000 --- a/Sounds/credits-outro-tune.mp3 +++ /dev/null diff --git a/Sounds/wome-credits-tune.mp3 b/Sounds/wome-credits-tune.mp3 Binary files differdeleted file mode 100644 index 564e8d6f..00000000 --- a/Sounds/wome-credits-tune.mp3 +++ /dev/null diff --git a/Themes/Classic.ini b/Themes/Classic.ini deleted file mode 100644 index 763771a8..00000000 --- a/Themes/Classic.ini +++ /dev/null @@ -1,7345 +0,0 @@ -;0.5.1 Mod
-;experimental version
-;if you are using this as a sample for your theme
-;don't be suprised it doesn't work good with newer releases
-
-[Theme]
-Name=Classic
-US_Version=USD 101
-
-[Colors]
-White = 255 255 255
-GrayLightest = 223 223 223
-GrayLight = 191 191 191
-Gray = 127 127 127
-GrayDark = 63 63 63
-Black = 0 0 0
-Gold = 255 223 31
-Silver = 223 223 223
-Bronze = 205 127 50
-
-[Loading]
-Texts =2
-Fade = 1
-
-[LoadingBackground]
-Tex=LoadingBG
-
-[LoadingText1]
-X =400
-Y =290
-Color =GrayDark
-Font =1
-Align =1
-Size =14
-Text =SING_LOADING
-
-[LoadingText2]
-X =790
-Y =583
-Color=Grey
-Font =0
-Size =6
-Align=2
-Text=US_VERSION
-
-[Main]
-Texts =3
-Statics=2
-
-[MainBackground]
-Tex=MainBG
-
-[MainText1]
-X =30
-Y =170
-Color=GrayLight
-Font =1
-Size =22
-Text=SING_CHOOSE_MODE
-Align=0
-
-[MainText2]
-X =226
-Y =553
-Color=Gray
-Font =1
-Size =7
-Text=SING_LEGEND_NAVIGATE
-Align=0
-
-[MainText3]
-X =380
-Y =553
-Color=Gray
-Font =1
-Size =7
-Text=SING_LEGEND_SELECT
-Align=0
-
-[MainText4]
-X =540
-Y =553
-Color=Gray
-Font =1
-Size =7
-Text=SING_EDITOR
-Align=0
-
-[MainTextDescription]
-X =63
-Y =233
-Color=GrayDark
-Font =1
-Size =10
-Align=0
-Text=
-
-[MainTextDescriptionLong]
-X =63
-Y =265
-Color=Black
-Font =0
-Size =10
-Align=0
-Text=
-
-[MainStatic1]
-Tex =Logo
-X =30
-Y =270
-W =740
-H =283
-Color =ColorDark
-Type=Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[MainStatic2]
-Tex =MainIcon
-X =30
-Y =235
-W =32
-H =32
-Color =ColorDark
-Type=Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[MainStatic3]
-Tex =ButtonNavi
-X =196
-Y =553
-W =22
-H =22
-Color =Black
-Type=Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[MainStatic4]
-Tex =ButtonEnter
-X =350
-Y =553
-W =22
-H =22
-Color =Black
-Type=Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[MainStatic5]
-Tex =ButtonE
-X =510
-Y =553
-W =22
-H =22
-Color =Black
-Type=Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[MainButtonSolo]
-X =472
-Y =220
-W =58
-H =56
-Tex =ButtonSolo
-Color =ColorDark
-Int = 1
-DColor = GrayLightest
-DInt = 0.5
-Type=Font Black
-Texts=0
-
-[MainButtonMulti]
-X =532
-Y =220
-W =58
-H =56
-Tex =ButtonMulti
-Color =ColorDark
-Int = 1
-DColor = GrayLightest
-DInt = 0.5
-Type=Font Black
-Texts=0
-
-[MainButtonStats]
-X =592
-Y =220
-W =58
-H =56
-Tex =ButtonStats
-Color =ColorDark
-Int = 1
-DColor = GrayLightest
-DInt = 0.5
-Type=Font Black
-Texts=0
-
-[MainButtonEditor]
-X =592
-Y =220
-W =58
-H =56
-Tex =ButtonEditor
-Color =ColorDark
-Int = 1
-DColor = GrayLightest
-DInt = 0.5
-Type=Font Black
-Texts=0
-Visible=0
-
-[MainButtonOptions]
-X =652
-Y =220
-W =58
-H =56
-Tex =ButtonOptions
-Color =ColorDark
-Int = 1
-DColor = White
-DInt = 0.5
-Type=Font Black
-Texts=0
-
-[MainButtonExit]
-X =712
-Y =220
-W =58
-H =56
-Tex =ButtonExit
-Color =ColorDark
-Int = 1
-DColor = White
-DInt = 0.5
-Type=Font Black
-Texts=0
-
-[Song]
-Texts =3
-
-[SongBackground]
-Tex=SongBG
-
-[SongCover]
-X=300
-Y=140
-W=300
-H=200
-Style=4
-Reflections=0
-
-[SongEqualizer]
-Visible=1
-Direction=1
-Color =Black
-Alpha=1
-X=378
-Y=488
-Z=1
-PieceW=8
-PieceH=3
-Space=1
-Bands=5
-Length=7
-
-[SongVideoIcon]
-X =384
-Y =104
-W =32
-H =32
-Z=1
-Color=White
-Tex =VideoIcon
-Type=Font Black
-
-[SongStatic1]
-X =0
-Y =100
-W =800
-H =350
-Color=Black
-Tex =SongFade
-Type=Font Black
-TexX1=0.1
-TexY1=0.1
-TexX2=0.9
-TexY2=0.9
-
-[SongStatic2]
-X =20
-Y =500
-W =32
-H =32
-Color =ColorDark
-Tex =MainIcon
-Type=Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[SongStatic3]
-X =270
-Y =120
-W =260
-H =240
-Z =0.45
-Color =Gray
-Tex =SongSelection
-Type=Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[SongStatic4]
-X =378
-Y =463
-Z = 0.8
-W =44
-H =28
-Color =Black
-Tex =SongEqualizerBG
-Type=Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[SongTextArtist]
-X =400
-Y =360
-Color=Black
-Font =0
-Size =9
-Align =1
-Text=
-
-[SongTextTitle]
-X =400
-Y =390
-Color=GrayDark
-Font =0
-Size =9
-Align =1
-Text=
-
-[SongTextNumber]
-X =400
-Y =425
-Color=Gray
-Font =1
-Size =7
-Align =1
-Text=
-
-[SongTextCat]
-X =67
-Y =524
-Color=Gray
-Font =1
-Size =7
-Align =0
-Text=
-
-#[SongStaticCat]
-#Tex =
-#X =12
-#Y =7
-#W =85
-#H =85
-#Color=White
-#Type=Plain
-#TexX1=0
-#TexY1=0
-#TexX2=1
-#TexY2=1
-
-#Variable statics and texts for song-screen in sing- and partymode
-# There can be an unlimited Number of Statics and Texts, As long
-# as the numbers are in order.
-# Statics that are shown in PartyMode Only are Named_
-# SongStaticParty[No]
-# Texts that are shown in PartyMode Only are Named_
-# SongTextParty[No]
-# Statics that are shown in Normal Mode Only are Named_
-# SongStaticNonParty[No]
-# Texts that are shown in Normal Mode Only are Named_
-# SongTextNonParty[No]
-#Here are the ones for singmode
-
-[SongStaticNonParty1]
-X =120
-Y =553
-W =22
-H =22
-Tex=ButtonAlt
-Color =White
-Type=Plain
-
-[SongStaticNonParty2]
-X =156
-Y =553
-W =22
-H =22
-Tex=ButtonAZ
-Color =White
-Type=Plain
-
-[SongStaticNonParty3]
-X =298
-Y =553
-W =22
-H =22
-Tex=ButtonM
-Color =White
-Type=Plain
-
-[SongStaticNonParty4]
-X =414
-Y =553
-W =22
-H =22
-Tex=ButtonJ
-Color =White
-Type=Plain
-
-[SongStaticNonParty5]
-X =585
-Y =553
-W =22
-H =22
-Tex=ButtonP
-Color =White
-Type=Plain
-
-#Texts Non Party
-[SongTextNonParty1]
-X =30
-Y =455
-Color=GrayLight
-Font =1
-Size =15
-Text=SING_SONG_SELECTION
-Align=0
-
-[SongTextNonParty2]
-X =50
-Y =500
-Color=GrayDark
-Font =1
-Size =8
-Text=SING_SONG_SELECTION_DESC
-Align=0
-
-[SongTextNonParty3]
-X =144
-Y =556
-Color=Black
-Font =1
-Size =5
-Text=+
-
-[SongTextNonParty4]
-X =186
-Y =552
-Color=Gray
-Font =1
-Size =7
-Align=0
-Text=SING_SONG_SELECTION_GOTO
-
-[SongTextNonParty5]
-X =328
-Y =552
-Color=Gray
-Font =1
-Size =7
-Align=0
-Text=SING_SONG_SELECTION_MENU
-
-[SongTextNonParty6]
-X =444
-Y =552
-Color=Gray
-Font =1
-Size =7
-Align=0
-Text=SONG_JUMPTO_DESC
-
-[SongTextNonParty7]
-X =615
-Y =552
-Color=Gray
-Font =1
-Size =7
-Align=0
-Text=SING_SONG_SELECTION_PLAYLIST
-
-
-#and theese are the ones for partymode
-
-
-[SongStaticParty1]
-X =187
-Y =553
-W =22
-H =22
-Tex=Button13
-Color =White
-Type=Plain
-
-[SongStaticParty2]
-X =363
-Y =553
-W =22
-H =22
-Tex=ButtonM
-Color =White
-Type=Plain
-
-[SongStaticParty3]
-X =525
-Y =553
-W =22
-H =22
-Tex=ButtonEnter
-Color =White
-Type=Plain
-
-#Texts for Party Mode
-
-[SongTextParty1]
-X =30
-Y =455
-Color=GrayLight
-Font =1
-Size =15
-Align=0
-Text=PARTY_MODE
-
-[SongTextParty2]
-X =50
-Y =500
-Color=GrayDark
-Font =1
-Size =8
-Align=0
-Text=PARTY_SONG_WHEREAMI
-
-[SongTextParty3]
-X =217
-Y =552
-Color=Gray
-Font =1
-Size =7
-Align=0
-Text=SONG_MENU_NAME_PARTY_JOKER
-
-[SongTextParty4]
-X =393
-Y =552
-Color=Gray
-Font =1
-Size =7
-Align=0
-Text=PARTY_SONG_MENU
-
-[SongTextParty5]
-X =555
-Y =552
-Color=Gray
-Font =1
-Size =7
-Align=0
-Text=PARTY_SONG_LEGEND_CONTINUE
-
-#variable statics end
-
-# Jokers, 5 for each team, only shown in party Mode
-[SongStaticTeam1Joker1]
-Tex =Joker
-X =20
-Y =30
-W =50
-H =50
-Color=P1Dark
-Type=Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[SongStaticTeam1Joker2]
-Tex =Joker
-X =70
-Y =30
-W =50
-H =50
-Color=P1Dark
-Type=Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[SongStaticTeam1Joker3]
-Tex =Joker
-X =120
-Y =30
-W =50
-H =50
-Color=P1Dark
-Type=Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[SongStaticTeam1Joker4]
-Tex =Joker
-X =170
-Y =30
-W =50
-H =50
-Color=P1Dark
-Type=Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[SongStaticTeam1Joker5]
-Tex =Joker
-X =220
-Y =30
-W =50
-H =50
-Color=P1Dark
-Type=Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[SongStaticTeam2Joker1]
-Tex =Joker
-X =280
-Y =30
-W =50
-H =50
-Color=P2Dark
-Type=Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[SongStaticTeam2Joker2]
-Tex =Joker
-X =330
-Y =30
-W =50
-H =50
-Color=P2Dark
-Type=Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[SongStaticTeam2Joker3]
-Tex =Joker
-X =380
-Y =30
-W =50
-H =50
-Color=P2Dark
-Type=Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[SongStaticTeam2Joker4]
-Tex =Joker
-X =430
-Y =30
-W =50
-H =50
-Color=P2Dark
-Type=Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[SongStaticTeam2Joker5]
-Tex =Joker
-X =480
-Y =30
-W =50
-H =50
-Color=P2Dark
-Type=Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[SongStaticTeam3Joker1]
-Tex =Joker
-X =540
-Y =30
-W =50
-H =50
-Color=P3Dark
-Type=Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[SongStaticTeam3Joker2]
-Tex =Joker
-X =590
-Y =30
-W =50
-H =50
-Color=P3Dark
-Type=Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[SongStaticTeam3Joker3]
-Tex =Joker
-X =640
-Y =30
-W =50
-H =50
-Color=P3Dark
-Type=Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[SongStaticTeam3Joker4]
-Tex =Joker
-X =690
-Y =30
-W =50
-H =50
-Color=P3Dark
-Type=Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[SongStaticTeam3Joker5]
-Tex =Joker
-X =740
-Y =30
-W =50
-H =50
-Color=P3Dark
-Type=Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-
-[Sing]
-Texts =1
-
-[SingText1]
-Text =SING_TIME
-X =43
-Y =17
-Font =1
-Size =6
-Color =Black
-Align=1
-
-[SingStatic1]
-;TextBG
-Tex =LyricBar
-X =10
-Y =490
-W =780
-H =105
-Color =GrayLightest
-Type=Font Black
-
-[SingStatic2]
-;Time BG
-Tex =LyricBar
-X =12
-Y =5
-W =328
-H =42
-Color =GrayLightest
-Type=Font Black
-
-[SingStatic3]
-Tex =Rectangle
-X =140
-Y =21
-W =190
-H =10
-Color=Gray
-
-[SingTimeProgress]
-X =140
-Y =21
-W =190
-H =10
-Color=GrayDark
-
-[SingTimeText]
-Text =SING_TIME
-X =100
-Y =14
-Font =1
-Size =8
-Color =White
-Align=1
-
-[SingStatic4]
-Tex =Bar
-X =20
-Y =10
-W =46
-H =30
-Color =Black
-Type=Font Black
-
-[SingP1Static]
-Tex =P
-X =16
-Y =55
-W =45
-H =50
-Color =P1Dark
-Type=Font Black
-
-[SingP1Static2]
-Tex =ScoreBG
-X =75
-Y =55
-W =100
-H =40
-Color =P1Dark
-Type=Transparent
-TexX1=0.02
-TexY1=0.05
-TexX2=0.98
-TexY2=0.98
-
-[SingP1Text]
-Text =P1
-X =27
-Y =65
-Font =1
-Size =8
-Color =White
-Align=0
-
-[SingP1TextScore]
-Text =00000
-X =90
-Y =60
-Font =0
-Size =10
-Color =White
-Align=0
-
-[SingP1SingBar]
-X =75
-Y =95
-W =100
-H =8
-
-[SingP1TwoPSingBar]
-X =75
-Y =95
-W =100
-H =8
-
-[SingP1ThreePSingBar]
-X =75
-Y =95
-W =100
-H =8
-
-[SingP2RStatic]
-Tex =P
-X =739
-Y =55
-W =45
-H =50
-Color =P2Dark
-Type=Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[SingP2RStatic2]
-Tex =ScoreBG
-X =620
-Y =55
-W =100
-H =40
-Color =P2Dark
-Type=Transparent
-TexX1=0.02
-TexY1=0.05
-TexX2=0.98
-TexY2=0.98
-
-[SingP2RText]
-Text =P2
-X =750
-Y =65
-Font =1
-Size =8
-Color =White
-Align=0
-
-[SingP2RTextScore]
-Text =00000
-X =635
-Y =60
-Font =0
-Size =10
-Color =White
-Align=0
-
-[SingP2RSingBar]
-X =620
-Y =95
-W =100
-H =8
-
-[SingP2MStatic]
-Tex =P
-X =311
-Y =55
-W =45
-H =50
-Color =P2Dark
-Type=Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[SingP2MStatic2]
-Tex =ScoreBG
-X =370
-Y =55
-W =100
-H =40
-Color =P2Dark
-Type=Transparent
-TexX1=0.02
-TexY1=0.05
-TexX2=0.98
-TexY2=0.98
-
-[SingP2MText]
-Text =P2
-X =321
-Y =65
-Font =1
-Size =8
-Color =White
-Align=0
-
-[SingP2MTextScore]
-Text =00000
-X =385
-Y =60
-Font =0
-Size =10
-Color =White
-Align=0
-
-[SingP2MSingBar]
-X =370
-Y =95
-W =100
-H =8
-
-[SingP3RStatic]
-Tex =P
-X =611
-Y =55
-W =45
-H =50
-Color =P3Dark
-Type=Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[SingP3RStatic2]
-Tex =ScoreBG
-X =670
-Y =55
-W =100
-H =40
-Color =P3Dark
-Type=Transparent
-TexX1=0.02
-TexY1=0.05
-TexX2=0.98
-TexY2=0.98
-
-[SingP3RText]
-Text =P3
-X =621
-Y =65
-Font =1
-Size =8
-Color =White
-Align=0
-
-[SingP3RTextScore]
-Text =00000
-X =685
-Y =60
-Font =0
-Size =10
-Color =White
-Align=0
-
-[SingP3SingBar]
-X =670
-Y =95
-W =100
-H =8
-
-[Score]
-Texts =1
-
-[ScoreBackground]
-Tex=ScoresBG
-
-[ScoreText1]
-X =90
-Y =500
-Color =GrayDark
-Font =1
-Size =17
-Text =SONG_SCORE_WHEREAMI
-Align=0
-
-[ScoreStatic1]
-Tex =ButtonEnter
-X =350
-Y =553
-W =22
-H =22
-Color =White
-Type=Plain
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScoreText2]
-X =380
-Y =553
-Color=Gray
-Font =1
-Size =7
-Text=SING_LEGEND_CONTINUE
-Align=0
-
-[ScoreTextArtist]
-X =450
-Y =500
-Color=GrayDark
-Font =0
-Size =9
-Text =Artist
-Align=0
-
-[ScoreTextTitle]
-X =450
-Y =525
-Font =0
-Size =9
-Text =Title
-Align=0
-Color=Gray
-
-[ScoreTextName1]
-X =200
-Y =160
-Font =1
-Size =12
-Text =P1
-Color =P1Dark
-Align=0
-
-[ScoreTextName2]
-X =50
-Y =160
-Font =1
-Size =12
-Text =P1
-Color =P1Dark
-Align=0
-
-[ScoreTextName3]
-X =510
-Y =160
-Font =1
-Size =12
-Text =P2
-Color =P2Dark
-Align=0
-
-[ScoreTextScore1]
-X =250
-Y =110
-Color=GrayDark
-Font =1
-Size =9
-Text =Tone Deaf
-Align=0
-
-[ScoreTextScore2]
-X =100
-Y =110
-Color=GrayDark
-Font =1
-Size =9
-Text =Tone Deaf
-Align=0
-
-[ScoreTextScore3]
-X =560
-Y =110
-Color=GrayDark
-Font =1
-Size =9
-Text =Tone Deaf
-Align=0
-
-[ScoreTextNotes1]
-X =235
-Y =220
-Color=GrayDark
-Font =0
-Size =9
-Text=SING_NOTES
-Align=0
-
-[ScoreTextNotes2]
-X =85
-Y =220
-Color=GrayDark
-Font =0
-Size =9
-Text=SING_NOTES
-Align=0
-
-[ScoreTextNotes3]
-X =545
-Y =220
-Color=GrayDark
-Font =0
-Size =9
-Text =SING_NOTES
-Align=0
-
-[ScoreTextNotesScore1]
-X =440
-Y =220
-Color=GrayDark
-Font =1
-Size =10
-Align =2
-Text =0000
-
-[ScoreTextNotesScore2]
-X =290
-Y =220
-Color=GrayDark
-Font =1
-Size =10
-Align =2
-Text =0000
-
-[ScoreTextNotesScore3]
-X =750
-Y =220
-Color=GrayDark
-Font =1
-Size =10
-Align =2
-Text =0000
-
-[ScoreTextLineBonus1]
-X =235
-Y =260
-Color=GrayDark
-Font =0
-Size =9
-Text =SING_PHRASE_BONUS
-Align=0
-
-[ScoreTextLineBonus2]
-X =85
-Y =260
-Color=GrayDark
-Font =0
-Size =9
-Text =SING_PHRASE_BONUS
-Align=0
-
-[ScoreTextLineBonus3]
-X =545
-Y =260
-Color=GrayDark
-Font =0
-Size =9
-Text =SING_PHRASE_BONUS
-Align=0
-
-[ScoreTextLineBonusScore1]
-X =440
-Y =260
-Color=GrayDark
-Font =1
-Size =10
-Align =2
-Text =0000
-
-[ScoreTextLineBonusScore2]
-X =290
-Y =260
-Color=GrayDark
-Font =1
-Size =10
-Align =2
-Text =0000
-
-[ScoreTextLineBonusScore3]
-X =750
-Y =260
-Color=GrayDark
-Font =1
-Size =10
-Align =2
-Text =0000
-
-[ScoreTextGoldenNotes1]
-X =235
-Y =300
-Color=GrayDark
-Font =0
-Size =9
-Text =SING_GOLDEN_NOTES
-Align=0
-
-[ScoreTextGoldenNotes2]
-X =85
-Y =300
-Color=GrayDark
-Font =0
-Size =9
-Text =SING_GOLDEN_NOTES
-Align=0
-
-[ScoreTextGoldenNotes3]
-X =545
-Y =300
-Color=GrayDark
-Font =0
-Size =9
-Text =SING_GOLDEN_NOTES
-Align=0
-
-[ScoreTextGoldenNotesScore1]
-X =440
-Y =300
-Color=GrayDark
-Font =1
-Size =10
-Align =2
-Text =0000
-
-[ScoreTextGoldenNotesScore2]
-X =290
-Y =300
-Color=GrayDark
-Font =1
-Size =10
-Align =2
-Text =0000
-
-[ScoreTextGoldenNotesScore3]
-X =750
-Y =300
-Color=GrayDark
-Font =1
-Size =10
-Align =2
-Text =0000
-
-[ScoreTextTotal1]
-X =200
-Y =370
-Color=GrayDark
-Font =0
-Size =9
-Text=SING_TOTAL
-Align=0
-
-[ScoreTextTotal2]
-X =50
-Y =370
-Color=GrayDark
-Font =0
-Size =9
-Text =SING_TOTAL
-Align=0
-
-[ScoreTextTotal3]
-X =510
-Y =370
-Color=GrayDark
-Font =0
-Size =9
-Text =SING_TOTAL
-Align=0
-
-[ScoreTextTotalSCore1]
-X =440
-Y =360
-Color=GrayDark
-Font =1
-Size =15
-Align =2
-Text =00000
-
-[ScoreTextTotalSCore2]
-X =290
-Y =360
-Color=GrayDark
-Font =1
-Size =15
-Align =2
-Text =00000
-
-[ScoreTextTotalScore3]
-X =750
-Y =360
-Color=GrayDark
-Font =1
-Size =15
-Align =2
-Text =00000
-
-[ScorePlayer1Static1]
-Tex =ScoreLine
-X =200
-Y =205
-W =240
-H =6
-Color =GrayDark
-Type =Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScorePlayer1Static2]
-Tex =ScoreLine
-X =200
-Y =345
-W =240
-H =6
-Type =Font Black
-Color =GrayDark
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScorePlayer1Static3]
-Tex =ScoreLine
-X =200
-Y =410
-W =240
-H =6
-Type =Font Black
-Color =GrayDark
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScoreStaticBoxLightest1]
-Tex =ScoreBox
-X =200
-Y =220
-W =30
-H =30
-Color =P1Lightest
-Type=
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScoreStaticBoxDark1]
-Tex =ScoreBox
-X =200
-Y =300
-W =30
-H =30
-Color =P1Dark
-Type=
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScorePlayer2Static1]
-Tex =ScoreLine
-X =50
-Y =205
-W =240
-H =6
-Type =Font Black
-Color =GrayDark
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScorePlayer2Static2]
-Tex =ScoreLine
-X =50
-Y =345
-W =240
-H =6
-Type =Font Black
-Color =GrayDark
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScorePlayer2Static3]
-Tex =ScoreLine
-X =50
-Y =410
-W =240
-H =6
-Type =Font Black
-Color =GrayDark
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScoreStaticBoxLightest2]
-Tex =ScoreBox
-X =50
-Y =220
-W =30
-H =30
-Color =P1Lightest
-Type=
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScoreStaticBoxDark2]
-Tex =ScoreBox
-X =50
-Y =300
-W =30
-H =30
-Color =P1Dark
-Type=
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScorePlayer3Static1]
-Tex =ScoreLine
-X =510
-Y =205
-W =240
-H =6
-Type =Font Black
-Color =GrayDark
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScorePlayer3Static2]
-Tex =ScoreLine
-X =510
-Y =345
-W =240
-H =6
-Type =Font Black
-Color =GrayDark
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScorePlayer3Static3]
-Tex =ScoreLine
-X =510
-Y =410
-W =240
-H =6
-Type =Font Black
-Color =GrayDark
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScoreStaticBoxLightest3]
-Tex =ScoreBox
-X =510
-Y =220
-W =30
-H =30
-Color =P2Lightest
-Type=
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScoreStaticBoxDark3]
-Tex =ScoreBox
-X =510
-Y =300
-W =30
-H =30
-Color =P2Dark
-Type=
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScoreStaticBackLevel1]
-Tex =ScoreLevel
-X =460
-Y =140
-W =120
-H =300
-Color =P1Lightest
-Type =Font Black
-TexX1=0
-TexY1=0.1
-TexX2=1
-TexY2=0.9
-
-[ScoreStaticBackLevelRound1]
-Tex =ScoreLevelRound
-X =460
-Y =110
-W =120
-H =30
-Color =P1Lightest
-Type =Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=0.5
-
-[ScoreStaticLevel1]
-Tex =ScoreLevel
-X =460
-Y =410
-W =120
-H =30
-Color =P1Light
-Type =Font Black
-TexX1=0
-TexY1=0.1
-TexX2=1
-TexY2=0.9
-
-[ScoreStaticLevelRound1]
-Tex =ScoreLevelRound
-X =460
-Y =380
-W =120
-H =30
-Color =P1Light
-Type =Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=0.5
-
-[ScoreStaticBackLevel2]
-Tex =ScoreLevel
-X =290
-Y =140
-W =120
-H =300
-Color =P1Lightest
-Type =Font Black
-TexX1=0
-TexY1=0.1
-TexX2=1
-TexY2=0.9
-
-[ScoreStaticBackLevelRound2]
-Tex =ScoreLevelRound
-X =290
-Y =110
-W =120
-H =30
-Color =P1Lightest
-Type =Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=0.5
-
-[ScoreStaticLevel2]
-Tex =ScoreLevel
-X =290
-Y =410
-W =120
-H =30
-Color =P1Light
-Type =Font Black
-TexX1=0
-TexY1=0.1
-TexX2=1
-TexY2=0.9
-
-[ScoreStaticLevelRound2]
-Tex =ScoreLevelRound
-X =290
-Y =380
-W =120
-H =30
-Color =P1Light
-Type =Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=0.5
-
-[ScoreStaticBackLevel3]
-Tex =ScoreLevel
-X =390
-Y =140
-W =120
-H =300
-Color =P2Lightest
-Type =Font Black
-TexX1=0
-TexY1=0.1
-TexX2=1
-TexY2=0.9
-
-[ScoreStaticBackLevelRound3]
-Tex =ScoreLevelRound
-X =390
-Y =110
-W =120
-H =30
-Color =P2Lightest
-Type =Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=0.5
-
-[ScoreStaticLevel3]
-Tex =ScoreLevel
-X =390
-Y =410
-W =120
-H =30
-Color =P2Light
-Type =Font Black
-TexX1=0
-TexY1=0.1
-TexX2=1
-TexY2=0.9
-
-[ScoreStaticLevelRound3]
-Tex =ScoreLevelRound
-X =390
-Y =380
-W =120
-H =30
-Color =P2Light
-Type =Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=0.5
-
-[ScorePlayer4Static1]
-X=20
-Y=205
-W=240
-H=6
-Tex=ScoreLine
-Type=Font Black
-Color=GrayDark
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-[ScorePlayer4Static2]
-X=20
-Y=345
-W=240
-H=6
-Tex=ScoreLine
-Type=Font Black
-Color=GrayDark
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-[ScorePlayer4Static3]
-X=20
-Y=410
-W=240
-H=6
-Tex=ScoreLine
-Type=Font Black
-Color=GrayDark
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScoreStaticBoxLightest4]
-X=20
-Y=220
-W=30
-H=30
-Tex=ScoreBox
-Type=
-Color=P1Lightest
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScoreStaticBoxDark4]
-X=20
-Y=300
-W=30
-H=30
-Tex=ScoreBox
-Type=
-Color=P1Dark
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScoreTextName4]
-X=20
-Y=160
-Font=1
-Size=12
-Align=0
-Text=P1
-Color=P1Dark
-
-[ScoreTextScore4]
-X=70
-Y=110
-Font=1
-Size=9
-Align=0
-Text=Tone Deaf
-Color=GrayDark
-
-[ScoreTextNotes4]
-X=55
-Y=220
-Font=0
-Size=9
-Align=0
-Text=SING_NOTES
-Color=GrayDark
-
-[ScoreTextNotesScore4]
-X=260
-Y=220
-Font=1
-Size=10
-Align=2
-Text=0000
-Color=GrayDark
-
-[ScoreTextLineBonus4]
-X=55
-Y=260
-Font=0
-Size=9
-Align=0
-Text=SING_PHRASE_BONUS
-Color=GrayDark
-
-[ScoreTextLineBonusScore4]
-X=260
-Y=260
-Font=1
-Size=10
-Align=2
-Text=0000
-Color=GrayDark
-
-[ScoreTextGoldenNotes4]
-X=55
-Y=300
-Font=0
-Size=9
-Align=0
-Text=SING_GOLDEN_NOTES
-Color=GrayDark
-
-[ScoreTextGoldenNotesScore4]
-X=260
-Y=300
-Font=1
-Size=10
-Align=2
-Text=0000
-Color=GrayDark
-
-[ScoreTextTotal4]
-X=20
-Y=370
-Font=0
-Size=9
-Align=0
-Text=SING_TOTAL
-Color=GrayDark
-
-[ScoreTextTotalScore4]
-X=260
-Y=360
-Font=1
-Size=15
-Align=2
-Text=00000
-Color=GrayDark
-
-[ScoreStaticBackLevel4]
-X=0
-Y=0
-W=0
-H=0
-Tex=
-Type=
-Color=
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScoreStaticBackLevelRound4]
-X=0
-Y=0
-W=0
-H=0
-Tex=
-Type=
-Color=
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScoreStaticLevel4]
-X=0
-Y=0
-W=0
-H=0
-Tex=
-Type=
-Color=
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScoreStaticLevelRound4]
-X=0
-Y=0
-W=0
-H=0
-Tex=
-Type=
-Color=
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScoreTextName5]
-X=280
-Y=160
-Font=1
-Size=12
-Align=0
-Text=P2
-Color=P2Dark
-
-[ScoreTextScore5]
-X=330
-Y=110
-Font=1
-Size=9
-Align=0
-Text=Tone Deaf
-Color=GrayDark
-
-[ScoreTextNotes5]
-X=315
-Y=220
-Font=0
-Size=9
-Align=0
-Text=SING_NOTES
-Color=GrayDark
-
-[ScoreTextNotesScore5]
-X=520
-Y=220
-Font=1
-Size=10
-Align=2
-Text=0000
-Color=GrayDark
-
-[ScoreTextLineBonus5]
-X=315
-Y=260
-Font=0
-Size=9
-Align=0
-Text=SING_PHRASE_BONUS
-Color=GrayDark
-
-[ScoreTextLineBonusScore5]
-X=520
-Y=260
-Font=1
-Size=10
-Align=2
-Text=0000
-Color=GrayDark
-
-[ScoreTextGoldenNotes5]
-X=315
-Y=300
-Font=0
-Size=9
-Align=0
-Text=SING_GOLDEN_NOTES
-Color=GrayDark
-
-[ScoreTextGoldenNotesScore5]
-X=520
-Y=300
-Font=1
-Size=10
-Align=2
-Text=0000
-Color=GrayDark
-
-[ScoreTextTotal5]
-X=280
-Y=370
-Font=0
-Size=9
-Align=0
-Text=SING_TOTAL
-Color=GrayDark
-
-[ScoreTextTotalScore5]
-X=520
-Y=360
-Font=1
-Size=15
-Align=2
-Text=00000
-Color=GrayDark
-
-[ScoreStaticBackLevel5]
-X=0
-Y=0
-W=0
-H=0
-Tex=
-Type=
-Color=
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScoreStaticBackLevelRound5]
-X=0
-Y=0
-W=0
-H=0
-Tex=
-Type=
-Color=
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScoreStaticLevel5]
-X=0
-Y=0
-W=0
-H=0
-Tex=
-Type=
-Color=
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScoreStaticLevelRound5]
-X=0
-Y=0
-W=0
-H=0
-Tex=
-Type=
-Color=
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScoreTextName6]
-X=540
-Y=160
-Font=1
-Size=12
-Align=0
-Text=P2
-Color=P3Dark
-
-[ScoreTextScore6]
-X=590
-Y=110
-Font=1
-Size=9
-Align=0
-Text=Tone Deaf
-Color=GrayDark
-
-[ScoreTextNotes6]
-X=575
-Y=220
-Font=0
-Size=9
-Align=0
-Text=SING_NOTES
-Color=GrayDark
-
-[ScoreTextNotesScore6]
-X=780
-Y=220
-Font=1
-Size=10
-Align=2
-Text=0000
-Color=GrayDark
-
-[ScoreTextLineBonus6]
-X=575
-Y=260
-Font=0
-Size=9
-Align=0
-Text=SING_PHRASE_BONUS
-Color=GrayDark
-
-[ScoreTextLineBonusScore6]
-X=780
-Y=260
-Font=1
-Size=10
-Align=2
-Text=0000
-Color=GrayDark
-
-[ScoreTextGoldenNotes6]
-X=575
-Y=300
-Font=0
-Size=9
-Align=0
-Text=SING_GOLDEN_NOTES
-Color=GrayDark
-
-[ScoreTextGoldenNotesScore6]
-X=780
-Y=300
-Font=1
-Size=10
-Align=2
-Text=0000
-Color=GrayDark
-
-[ScoreTextTotal6]
-X=540
-Y=370
-Font=0
-Size=9
-Align=0
-Text=SING_TOTAL
-Color=GrayDark
-
-[ScoreTextTotalScore6]
-X=780
-Y=360
-Font=1
-Size=15
-Align=2
-Text=00000
-Color=GrayDark
-
-[ScoreStaticBackLevel6]
-X=0
-Y=0
-W=0
-H=0
-Tex=
-Type=
-Color=
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScoreStaticBackLevelRound6]
-X=0
-Y=0
-W=0
-H=0
-Tex=
-Type=
-Color=
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScoreStaticLevel6]
-X=0
-Y=0
-W=0
-H=0
-Tex=
-Type=
-Color=
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScoreStaticLevelRound6]
-X=0
-Y=0
-W=0
-H=0
-Tex=
-Type=
-Color=
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScorePlayer5Static1]
-X=280
-Y=205
-W=240
-H=6
-Tex=ScoreLine
-Type=Font Black
-Color=GrayDark
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScorePlayer5Static2]
-X=280
-Y=345
-W=240
-H=6
-Tex=ScoreLine
-Type=Font Black
-Color=GrayDark
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScorePlayer5Static3]
-X=280
-Y=410
-W=240
-H=6
-Tex=ScoreLine
-Type=Font Black
-Color=GrayDark
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScoreStaticBoxLightest5]
-X=280
-Y=220
-W=30
-H=30
-Tex=ScoreBox
-Type=
-Color=P2Lightest
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScoreStaticBoxDark5]
-X=280
-Y=300
-W=30
-H=30
-Tex=ScoreBox
-Type=
-Color=P2Dark
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScorePlayer6Static1]
-X=540
-Y=205
-W=240
-H=6
-Tex=ScoreLine
-Type=Font Black
-Color=GrayDark
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScorePlayer6Static2]
-X=540
-Y=345
-W=240
-H=6
-Tex=ScoreLine
-Type=Font Black
-Color=GrayDark
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScorePlayer6Static3]
-X=540
-Y=410
-W=240
-H=6
-Tex=ScoreLine
-Type=Font Black
-Color=GrayDark
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScoreStaticBoxLightest6]
-X=540
-Y=220
-W=30
-H=30
-Tex=ScoreBox
-Type=
-Color=P3Lightest
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[ScoreStaticBoxDark6]
-X=540
-Y=300
-W=30
-H=30
-Tex=ScoreBox
-Type=
-Color=P3Dark
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[Options]
-Texts = 3
-
-[OptionsBackground]
-Tex=OptionsBG
-
-
-[OptionsText1]
-X = 50
-Y = 170
-Color=GrayLight
-Font = 1
-Size = 25
-Text = SING_OPTIONS
-
-[OptionsStatic1]
-Tex=MainIcon
-X=40
-Y=250
-W=32
-H=32
-Color=ColorDark
-Type=Font Black
-
-[OptionsStatic2]
-Tex =ButtonNavi
-X =196
-Y =553
-W =22
-H =22
-Color =White
-Type=Plain
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[OptionsStatic3]
-Tex =ButtonEnter
-X =350
-Y =553
-W =22
-H =22
-Color =White
-Type=Plain
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[OptionsStatic4]
-Tex =ButtonEsc
-X =510
-Y =553
-W =22
-H =22
-Color =White
-Type=Plain
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[OptionsText2]
-X =226
-Y =553
-Color=Gray
-Font =1
-Size =7
-Text=SING_LEGEND_NAVIGATE
-Align=0
-
-[OptionsText3]
-X =380
-Y =553
-Color=Gray
-Font =1
-Size =7
-Text=SING_LEGEND_SELECT
-Align=0
-
-[OptionsText4]
-X =540
-Y =553
-Color=Gray
-Font =1
-Size =7
-Text=SING_LEGEND_ESC
-Align=0
-
-[OptionsTextDescription]
-X = 70
-Y = 248
-Color=GrayDark
-Font = 1
-Size = 10
-
-[OptionsButtonGame]
-X = 40
-Y = 310
-W = 180
-H = 70
-Tex = Button
-Color = ColorDark
-Int = 1
-DColor = White
-DInt = 0.5
-Type = Font Black
-Texts=1
-
-[OptionsButtonGameText1]
-X =16
-Y =15
-Font=0
-Size=13
-Align=0
-Text=SING_OPTIONS_GAME
-Color=White
-
-[OptionsButtonGraphics]
-X = 220
-Y = 310
-W = 180
-H = 70
-Tex = Button
-Color = ColorDark
-Int = 1
-DColor = White
-DInt = 0.5
-Type = Font Black
-Texts=1
-
-[OptionsButtonGraphicsText1]
-X =16
-Y =15
-Font=0
-Size=13
-Align=0
-Text=SING_OPTIONS_GRAPHICS
-Color=White
-
-[OptionsButtonSound]
-X = 400
-Y = 310
-W = 180
-H = 70
-Tex = Button
-Color = ColorDark
-Int = 1
-DColor = White
-DInt = 0.5
-Type = Font Black
-Texts=1
-
-[OptionsButtonSoundText1]
-X =16
-Y =15
-Font=0
-Size=13
-Align=0
-Text=SING_OPTIONS_SOUND
-Color=White
-
-[OptionsButtonLyrics]
-X = 580
-Y = 310
-W = 180
-H = 70
-Tex = Button
-Color = ColorDark
-Int = 1
-DColor = White
-DInt = 0.5
-Type = Font Black
-Texts=1
-
-[OptionsButtonLyricsText1]
-X =16
-Y =15
-Font=0
-Size=13
-Align=0
-Text=SING_OPTIONS_LYRICS
-Color=White
-
-[OptionsButtonThemes]
-X = 40
-Y = 380
-W = 180
-H = 70
-Tex = Button
-Color = ColorDark
-Int = 1
-DColor = White
-DInt = 0.5
-Type = Font Black
-Texts=1
-
-[OptionsButtonThemesText1]
-X =16
-Y =15
-Font=0
-Size=13
-Align=0
-Text=SING_OPTIONS_THEMES
-Color=White
-
-[OptionsButtonRecord]
-X = 220
-Y = 380
-W = 180
-H = 70
-Tex = Button
-Color = ColorDark
-Int = 1
-DColor = White
-DInt = 0.5
-Type = Font Black
-Texts=1
-
-[OptionsButtonRecordText1]
-X =16
-Y =15
-Font=0
-Size=13
-Align=0
-Text=SING_OPTIONS_RECORD
-Color=White
-Texts=1
-
-[OptionsButtonAdvanced]
-X = 400
-Y = 380
-W = 180
-H = 70
-Tex = Button
-Color = ColorDark
-Int = 1
-DColor = White
-DInt = 0.5
-Type = Font Black
-Texts=1
-
-[OptionsButtonAdvancedText1]
-X =16
-Y =15
-Font=0
-Size=13
-Align=0
-Text=SING_OPTIONS_ADVANCED
-Color=White
-Texts=1
-
-[OptionsButtonExit]
-X = 580
-Y = 380
-W = 180
-H = 70
-Tex = Button
-Color = ColorDark
-Int = 1
-DColor = White
-DInt = 0.5
-Type = Font Black
-Texts=1
-
-[OptionsButtonExitText1]
-X =16
-Y =15
-Font=0
-Size=13
-Align=0
-Text=SING_OPTIONS_EXIT
-Color=White
-
-[OptionsGame]
-Texts = 3
-
-[OptionsGameBackground]
-Tex=OptionsBG
-
-[OptionsGameStatic1]
-X =275
-Y =553
-W =22
-H =22
-Tex=ButtonNavi
-Color =White
-Type=Plain
-Style=5
-
-[OptionsGameStatic2]
-X =435
-Y =553
-W =22
-H =22
-Tex=ButtonEsc
-Color =White
-Type=Plain
-
-[OptionsGameText2]
-X =305
-Y =552
-Color=Gray
-Font =1
-Size =7
-Align=0
-Text=SING_LEGEND_NAVIGATE
-
-[OptionsGameText3]
-X =465
-Y =552
-Color=Gray
-Font =1
-Size =7
-Align=0
-Text=SING_LEGEND_ESC
-
-[OptionsGameText1]
-X = 50
-Y = 10
-ColR = 0.7
-ColG = 0.7
-ColB = 0.7
-Font = 1
-Size = 25
-Text=SING_OPTIONS_GAME_WHEREAMI
-
-[OptionsGameSelectPlayers]
-Tex = MainBar
-TexSBG = MainBar
-Text =SING_OPTIONS_GAME_PLAYERS
-X = 40
-Y = 85
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex = MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsGameSelectDifficulty]
-Tex = MainBar
-TexSBG = MainBar
-Text =SING_OPTIONS_GAME_DIFFICULTY
-X = 40
-Y = 140
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex = MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-
-[OptionsGameSelectSlideLanguage]
-Tex = MainBar
-TexSBG = MainBar
-Text =SING_OPTIONS_GAME_LANGUAGE
-X = 40
-Y = 195
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex = MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsGameSelectTabs]
-Tex =MainBar
-TexSBG =MainBar
-Text =SING_OPTIONS_GAME_TABS
-X = 40
-Y = 250
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsGameSelectSlideSorting]
-Tex =MainBar
-TexSBG =MainBar
-Text =SING_OPTIONS_GAME_SORTING
-X = 40
-Y = 305
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsGameSelectDebug]
-Tex =MainBar
-TexSBG =MainBar
-Text =SING_OPTIONS_GAME_DEBUG
-X = 40
-Y = 360
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsGameButtonExit]
-X = 40
-Y = 415
-W = 230
-H = 70
-Tex =MainBar
-Color = ColorDark
-DColor = Gray
-Type = Font Black
-
-
-[OptionsGraphics]
-Texts = 3
-
-[OptionsGraphicsBackground]
-Tex=OptionsBG
-
-[OptionsGraphicsStatic1]
-X =275
-Y =553
-W =22
-H =22
-Tex=ButtonNavi
-Color =White
-Type=Plain
-Style=5
-
-[OptionsGraphicsStatic2]
-X =435
-Y =553
-W =22
-H =22
-Tex=ButtonEsc
-Color =White
-Type=Plain
-
-[OptionsGraphicsText2]
-X =305
-Y =552
-Color=Gray
-Font =1
-Size =7
-Align=0
-Text=SING_LEGEND_NAVIGATE
-
-[OptionsGraphicsText3]
-X =465
-Y =552
-Color=Gray
-Font =1
-Size =7
-Align=0
-Text=SING_LEGEND_ESC
-
-[OptionsGraphicsText1]
-X = 50
-Y = 10
-ColR = 0.7
-ColG = 0.7
-ColB = 0.7
-Font = 1
-Size = 25
-Text=SING_OPTIONS_GRAPHICS_WHEREAMI
-
-[OptionsGraphicsSelectSlideResolution]
-Tex =MainBar
-TexSBG =MainBar
-Text=SING_OPTIONS_GRAPHICS_RESOLUTION
-X = 40
-Y = 85
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsGraphicsSelectFullscreen]
-Tex =MainBar
-TexSBG =MainBar
-Text =SING_OPTIONS_GRAPHICS_FULLSCREEN
-X = 40
-Y = 140
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsGraphicsSelectDepth]
-Tex =MainBar
-TexSBG =MainBar
-Text =SING_OPTIONS_GRAPHICS_DEPTH
-X = 40
-Y = 195
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsGraphicsSelectOscilloscope]
-Tex =MainBar
-TexSBG =MainBar
-Text =SING_OPTIONS_GRAPHICS_OSCILLOSCOPE
-X = 40
-Y = 250
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsGraphicsSelectMovieSize]
-Tex =MainBar
-TexSBG =MainBar
-Text =SING_OPTIONS_GRAPHICS_MOVIE_SIZE
-X = 40
-Y = 305
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsGraphicsButtonExit]
-X = 40
-Y = 360
-W = 230
-H = 70
-Tex =MainBar
-Color = ColorDark
-DColor = Gray
-Type = Font Black
-
-
-[OptionsSound]
-Texts = 3
-
-[OptionsSoundBackground]
-Tex=OptionsBG
-
-[OptionsSoundStatic1]
-X =275
-Y =553
-W =22
-H =22
-Tex=ButtonNavi
-Color =White
-Type=Plain
-Style=5
-
-[OptionsSoundStatic2]
-X =435
-Y =553
-W =22
-H =22
-Tex=ButtonEsc
-Color =White
-Type=Plain
-
-[OptionsSoundText2]
-X =305
-Y =552
-Color=Gray
-Font =1
-Size =7
-Align=0
-Text=SING_LEGEND_NAVIGATE
-
-[OptionsSoundText3]
-X =465
-Y =552
-Color=Gray
-Font =1
-Size =7
-Align=0
-Text=SING_LEGEND_ESC
-
-[OptionsSoundText1]
-X = 50
-Y = 10
-ColR = 0.7
-ColG = 0.7
-ColB = 0.7
-Font = 1
-Size = 25
-Text =SING_OPTIONS_SOUND_WHEREAMI
-
-[OptionsSoundSelectMicBoost]
-Tex =MainBar
-TexSBG =MainBar
-Text =SING_OPTIONS_SOUND_MIC_BOOST
-X = 40
-Y = 85
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsSoundSelectClickAssist]
-Tex =MainBar
-TexSBG =MainBar
-Text =SING_OPTIONS_SOUND_CLICK_ASSIST
-X = 40
-Y = 140
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsSoundSelectBeatClick]
-Tex =MainBar
-TexSBG =MainBar
-Text =SING_OPTIONS_SOUND_BEAT_CLICK
-X = 40
-Y = 195
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsSoundSelectThreshold]
-Tex =MainBar
-TexSBG =MainBar
-Text =SING_OPTIONS_SOUND_THRESHOLD
-X = 40
-Y = 250
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsSoundSelectTwoPlayerMode]
-Tex =MainBar
-TexSBG =MainBar
-Text =SING_OPTIONS_SOUND_TWO_PLAYERS_MODE
-X = 40
-Y = 305
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsSoundSelectSlidePreviewVolume]
-Tex =MainBar
-TexSBG =MainBar
-Text=SING_OPTIONS_SOUND_PREVIEWVOLUME
-X = 40
-Y = 305
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsSoundSelectSlidePreviewFading]
-Tex =MainBar
-TexSBG =MainBar
-Text=SING_OPTIONS_SOUND_PREVIEWFADING
-X = 40
-Y = 360
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsSoundButtonExit]
-X = 40
-Y = 415
-W = 230
-H = 70
-Tex =MainBar
-Color = ColorDark
-DColor = Gray
-Type = Font Black
-
-
-[OptionsLyrics]
-Texts = 3
-
-[OptionsLyricsBackground]
-Tex=OptionsBG
-
-[OptionsLyricsStatic1]
-X =275
-Y =553
-W =22
-H =22
-Tex=ButtonNavi
-Color =White
-Type=Plain
-Style=5
-
-[OptionsLyricsStatic2]
-X =435
-Y =553
-W =22
-H =22
-Tex=ButtonEsc
-Color =White
-Type=Plain
-
-[OptionsLyricsText2]
-X =305
-Y =552
-Color=Gray
-Font =1
-Size =7
-Align=0
-Text=SING_LEGEND_NAVIGATE
-
-[OptionsLyricsText3]
-X =465
-Y =552
-Color=Gray
-Font =1
-Size =7
-Align=0
-Text=SING_LEGEND_ESC
-
-[OptionsLyricsText1]
-X = 50
-Y = 10
-ColR = 0.7
-ColG = 0.7
-ColB = 0.7
-Font = 1
-Size = 25
-Text =SING_OPTIONS_LYRICS_WHEREAMI
-
-[OptionsLyricsSelectLyricsFont]
-Tex =MainBar
-TexSBG =MainBar
-Text =SING_OPTIONS_LYRICS_FONT
-X = 40
-Y = 85
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsLyricsSelectLyricsEffect]
-Tex =MainBar
-TexSBG =MainBar
-Text =SING_OPTIONS_LYRICS_EFFECT
-X = 40
-Y = 140
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsLyricsSelectSolmization]
-Tex =MainBar
-TexSBG =MainBar
-Text =SING_OPTIONS_LYRICS_SOLMIZATION
-X = 40
-Y = 195
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsLyricsButtonExit]
-X = 40
-Y = 250
-W = 230
-H = 70
-Tex =MainBar
-Color = ColorDark
-DColor = Gray
-Type = Font Black
-
-
-[OptionsThemes]
-Texts = 5
-
-[OptionsThemesBackground]
-Tex=OptionsBG
-
-[OptionsThemesStatic1]
-X =275
-Y =553
-W =22
-H =22
-Tex=ButtonNavi
-Color =White
-Type=Plain
-Style=5
-
-[OptionsThemesStatic2]
-X =435
-Y =553
-W =22
-H =22
-Tex=ButtonEsc
-Color =White
-Type=Plain
-
-[OptionsThemesText2]
-X =305
-Y =552
-Color=Gray
-Font =1
-Size =7
-Align=0
-Text=SING_LEGEND_NAVIGATE
-
-[OptionsThemesText3]
-X =465
-Y =552
-Color=Gray
-Font =1
-Size =7
-Align=0
-Text=SING_LEGEND_ESC
-
-[OptionsThemesText1]
-X = 50
-Y = 10
-ColR = 0.7
-ColG = 0.7
-ColB = 0.7
-Font = 1
-Size = 25
-Text =SING_OPTIONS_THEMES_WHEREAMI
-
-[OptionsThemesSelectTheme]
-Tex =MainBar
-TexSBG =MainBar
-Text =SING_OPTIONS_THEMES_THEME
-X = 40
-Y = 85
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsThemesSelectSkin]
-Tex =MainBar
-TexSBG =MainBar
-Text =SING_OPTIONS_THEMES_SKIN
-X = 40
-Y = 140
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsThemesSelectColor]
-Tex =MainBar
-TexSBG =MainBar
-Text =SING_OPTIONS_THEMES_COLOR
-X = 40
-Y = 195
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsThemesButtonExit]
-X = 40
-Y = 250
-W = 230
-H = 70
-Tex =MainBar
-Color = ColorDark
-DColor = Gray
-Type = Font Black
-
-
-[OptionsRecord]
-Texts = 3
-
-[OptionsRecordBackground]
-Tex=OptionsBG
-
-[OptionsRecordStatic1]
-X =275
-Y =553
-W =22
-H =22
-Tex=ButtonNavi
-Color =White
-Type=Plain
-Style=5
-
-[OptionsRecordStatic2]
-X =435
-Y =553
-W =22
-H =22
-Tex=ButtonEsc
-Color =White
-Type=Plain
-
-[OptionsRecordText2]
-X =305
-Y =552
-Color=Gray
-Font =1
-Size =7
-Align=0
-Text=SING_LEGEND_NAVIGATE
-
-[OptionsRecordText3]
-X =465
-Y =552
-Color=Gray
-Font =1
-Size =7
-Align=0
-Text=SING_LEGEND_ESC
-
-[OptionsRecordText1]
-X = 50
-Y = 10
-ColR = 0.7
-ColG = 0.7
-ColB = 0.7
-Font = 1
-Size = 25
-Text=SING_OPTIONS_RECORD_WHEREAMI
-
-[OptionsRecordSelectSlideCard]
-Tex = MainBar
-TexSBG = MainBar
-Text =SING_OPTIONS_RECORD_CARD
-X = 40
-Y = 85
-W = 230
-H = 70
-SkipX = 50
-Fields=1
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex = MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsRecordSelectSlideInput]
-Tex = MainBar
-TexSBG = MainBar
-Text =SING_OPTIONS_RECORD_INPUT
-X = 40
-Y = 140
-W = 230
-H = 70
-SkipX = 50
-Fields=1
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex = MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsRecordSelectSlideChannelL]
-Tex = MainBar
-TexSBG = MainBar
-Text =SING_OPTIONS_RECORD_CHANNELL
-X = 40
-Y = 195
-W = 230
-H = 70
-SkipX = 50
-Fields=7
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex = MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsRecordSelectSlideChannelR]
-Tex = MainBar
-TexSBG = MainBar
-Text =SING_OPTIONS_RECORD_CHANNELR
-X = 40
-Y = 250
-W = 230
-H = 70
-SkipX = 50
-Fields=7
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex = MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsRecordButtonExit]
-X = 40
-Y = 305
-W = 230
-H = 70
-Tex = MainBar
-Color = ColorDark
-DColor = Gray
-Type = Font Black
-
-
-[OptionsAdvanced]
-Texts = 3
-
-[OptionsAdvancedBackground]
-Tex=OptionsBG
-
-[OptionsAdvancedStatic1]
-X =275
-Y =553
-W =22
-H =22
-Tex=ButtonNavi
-Color =White
-Type=Plain
-Style=5
-
-[OptionsAdvancedStatic2]
-X =435
-Y =553
-W =22
-H =22
-Tex=ButtonEsc
-Color =White
-Type=Plain
-
-[OptionsAdvancedText2]
-X =305
-Y =552
-Color=Gray
-Font =1
-Size =7
-Align=0
-Text=SING_LEGEND_NAVIGATE
-
-[OptionsAdvancedText3]
-X =465
-Y =552
-Color=Gray
-Font =1
-Size =7
-Align=0
-Text=SING_LEGEND_ESC
-
-[OptionsAdvancedText1]
-X = 50
-Y = 10
-ColR = 0.7
-ColG = 0.7
-ColB = 0.7
-Font = 1
-Size = 25
-Text=SING_OPTIONS_ADVANCED_WHEREAMI
-
-[OptionsAdvancedSelectLoadAnimation]
-Tex =MainBar
-TexSBG =MainBar
-Text=SING_OPTIONS_ADVANCED_LOADANIMATION
-X = 40
-Y = 85
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsAdvancedSelectScreenFade]
-Tex =MainBar
-TexSBG =MainBar
-Text =SING_OPTIONS_ADVANCED_SCREENFADE
-X = 40
-Y = 140
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsAdvancedSelectEffectSing]
-Tex =MainBar
-TexSBG =MainBar
-Text =SING_OPTIONS_ADVANCED_EFFECTSING
-X = 40
-Y = 195
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsAdvancedSelectLineBonus]
-Tex =MainBar
-TexSBG =MainBar
-Text =SING_OPTIONS_GRAPHICS_LINEBONUS
-X = 40
-Y = 250
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsAdvancedSelectSlideOnSongClick]
-Tex =MainBar
-TexSBG =MainBar
-Text=SING_OPTIONS_ADVANCED_ONSONGCLICK
-X = 40
-Y = 305
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsAdvancedSelectAskbeforeDel]
-Tex =MainBar
-TexSBG =MainBar
-Text =SING_OPTIONS_ADVANCED_ASKBEFOREDEL
-X = 40
-Y = 360
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsAdvancedSelectPartyPopup]
-Tex =MainBar
-TexSBG =MainBar
-Text =SING_OPTIONS_ADVANCED_PARTYPOPUP
-X = 40
-Y = 415
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsAdvancedButtonExit]
-X = 40
-Y = 470
-W = 230
-H = 70
-Tex =MainBar
-Color = ColorDark
-DColor = Gray
-Type = Font Black
-
-[Top5]
-Texts=1
-
-[Top5Background]
-Tex=Top5BG
-
-[Top5Static2]
-Tex =ButtonEnter
-X =350
-Y =553
-W =22
-H =22
-Color =White
-Type=Plain
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[Top5Text2]
-X =380
-Y =553
-Color=Gray
-Font =1
-Size =7
-Text=SING_LEGEND_CONTINUE
-Align=0
-
-[Top5Text1]
-X =100
-Y =50
-Color =Gray
-Font =1
-Size =20
-Align =0
-Text =SING_TOP_5_CHARTS
-
-[Top5Static1]
-Tex=Bar
-X=560
-Y=55
-W=140
-H=50
-Color=ColorLight
-Type=Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[Top5TextLevel]
-X =630
-Y =65
-Color =White
-Font =1
-Size =10
-Align =1
-Text =easy
-
-
-[Top5TextArtistTitle]
-X =100
-Y =120
-Color =Black
-Font =0
-Size =10
-Align =0
-Text =artist - title
-
-[Top5TextName1]
-X =170
-Y =200
-Color =GrayDark
-Font =1
-Size =14
-Align =0
-Text =1. Player1
-
-[Top5TextName2]
-X =150
-Y =290
-Color =GrayDark
-Font =0
-Size =11
-Align =0
-Text =2. Player2
-
-[Top5TextName3]
-X =150
-Y =340
-Color =GrayDark
-Font =0
-Size =11
-Align =0
-Text =3. Player3
-
-[Top5TextName4]
-X =150
-Y =390
-Color =GrayDark
-Font =0
-Size =11
-Align =0
-Text =4. Player4
-
-[Top5TextName5]
-X =150
-Y =440
-Color =GrayDark
-Font =0
-Size =11
-Align =0
-Text =5. Player5
-
-
-[Top5TextScore1]
-X =680
-Y =195
-Color =GrayDark
-Font =1
-Size =17
-Align =2
-Text =00000
-
-[Top5TextScore2]
-X =680
-Y =290
-Color =GrayDark
-Font =1
-Size =14
-Align =2
-Text =00000
-
-[Top5TextScore3]
-X =680
-Y =340
-Color =GrayDark
-Font =1
-Size =14
-Align =2
-Text =00000
-
-[Top5TextScore4]
-X =680
-Y =390
-Color =GrayDark
-Font =1
-Size =14
-Align =2
-Text =00000
-
-[Top5TextScore5]
-X =680
-Y =440
-Color =GrayDark
-Font =1
-Size =14
-Align =2
-Text =00000
-
-[Top5TextNumber1]
-X =130
-Y =202
-Color =White
-Font =1
-Size =11
-Align =1
-Text =1
-
-[Top5TextNumber2]
-X =120
-Y =293
-Color =White
-Font =1
-Size =9
-Align =1
-Text =2
-
-[Top5TextNumber3]
-X =120
-Y =343
-Color =White
-Font =1
-Size =9
-Align =1
-Text =3
-
-[Top5TextNumber4]
-X =120
-Y =393
-Color =White
-Font =1
-Size =9
-Align =1
-Text =4
-
-[Top5TextNumber5]
-X =120
-Y =443
-Color =White
-Font =1
-Size =9
-Align =1
-Text =5
-
-[Top5StaticNumber1]
-Tex=Bar
-X=100
-Y=190
-W=60
-H=60
-Color=ColorLight
-Type=Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[Top5StaticNumber2]
-Tex=Bar
-X=100
-Y=286
-W=40
-H=40
-Color=ColorLight
-Type=Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[Top5StaticNumber3]
-Tex=Bar
-X=100
-Y=336
-W=40
-H=40
-Color=ColorLight
-Type=Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[Top5StaticNumber4]
-Tex=Bar
-X=100
-Y=386
-W=40
-H=40
-Color=ColorLight
-Type=Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[Top5StaticNumber5]
-Tex=Bar
-X=100
-Y=436
-W=40
-H=40
-Color=ColorLight
-Type=Font Black
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[Level]
-Texts=2
-
-[LevelBackground]
-Tex=MainBG
-
-[LevelStatic2]
-Tex =ButtonNavi
-X =196
-Y =553
-W =22
-H =22
-Color =White
-Type=Plain
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[LevelStatic3]
-Tex =ButtonEnter
-X =350
-Y =553
-W =22
-H =22
-Color =White
-Type=Plain
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[LevelStatic4]
-Tex =ButtonEsc
-X =510
-Y =553
-W =22
-H =22
-Color =White
-Type=Plain
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[LevelText3]
-X =226
-Y =553
-Color=Gray
-Font =1
-Size =7
-Text=SING_LEGEND_NAVIGATE
-Align=0
-
-[LevelText4]
-X =380
-Y =553
-Color=Gray
-Font =1
-Size =7
-Text=SING_LEGEND_SELECT
-Align=0
-
-[LevelText5]
-X =540
-Y =553
-Color=Gray
-Font =1
-Size =7
-Text=SING_LEGEND_ESC
-Align=0
-
-[LevelStatic1]
-X=20
-Y=250
-W=32
-H=32
-Tex=MainIcon
-Type=Font Black
-Color=ColorDark
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[LevelButtonEasy]
-Tex=Button
-X=25
-Y=310
-W=250
-H=70
-Type=Font Black
-Texts=1
-Color=ColorDark
-Int = 1
-DColor = White
-DInt = 0.5
-
-[LevelButtonMedium]
-Tex=Button
-X=275
-Y=310
-W=250
-H=70
-Type=Font Black
-Texts=1
-Color=ColorDark
-Int = 1
-DColor = White
-DInt = 0.5
-
-[LevelButtonHard]
-Tex=Button
-X=525
-Y=310
-W=250
-H=70
-Type=Font Black
-Texts=1
-Color=ColorDark
-Int = 1
-DColor = White
-DInt = 0.5
-
-[LevelText1]
-X=30
-Y=180
-Font=1
-Size=22
-Align=0
-Text=SING_DIFFICULTY_WHEREAMI
-Color=GrayLight
-
-[LevelText2]
-X=50
-Y=248
-Font=1
-Size=10
-Align=0
-Text=SING_DIFFICULTY_DESC
-Color=GrayDark
-
-[LevelButtonEasyText1]
-X=115
-Y=20
-Font=1
-Size=9
-Align=1
-Text=SING_EASY
-Color=White
-
-[LevelButtonMediumText1]
-X=115
-Y=20
-Font=1
-Size=9
-Align=1
-Text=SING_MEDIUM
-Color=White
-
-[LevelButtonHardText1]
-X=115
-Y=20
-Font=1
-Size=9
-Align=1
-Text=SING_HARD
-Color=White
-
-
-[Name]
-Texts=2
-
-[NameBackground]
-Tex=MainBG
-
-[NameStatic2]
-Tex =ButtonNavi
-X =176
-Y =553
-W =22
-H =22
-Color =White
-Type=Plain
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[NameStatic3]
-Tex =ButtonAZ
-X =330
-Y =553
-W =22
-H =22
-Color =White
-Type=Plain
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[NameStatic4]
-Tex =ButtonEnter
-X =532
-Y =553
-W =22
-H =22
-Color =White
-Type=Plain
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[NameText3]
-X =206
-Y =553
-Color=Gray
-Font =1
-Size =7
-Text=SING_LEGEND_NAVIGATE
-Align=0
-
-[NameText4]
-X =360
-Y =553
-Color=Gray
-Font =1
-Size =7
-Text=SING_PLAYER_ENTER_NAME
-Align=0
-
-[NameText5]
-X =562
-Y =553
-Color=Gray
-Font =1
-Size =7
-Text=SING_LEGEND_CONTINUE
-Align=0
-
-[NameStatic1]
-X=20
-Y=250
-W=32
-H=32
-Tex=MainIcon
-Type=Font Black
-Color=ColorDark
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[NameText1]
-X=30
-Y=180
-Font=1
-Size=22
-Align=0
-Text=SING_PLAYER_WHEREAMI
-Color=GrayLight
-
-[NameText2]
-X=50
-Y=248
-Font=1
-Size=10
-Align=0
-Text=SING_PLAYER_DESC
-Color=GrayDark
-
-[NameButtonPlayer1]
-Tex=Button
-X=25
-Y=310
-W=250
-H=70
-Type=Font Black
-Texts=1
-Color=P1Dark
-DColor=P1Lightest
-DInt=0.5
-
-[NameButtonPlayer1Text1]
-X=115
-Y=20
-Font=1
-Size=9
-Align=1
-Text=
-Color=White
-
-[NameButtonPlayer2]
-Tex=Button
-X=25
-Y=380
-W=250
-H=70
-Type=Font Black
-Texts=1
-Color=P2Dark
-DColor=P2Lightest
-DInt=0.5
-
-[NameButtonPlayer2Text1]
-X=115
-Y=20
-Font=1
-Size=9
-Align=1
-Text=
-Color=White
-
-[NameButtonPlayer3]
-Tex=Button
-X=25
-Y=450
-W=250
-H=70
-Type=Font Black
-Texts=1
-Color=P3Dark
-DColor=P3Lightest
-DInt=0.5
-
-[NameButtonPlayer3Text1]
-X=115
-Y=20
-Font=1
-Size=9
-Align=1
-Text=
-Color=White
-
-[NameButtonPlayer4]
-Tex=Button
-X=425
-Y=310
-W=250
-H=70
-Type=Font Black
-Texts=1
-Color=P4Dark
-DColor=P4Lightest
-DInt=0.5
-
-[NameButtonPlayer4Text1]
-X=115
-Y=20
-Font=1
-Size=9
-Align=1
-Text=
-Color=White
-
-[NameButtonPlayer5]
-Tex=Button
-X=425
-Y=380
-W=250
-H=70
-Type=Font Black
-Texts=1
-Color=P5Dark
-DColor=P5Lightest
-DInt=0.5
-
-[NameButtonPlayer5Text1]
-X=115
-Y=20
-Font=1
-Size=9
-Align=1
-Text=
-Color=White
-
-[NameButtonPlayer6]
-Tex=Button
-X=425
-Y=450
-W=250
-H=70
-Type=Font Black
-Texts=1
-Color=P6Dark
-DColor=P6Lightest
-DInt=0.5
-
-[NameButtonPlayer6Text1]
-X=115
-Y=20
-Font=1
-Size=9
-Align=1
-Text=
-Color=White
-
-[PartyNewRound]
-Texts =7
-
-[PartyNewRoundStatic1]
-X =0
-Y =549
-W =252
-H =28
-Tex=Leiste1
-Color =Gray
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[PartyNewRoundStatic2]
-X =254
-Y =549
-W =548
-H =28
-Tex=Leiste2
-Color =Gray
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[PartyNewRoundStatic3]
-X =37
-Y =72
-W =27
-H =27
-Color =ColorDark
-Tex =MainIcon
-Type=Font Black
-
-[PartyNewRoundText1]
-X =40
-Y =4
-Font = 1
-Size = 22
-Color =GrayLight
-Text=PARTY_MODE
-
-[PartyNewRoundText2]
-X =62
-Y =67
-Color=Black
-Font =1
-Size =9
-Align =0
-Text=PARTY_ROUND_DESC
-
-[PartyNewRoundText3]
-X =398
-Y =552
-Color=Gray
-Font =1
-Size =7
-Align=2
-Text=PARTY_ROUND_WHEREAMI
-
-[PartyNewRoundText4]
-X =450
-Y =552
-Color=Gray
-Font =1
-Size =7
-Align=0
-Text=PARTY_ROUND_LEGEND_CONTINUE
-
-[PartyNewRoundText5]
-X =460
-Y =100
-Color =White
-Font =0
-Size =10
-Text =PARTY_ROUND
-Align=0
-
-[PartyNewRoundText6]
-X =600
-Y =100
-Color =White
-Font =0
-Size =10
-Text =PARTY_ROUND_WINNER
-Align=0
-
-[PartyNewRoundText7]
-X =448
-Y =350
-Color =White
-Font =0
-Size =18
-Text =PARTY_ROUND
-Align=2
-
-[PartyNewRoundTextTeam1Players]
-X =30
-Y =137
-Color=White
-Font =0
-Size =7
-Align=0
-Text=Dummytext, Player2, Player3, Player4
-
-[PartyNewRoundTextTeam2Players]
-X =30
-Y =218
-Color=White
-Font =0
-Size =7
-Align=0
-Text=Dummytext, Player2, Player3, Player4
-
-[PartyNewRoundTextTeam3Players]
-X =30
-Y =299
-Color=White
-Font =0
-Size =7
-Align=0
-Text=Dummytext, Player2, Player3, Player4
-
-[PartyNewRoundStatic4]
-Tex =PartyRoundBG1
-X =450
-Y =103
-W = 330
-H = 24
-Int=1
-Color =Gray
-Type=Font Black
-
-[PartyNewRoundStatic5]
-X =420
-Y =553
-W =26
-H =22
-Tex=ButtonEnter
-Color =White
-Type=Plain
-
-[PartyNewRoundStatic6]
-Tex =PartyRoundBG3
-X =250
-Y =350
-W = 300
-H = 50
-Int=1
-Color =Gray
-Type=Font Black
-
-[PartyNewRoundStatic7]
-Tex =PartyRoundBG4
-X =50
-Y =495
-W = 700
-H = 30
-Int=1
-Color =GrayLight
-Type=Font Black
-
-[PartyNewRoundStaticTeam1]
-Tex =PartyTeamButton1
-X =20
-Y =110
-W =400
-H =50
-Int=1
-Color =P1Dark
-Type=Font Black
-Reflection=0
-
-[PartyNewRoundStaticTeam2]
-Tex =PartyTeamButton1
-X =20
-Y =191
-W =400
-H =50
-Int=1
-Color =P2Dark
-Type=Font Black
-Reflection=0
-
-[PartyNewRoundStaticTeam3]
-Tex =PartyTeamButton1
-X =20
-Y =272
-W =400
-H =50
-Int=1
-Color =P3Dark
-Type=Font Black
-Reflection=0
-
-[PartyNewRoundStaticNextPlayer1]
-Tex=PartyPlayerButton
-X=155
-Y=415
-W=150
-H=50
-Type=Font Black
-Texts=1
-Color =P1Light
-Reflection=1
-ReflectionSpacing=2
-
-[PartyNewRoundStaticNextPlayer2]
-Tex=PartyPlayerButton
-X=325
-Y=415
-W=150
-H=50
-Type=Font Black
-Texts=1
-Color =P2Light
-Reflection=1
-ReflectionSpacing=2
-
-[PartyNewRoundStaticNextPlayer3]
-Tex=PartyPlayerButton
-X=495
-Y=415
-W=150
-H=50
-Type=Font Black
-Texts=1
-Color =P3Light
-Reflection=1
-ReflectionSpacing=2
-
-[PartyNewRoundTextRound1]
-X =460
-Y =133
-Color =White
-Font =0
-Size =8
-Text =Round 1
-Align=0
-
-[PartyNewRoundTextRound2]
-X =460
-Y =162
-Color =White
-Font =0
-Size =8
-Text =Round 2
-Align=0
-
-[PartyNewRoundTextRound3]
-X =460
-Y =191
-Color =White
-Font =0
-Size =8
-Text =Round 3
-Align=0
-
-[PartyNewRoundTextRound4]
-X =460
-Y =220
-Color =White
-Font =0
-Size =8
-Text =Round 4
-Align=0
-
-[PartyNewRoundTextRound5]
-X =460
-Y =249
-Color =White
-Font =0
-Size =8
-Text =Round 5
-Align=0
-
-[PartyNewRoundTextRound6]
-X =460
-Y =278
-Color =White
-Font =0
-Size =8
-Text =Round 6
-Align=0
-
-[PartyNewRoundTextRound7]
-X =460
-Y =307
-Color =White
-Font =0
-Size =8
-Text =Round 7
-Align=0
-
-[PartyNewRoundTextWinner1]
-X =600
-Y =133
-Color =White
-Font =0
-Size =8
-Text =Winner 1
-Align=0
-
-[PartyNewRoundTextWinner2]
-X =600
-Y =162
-Color =White
-Font =0
-Size =8
-Text =Winner 2
-Align=0
-
-[PartyNewRoundTextWinner3]
-X =600
-Y =191
-Color =White
-Font =0
-Size =8
-Text =Winner 3
-Align=0
-
-[PartyNewRoundTextWinner4]
-X =600
-Y =220
-Color =White
-Font =0
-Size =8
-Text =Winner 4
-Align=0
-
-[PartyNewRoundTextWinner5]
-X =600
-Y =249
-Color =White
-Font =0
-Size =8
-Text =Winner 5
-Align=0
-
-[PartyNewRoundTextWinner6]
-X =600
-Y =278
-Color =White
-Font =0
-Size =8
-Text =Winner 6
-Align=0
-
-[PartyNewRoundTextWinner7]
-X =600
-Y =307
-Color =White
-Font =0
-Size =8
-Text =Winner 7
-Align=0
-
-[PartyNewRoundStaticRound1]
-Tex =PartyRoundBG2
-X =450
-Y =135
-W = 330
-H = 20
-Color =GrayLight
-Type =Font Black
-
-[PartyNewRoundStaticRound2]
-Tex =PartyRoundBG2
-X =450
-Y =164
-W = 330
-H = 20
-Color =GrayLight
-Type =Font Black
-
-[PartyNewRoundStaticRound3]
-Tex =PartyRoundBG2
-X =450
-Y =193
-W = 330
-H = 20
-Color =GrayLight
-Type =Font Black
-
-[PartyNewRoundStaticRound4]
-Tex =PartyRoundBG2
-X =450
-Y =222
-W = 330
-H = 20
-Color =GrayLight
-Type =Font Black
-
-[PartyNewRoundStaticRound5]
-Tex =PartyRoundBG2
-X =450
-Y =251
-W = 330
-H = 20
-Color =GrayLight
-Type =Font Black
-
-[PartyNewRoundStaticRound6]
-Tex =PartyRoundBG2
-X =450
-Y =280
-W = 330
-H = 20
-Color =GrayLight
-Type =Font Black
-
-[PartyNewRoundStaticRound7]
-Tex =PartyRoundBG2
-X =450
-Y =309
-W = 330
-H = 20
-Color =GrayLight
-Type =Font Black
-
-[PartyNewRoundTextNextRound]
-X =400
-Y =495
-Color =White
-Font =0
-Size =10
-Text =Next Round
-Align=1
-
-[PartyNewRoundTextNextRoundNo]
-X =457
-Y =350
-Color =White
-Font =0
-Size =18
-Text =99
-Align=0
-
-[PartyNewRoundTextScoreTeam1]
-X =390
-Y =110
-Color =White
-Font =0
-Size =17
-Text =3000
-Align=1
-
-[PartyNewRoundTextScoreTeam2]
-X =390
-Y =191
-Color =White
-Font =0
-Size =17
-Text =2000
-Align=1
-
-[PartyNewRoundTextScoreTeam3]
-X =390
-Y =272
-Color =White
-Font =0
-Size =17
-Text =1000
-Align=1
-
-[PartyNewRoundTextNameTeam1]
-X =30
-Y =108
-Color =White
-Font =0
-Size =12
-Text =Team 1
-Align=0
-
-[PartyNewRoundTextNameTeam2]
-X =30
-Y =189
-Color =White
-Font =0
-Size =12
-Text =Team 2
-Align=0
-
-[PartyNewRoundTextNameTeam3]
-X =30
-Y =270
-Color =White
-Font =0
-Size =12
-Text =Team 3
-Align=0
-
-[PartyNewRoundTextNextPlayer1]
-X =230
-Y =425
-Color =White
-Font =0
-Size =10
-Text =Player 1
-Align=1
-
-[PartyNewRoundTextNextPlayer2]
-X =400
-Y =425
-Color =White
-Font =0
-Size =10
-Text =Player 2
-Align=1
-
-[PartyNewRoundTextNextPlayer3]
-X =570
-Y =425
-Color =White
-Font =0
-Size =10
-Text =Player 3
-Align=1
-
-[PartyScore]
-Texts=5
-
-[PartyScoreBackground]
-Tex=PartyBG
-
-[PartyScoreDecoTextures]
-ChangeTextures =1
-
-FirstTexture =PartyScoreDeco
-FirstTyp =Font Black
-FirstColor =Gold
-
-SecondTexture =PartyScoreDeco
-SecondTyp =Font Black
-SecondColor =Silver
-
-ThirdTexture =PartyScoreDeco
-ThirdTyp =Font Black
-ThirdColor =Bronze
-
-[PartyScoreStatic1]
-X =0
-Y =549
-W =252
-H =28
-Tex=Leiste1
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[PartyScoreStatic2]
-X =254
-Y =549
-W =548
-H =28
-Tex=Leiste2
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[PartyScoreStatic3]
-X =37
-Y =72
-W =27
-H =27
-Color =ColorDark
-Tex =MainIcon
-Type=Font Black
-
-[PartyScoreStatic4]
-X =410
-Y =553
-W =26
-H =22
-Tex=ButtonEnter
-Color =White
-Type=Plain
-
-[PartyScoreText1]
-X =40
-Y =4
-ColR = 0.7
-ColG = 0.7
-ColB = 0.7
-Font = 1
-Size = 22
-Color =GrayLight
-Text=PARTY_MODE
-
-[PartyScoreText2]
-X =62
-Y =67
-Color=Black
-Font =1
-Size =9
-Align =0
-Text=PARTY_SCORE_DESC
-
-[PartyScoreText3]
-X =388
-Y =552
-Color=Gray
-Font =1
-Size =7
-Align=2
-Text=PARTY_SCORE_WHEREAMI
-
-[PartyScoreText4]
-X =440
-Y =552
-Color=Gray
-Font =1
-Size =7
-Align=0
-Text=PARTY_LEGEND_CONTINUE
-
-[PartyScoreStatic5]
-Tex =PartyScoreBG1
-X =50
-Y =100
-W = 700
-H = 80
-Int=1
-Color =Gray
-Type=Font Black
-
-[PartyScoreStatic6]
-Tex =PartyScoreBG2
-X =50
-Y =495
-W = 700
-H = 20
-Int=1
-Color =GrayLight
-Type=Font Black
-
-[PartyScoreText5]
-X =400
-Y =136
-Color =White
-Font =0
-Size =18
-Text =PARTY_SCORE_WINS2
-Align=1
-
-[PartyScoreTextWinner]
-X =400
-Y =98
-Color =White
-Font =0
-Size =18
-Text =The Winner is...
-Align=1
-
-[PartyScoreTextScoreTeam1]
-X =568
-Y =198
-Color =White
-Font =0
-Size =12
-Text =3000
-Align=2
-
-[PartyScoreTextScoreTeam2]
-X =568
-Y =298
-Color =White
-Font =0
-Size =12
-Text =2000
-Align=2
-
-[PartyScoreTextScoreTeam3]
-X =568
-Y =398
-Color =White
-Font =0
-Size =12
-Text =1000
-Align=2
-
-[PartyScoreTextNameTeam1]
-X =188
-Y =198
-Font=0
-Size=12
-Align=0
-Text=Team 1
-Color=White
-
-[PartyScoreTextNameTeam2]
-X =188
-Y =298
-Color =White
-Font =0
-Size =12
-Text =Team 2
-Align=0
-
-[PartyScoreTextNameTeam3]
-X =188
-Y =398
-Color =White
-Font =0
-Size =12
-Text =Team 3
-Align=0
-
-[PartyScoreStaticTeam1]
-X =188
-Y =230
-W =380
-H =16
-Z =1
-Tex=PartyTeamPoints
-Color =P1Dark
-Int = 1
-Type=Font Black
-Reflection=1
-ReflectionSpacing=12
-
-[PartyScoreStaticTeam1BG]
-Tex=PartyTeamButton2
-X=178
-Y=200
-W=400
-H=50
-Type=Font Black
-Color =P1Dark
-Reflection=1
-ReflectionSpacing=2
-
-[PartyScoreStaticTeam1Deco]
-Tex =PartyScoreDeco
-X = 563
-Y = 191
-W = 64
-H = 64
-Type =Font Black
-Color =Gold
-Reflection=1
-ReflectionSpacing=-5
-
-[PartyScoreStaticTeam2]
-X =188
-Y =330
-W =380
-H =15
-Z =1
-Tex=PartyTeamPoints
-Color =P2Dark
-Int = 1
-Type=Font Black
-Reflection=1
-ReflectionSpacing=12
-
-[PartyScoreStaticTeam2BG]
-Tex=PartyTeamButton2
-X=178
-Y=300
-W=400
-H=50
-Type=Font Black
-Color =P2Dark
-Reflection=1
-ReflectionSpacing=2
-
-[PartyScoreStaticTeam2Deco]
-Tex =PartyScoreDeco
-X = 563
-Y = 291
-W = 64
-H = 64
-Type =Font Black
-Color =Gold
-Reflection=1
-ReflectionSpacing=-5
-
-[PartyScoreStaticTeam3]
-X =188
-Y =430
-W =380
-H =15
-Z =1
-Tex=PartyTeamPoints
-Color =P3Dark
-Int = 1
-Type=Font Black
-Reflection=1
-ReflectionSpacing=12
-
-[PartyScoreStaticTeam3BG]
-Tex=PartyTeamButton2
-X=178
-Y=400
-W=400
-H=50
-Type=Font Black
-Color =P3Dark
-Reflection=1
-ReflectionSpacing=2
-
-[PartyScoreStaticTeam3Deco]
-Tex =PartyScoreDeco
-X = 563
-Y = 391
-W = 64
-H = 64
-Type =Font Black
-Color =Gold
-Reflection=1
-ReflectionSpacing=-5
-
-[PartyWin]
-Texts=4
-
-[PartyWinBackground]
-Tex=PartyBG
-
-[PartyWinStatic1]
-X =0
-Y =549
-W =252
-H =28
-Tex=Leiste1
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[PartyWinStatic2]
-X =254
-Y =549
-W =548
-H =28
-Tex=Leiste2
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[PartyWinStatic3]
-X =37
-Y =72
-W =27
-H =27
-Color =ColorDark
-Tex =MainIcon
-Type=Font Black
-
-[PartyWinStatic4]
-X =380
-Y =553
-W =26
-H =22
-Tex=ButtonEnter
-Color =White
-Type=Plain
-
-[PartyWinText1]
-X =40
-Y =4
-ColR = 0.7
-ColG = 0.7
-ColB = 0.7
-Font = 1
-Size = 22
-Color =GrayLight
-Text=PARTY_MODE
-
-[PartyWinText2]
-X =62
-Y =67
-Color=Black
-Font =1
-Size =9
-Align =0
-Text=PARTY_WIN_DESC
-
-[PartyWinText3]
-X =358
-Y =552
-Color=Gray
-Font =1
-Size =7
-Align=2
-Text=PARTY_WIN_WHEREAMI
-
-[PartyWinText4]
-X =410
-Y =552
-Color=Gray
-Font =1
-Size =7
-Align=0
-Text=PARTY_WIN_LEGEND_CONTINUE
-
-#[PartyWinTextWinner]
-#X =150
-#Y =120
-#Color =White
-#Font =1
-#Size =14
-#Text =The Winner is...
-#Align=0
-
-[PartyWinTextScoreTeam1]
-X =699
-Y =183
-Color =White
-Font =0
-Size =19
-Text =3000
-Align=2
-
-[PartyWinTextScoreTeam2]
-X =669
-Y =298
-Color =White
-Font =0
-Size =12
-Text =2000
-Align=2
-
-[PartyWinTextScoreTeam3]
-X =649
-Y =398
-Color =White
-Font =0
-Size =9
-Text =1000
-Align=2
-
-[PartyWinTextNameTeam1]
-X =169
-Y =183
-Font=0
-Size=19
-Align=0
-Text=Team 1
-Color=White
-
-[PartyWinTextNameTeam2]
-X =289
-Y =298
-Color =White
-Font =0
-Size =12
-Text =Team 2
-Align=0
-
-[PartyWinTextNameTeam3]
-X =369
-Y =398
-Color =White
-Font =0
-Size =9
-Text =Team 3
-Align=0
-
-[PartyWinStaticTeam1]
-X =169
-Y =230
-W =530
-H =16
-Z =1
-Tex=PartyTeamPoints
-Color =TeamColor
-Int = 1
-Type=Font Black
-Reflection=1
-ReflectionSpacing=12
-
-[PartyWinStaticTeam1BG]
-Tex=PartyTeamButton3
-X=159
-Y=185
-W=550
-H=65
-Type=Font Black
-Color =TeamColor
-Reflection=1
-ReflectionSpacing=2
-
-[PartyWinStaticTeam1Rank1]
-X =169
-Y =230
-W =530
-H =16
-Z =1
-Tex=PartyTeamPoints
-Color =P1Dark
-Int = 1
-Type=Font Black
-Reflection=1
-ReflectionSpacing=12
-
-[PartyWinStaticTeam1BGRank1]
-Tex=PartyTeamButton3
-X=159
-Y=185
-W=550
-H=65
-Type=Font Black
-Color =P1Dark
-Reflection=1
-ReflectionSpacing=2
-
-[PartyWinStaticTeam1Rank2]
-X =289
-Y =330
-W =380
-H =15
-Z =1
-Tex=PartyTeamPoints
-Color =P1Dark
-Int = 1
-Type=Font Black
-Reflection=1
-ReflectionSpacing=12
-
-[PartyWinStaticTeam1BGRank2]
-Tex=PartyTeamButton3
-X=279
-Y=300
-W=400
-H=50
-Type=Font Black
-Color =P1Dark
-Reflection=1
-ReflectionSpacing=2
-
-[PartyWinStaticTeam1Rank3]
-X =369
-Y =420
-W =280
-H =15
-Z =1
-Tex=PartyTeamPoints
-Color =P1Dark
-Int = 1
-Type=Font Black
-Reflection=1
-ReflectionSpacing=12
-
-[PartyWinStaticTeam1BGRank3]
-Tex=PartyTeamButton3
-X=359
-Y=400
-W=300
-H=40
-Type=Font Black
-Color =P1Dark
-Reflection=1
-ReflectionSpacing=2
-
-
-[PartyWinStaticTeam1Deco]
-Tex =PartyWinDeco1
-X = 91
-Y = 176
-W = 79
-H = 79
-Type =Font Black
-Color =Gold
-Reflection=1
-ReflectionSpacing=3
-
-[PartyWinStaticTeam2]
-X =289
-Y =330
-W =380
-H =15
-Z =1
-Tex=PartyTeamPoints
-Color =TeamColor
-Int = 1
-Type=Font Black
-Reflection=1
-ReflectionSpacing=12
-
-[PartyWinStaticTeam2BG]
-Tex=PartyTeamButton4
-X=279
-Y=300
-W=400
-H=50
-Type=Font Black
-Color =TeamColor
-Reflection=1
-ReflectionSpacing=2
-
-[PartyWinStaticTeam2Rank1]
-X =169
-Y =230
-W =530
-H =16
-Z =1
-Tex=PartyTeamButton3
-Color =P2Dark
-Int = 1
-Type=Font Black
-Reflection=1
-ReflectionSpacing=12
-
-[PartyWinStaticTeam2BGRank1]
-Tex=PartyTeamButton4
-X=159
-Y=185
-W=550
-H=65
-Type=Font Black
-Color =P2Dark
-Reflection=1
-ReflectionSpacing=2
-
-[PartyWinStaticTeam2Rank2]
-X =289
-Y =330
-W =380
-H =15
-Z =1
-Tex=PartyTeamPoints
-Color =P2Dark
-Int = 1
-Type=Font Black
-Reflection=1
-ReflectionSpacing=12
-
-[PartyWinStaticTeam2BGRank2]
-Tex=PartyTeamButton4
-X=279
-Y=300
-W=400
-H=50
-Type=Font Black
-Color =P2Dark
-Reflection=1
-ReflectionSpacing=2
-
-[PartyWinStaticTeam2Rank3]
-X =369
-Y =420
-W =280
-H =15
-Z =1
-Tex=PartyTeamPoints
-Color =TeamColor
-Int = 1
-Type=Font Black
-Reflection=1
-ReflectionSpacing=12
-
-[PartyWinStaticTeam2BGRank3]
-Tex=PartyTeamButton4
-X=359
-Y=400
-W=300
-H=40
-Type=Font Black
-Color =TeamColor
-Reflection=1
-ReflectionSpacing=2
-
-[PartyWinStaticTeam2Deco]
-Tex =PartyWinDeco2
-X = 226
-Y = 291
-W = 64
-H = 64
-Type =Font Black
-Color =Silver
-Reflection=1
-ReflectionSpacing=3
-
-[PartyWinStaticTeam3]
-X =369
-Y =420
-W =280
-H =15
-Z =1
-Tex=PartyTeamPoints
-Color =TeamColor
-Int = 1
-Type=Font Black
-Reflection=1
-ReflectionSpacing=12
-
-[PartyWinStaticTeam3BG]
-Tex=PartyTeamButton5
-X=359
-Y=400
-W=300
-H=40
-Type=Font Black
-Color =TeamColor
-Reflection=1
-ReflectionSpacing=2
-
-[PartyWinStaticTeam3Rank1]
-X =169
-Y =230
-W =530
-H =16
-Z =1
-Tex=PartyTeamPoints
-Color =P3Dark
-Int = 1
-Type=Font Black
-Reflection=1
-ReflectionSpacing=12
-
-[PartyWinStaticTeam3BGRank1]
-Tex=PartyTeamButton3
-X=159
-Y=185
-W=550
-H=65
-Type=Font Black
-Color =P3Dark
-Reflection=1
-ReflectionSpacing=2
-
-[PartyWinStaticTeam3Rank2]
-X =289
-Y =330
-W =380
-H =15
-Z =1
-Tex=PartyTeamPoints
-Color =P3Dark
-Int = 1
-Type=Font Black
-Reflection=1
-ReflectionSpacing=12
-
-[PartyWinStaticTeam3BGRank2]
-Tex=PartyTeamButton5
-X=279
-Y=300
-W=400
-H=50
-Type=Font Black
-Color =P3Dark
-Reflection=1
-ReflectionSpacing=2
-
-[PartyWinStaticTeam3Rank3]
-X =369
-Y =420
-W =280
-H =15
-Z =1
-Tex=PartyTeamPoints
-Color =P3Dark
-Int = 1
-Type=Font Black
-Reflection=1
-ReflectionSpacing=12
-
-[PartyWinStaticTeam3BGRank3]
-Tex=PartyTeamButton5
-X=359
-Y=400
-W=300
-H=40
-Type=Font Black
-Color =P3Dark
-Reflection=1
-ReflectionSpacing=2
-
-[PartyWinStaticTeam3Deco]
-Tex =PartyWinDeco3
-X = 316
-Y = 391
-W = 54
-H = 54
-Type =Font Black
-Color =Bronze
-Reflection=1
-ReflectionSpacing=3
-
-[PartyOptions]
-Texts = 3
-
-[PartyOptionsBackground]
-Tex=PartyBG
-
-[PartyOptionsStatic1]
-Tex =ButtonNavi
-X =196
-Y =553
-W =22
-H =22
-Color =White
-Type=Plain
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[PartyOptionsStatic2]
-Tex =ButtonEnter
-X =350
-Y =553
-W =22
-H =22
-Color =White
-Type=Plain
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[PartyOptionsStatic3]
-Tex =ButtonEsc
-X =510
-Y =553
-W =22
-H =22
-Color =White
-Type=Plain
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[PartyOptionsText2]
-X =226
-Y =553
-Color=Gray
-Font =1
-Size =7
-Text=SING_LEGEND_NAVIGATE
-Align=0
-
-[PartyOptionsText3]
-X =380
-Y =553
-Color=Gray
-Font =1
-Size =7
-Text=SING_LEGEND_CONTINUE
-Align=0
-
-[PartyOptionsText4]
-X =540
-Y =553
-Color=Gray
-Font =1
-Size =7
-Text=SING_LEGEND_ESC
-Align=0
-
-[PartyOptionsText1]
-X = 50
-Y = 10
-ColR = 0.7
-ColG = 0.7
-ColB = 0.7
-Font = 1
-Size = 25
-Text=PARTY_OPTIONS_WHEREAMI
-
-[PartyOptionsSelectLevel]
-Tex = MainBar
-TexSBG = MainBar
-Text =PARTY_DIFFICULTY
-X = 40
-Y = 85
-W = 230
-H = 70
-SkipX = 50
-Fields=1
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex = MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[PartyOptionsSelectPlayList]
-Tex = MainBar
-TexSBG = MainBar
-Text =PARTY_PLAYLIST
-X = 40
-Y = 140
-W = 230
-H = 70
-SkipX = 50
-Fields=1
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex = MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[PartyOptionsSelectPlayList2]
-Tex = MainBar
-TexSBG = MainBar
-Text =PARTY_PLAYLIST
-X = 40
-Y = 195
-W = 230
-H = 70
-SkipX = 50
-Fields=1
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex = MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[PartyOptionsSelectRounds]
-Tex = MainBar
-TexSBG = MainBar
-Text =PARTY_ROUNDS
-X = 40
-Y = 250
-W = 230
-H = 70
-SkipX = 50
-Fields=7
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex = MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[PartyOptionsSelectTeams]
-Tex = MainBar
-TexSBG = MainBar
-Text =PARTY_TEAMS
-X = 40
-Y = 305
-W = 230
-H = 70
-SkipX = 50
-Fields=7
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex = MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[PartyOptionsSelectPlayers1]
-Tex = MainBar
-TexSBG = MainBar
-Text =PARTY_TEAMS_PLAYER1
-X = 40
-Y = 360
-W = 230
-H = 70
-SkipX = 50
-Fields=7
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex = MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[PartyOptionsSelectPlayers2]
-Tex = MainBar
-TexSBG = MainBar
-Text =PARTY_TEAMS_PLAYER2
-X = 40
-Y = 415
-W = 230
-H = 70
-SkipX = 50
-Fields=7
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex = MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[PartyOptionsSelectPlayers3]
-Tex = MainBar
-TexSBG = MainBar
-Text =PARTY_TEAMS_PLAYER3
-X = 40
-Y = 470
-W = 230
-H = 70
-SkipX = 50
-Fields=7
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex = MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-
-[PartyPlayer]
-Texts=6
-
-[PartyPlayerBackground]
-Tex=PartyBG
-
-[PartyPlayerStatic1]
-X =40
-Y =22
-W =27
-H =27
-Color =White
-Tex =PartyIcon
-Type=Font Black
-
-[PartyPlayerText1]
-X = 50
-Y = 10
-ColR = 0.7
-ColG = 0.7
-ColB = 0.7
-Font = 1
-Size = 25
-Text=PARTY_PLAYER_WHEREAMI
-
-[PartyPlayerStatic2]
-Tex =ButtonNavi
-X =176
-Y =553
-W =22
-H =22
-Color =White
-Type=Plain
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[PartyPlayerStatic3]
-Tex =ButtonAZ
-X =330
-Y =553
-W =22
-H =22
-Color =White
-Type=Plain
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[PartyPlayerStatic4]
-Tex =ButtonEnter
-X =532
-Y =553
-W =22
-H =22
-Color =White
-Type=Plain
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[PartyPlayerText2]
-X =206
-Y =553
-Color=Gray
-Font =1
-Size =7
-Text=SING_LEGEND_NAVIGATE
-Align=0
-
-[PartyPlayerText3]
-X =360
-Y =553
-Color=Gray
-Font =1
-Size =7
-Text=SING_PLAYER_ENTER_NAME
-Align=0
-
-[PartyPlayerText4]
-X =562
-Y =553
-Color=Gray
-Font =1
-Size =7
-Text=SING_LEGEND_CONTINUE
-Align=0
-
-[PartyPlayerTeam1Name]
-Tex=PartyTeamButton2
-X=85
-Y=100
-W=310
-H=50
-Type=Font Black
-Texts=1
-Color =P1Lightest
-DColor =P1Dark
-
-[PartyPlayerTeam1NameText1]
-X =155
-Y =8
-Font=1
-Size=11
-Align=1
-Text=Team 1
-Color=White
-
-[PartyPlayerPlayer1Name]
-Tex=Button
-X=81
-Y=160
-W =158
-H =54
-Type=Font Black
-Texts=1
-Color =P1Lightest
-DColor =P1Light
-
-[PartyPlayerPlayer1NameText1]
-X =79
-Y =12
-Font=1
-Size=9
-Align=1
-Text=Player 1
-Color=White
-
-[PartyPlayerPlayer2Name]
-Tex=Button
-X=241
-Y=160
-W =158
-H =54
-Type=Font Black
-Texts=1
-Color =P1Lightest
-DColor =P1Light
-
-[PartyPlayerPlayer2NameText1]
-X =79
-Y =12
-Font=1
-Size=9
-Align=1
-Text=Player 2
-Color=White
-
-[PartyPlayerPlayer3Name]
-Tex=Button
-X=401
-Y=160
-W =158
-H =54
-Type=Font Black
-Texts=1
-Color =P1Lightest
-DColor =P1Light
-
-[PartyPlayerPlayer3NameText1]
-X =79
-Y =12
-Font=1
-Size=9
-Align=1
-Text=Player 3
-Color=White
-
-[PartyPlayerPlayer4Name]
-Tex=Button
-X=561
-Y=160
-W =158
-H =54
-Type=Font Black
-Texts=1
-Color =P1Lightest
-DColor =P1Light
-
-[PartyPlayerPlayer4NameText1]
-X =79
-Y =12
-Font=1
-Size=9
-Align=1
-Text=Player 4
-Color=White
-
-[PartyPlayerTeam2Name]
-Tex=PartyTeamButton2
-X=85
-Y=240
-W=310
-H=50
-Type=Font Black
-Texts=1
-Color =P2Lightest
-DColor =P2Dark
-
-[PartyPlayerTeam2NameText1]
-X =155
-Y =8
-Font=1
-Size=11
-Align=1
-Text=Team 2
-Color=White
-
-[PartyPlayerPlayer5Name]
-Tex=Button
-X=81
-Y=300
-W =158
-H =54
-Type=Font Black
-Texts=1
-Color =P2Lightest
-DColor =P2Light
-
-[PartyPlayerPlayer5NameText1]
-X =79
-Y =12
-Font=1
-Size=9
-Align=1
-Text=Player 5
-Color=White
-
-[PartyPlayerPlayer6Name]
-Tex=Button
-X=241
-Y=300
-W =158
-H =54
-Type=Font Black
-Texts=1
-Color =P2Lightest
-DColor =P2Light
-
-[PartyPlayerPlayer6NameText1]
-X =79
-Y =12
-Font=1
-Size=9
-Align=1
-Text=Player 6
-Color=White
-
-[PartyPlayerPlayer7Name]
-Tex=Button
-X=401
-Y=300
-W =158
-H =54
-Type=Font Black
-Texts=1
-Color =P2Lightest
-DColor =P2Light
-
-[PartyPlayerPlayer7NameText1]
-X =79
-Y =12
-Font=1
-Size=9
-Align=1
-Text=Player 7
-Color=White
-
-[PartyPlayerPlayer8Name]
-Tex=Button
-X=561
-Y=300
-W =158
-H =54
-Type=Font Black
-Texts=1
-Color =P2Lightest
-DColor =P2Light
-
-[PartyPlayerPlayer8NameText1]
-X =79
-Y =12
-Font=1
-Size=9
-Align=1
-Text=Player 8
-Color=White
-
-[PartyPlayerTeam3Name]
-Tex=Button
-Tex=PartyTeamButton2
-X=85
-Y=380
-W=310
-H=50
-Type=Font Black
-Texts=1
-Color =P3Lightest
-DColor =P3Dark
-
-[PartyPlayerTeam3NameText1]
-X =155
-Y =8
-Font=1
-Size=11
-Align=1
-Text=Team 3
-Color=White
-
-[PartyPlayerPlayer9Name]
-Tex=Button
-X=81
-Y=440
-W =158
-H =54
-Type=Font Black
-Texts=1
-Color =P3Lightest
-DColor =P3Light
-
-[PartyPlayerPlayer9NameText1]
-X =79
-Y =12
-Font=1
-Size=9
-Align=1
-Text=Player 9
-Color=White
-
-[PartyPlayerPlayer10Name]
-Tex=Button
-X=241
-Y=440
-W =158
-H =54
-Type=Font Black
-Texts=1
-Color =P3Lightest
-DColor =P3Light
-
-[PartyPlayerPlayer10NameText1]
-X =79
-Y =12
-Font=1
-Size=9
-Align=1
-Text=Player 10
-Color=White
-
-[PartyPlayerPlayer11Name]
-Tex=Button
-X=401
-Y=440
-W =158
-H =54
-Type=Font Black
-Texts=1
-Color =P3Lightest
-DColor =P3Light
-
-[PartyPlayerPlayer11NameText1]
-X =79
-Y =12
-Font=1
-Size=9
-Align=1
-Text=Player 11
-Color=White
-
-[PartyPlayerPlayer12Name]
-Tex=Button
-X=561
-Y=440
-W =158
-H =54
-Type=Font Black
-Texts=1
-Color =P3Lightest
-DColor =P3Light
-
-[PartyPlayerPlayer12NameText1]
-X =79
-Y =12
-Font=1
-Size=9
-Align=1
-Text=Player 12
-Color=White
-
-# # # # Song Extensions # # # #
-[SongMenu]
-Texts=0
-Statics=1
-
-[SongMenuButton1]
-X = 505
-Y = 195
-W = 220
-H = 25
-Tex = SongMenuButton
-Color =ColorDark
-DColor = Gray
-Type=Font Black
-Texts=1
-Z = 0.988
-
-[SongMenuButton1Text1]
-X =110
-Y =0
-Color=Black
-Font =0
-Size =8
-Text=SONG_MENU_PLAY
-Align=1
-Z=0.99
-
-[SongMenuButton2]
-X = 505
-Y = 225
-W = 220
-H = 25
-Tex = SongMenuButton
-Color =ColorDark
-DColor = Gray
-Type=Font Black
-Texts=1
-Z = 0.988
-
-[SongMenuButton2Text1]
-X =110
-Y =0
-Color=Black
-Font =0
-Size =8
-Text=SONG_MENU_EDIT
-Align=1
-Z=0.99
-
-[SongMenuButton3]
-X = 505
-Y = 255
-W = 220
-H = 25
-Tex = SongMenuButton
-Color =ColorDark
-DColor = Gray
-Type=Font Black
-Texts=1
-Z = 0.988
-
-[SongMenuButton3Text1]
-X =110
-Y =0
-Color=Black
-Font =0
-Size =8
-Text=SONG_MENU_MODI
-Align=1
-Z=0.99
-
-[SongMenuButton4]
-X = 505
-Y = 285
-W = 220
-H = 25
-Tex = SongMenuButton
-Color =ColorDark
-DColor = Gray
-Type=Font Black
-Texts=1
-Z = 0.988
-
-[SongMenuButton4Text1]
-X =110
-Y =0
-Color=Black
-Font =0
-Size =8
-Text=SONG_MENU_CANCEL
-Align=1
-Z=0.99
-
-[SongMenuSelectSlide3]
-Tex = Rectangle
-TexSBG = SongMenuSelectBG
-Text =
-X = 505
-Y = 255
-W = 0
-H = 25
-Z = 0.988
-SkipX = 0
-SBGW=220
-
-TextSize=8
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex = MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = Black
-STDColor = Black
-
-[SongMenuTextMenu]
-X =615
-Y =140
-Color=Black
-Font =0
-Size =13
-Text=MENU
-Align=1
-Z=0.99
-
-[SongMenuStatic1]
-X =400
-Y =100
-W =200
-H =262
-Z =0.45
-Color=White
-Tex =Rectangle
-Type=Font Black
-TexX1=0.1
-TexY1=0.1
-TexX2=0.9
-TexY2=0.9
-
-[SongMenuStatic2]
-X =400
-Y =100
-W =200
-H =262
-Z =0.45
-Color=Black
-Tex =SongFade
-Type=Font Black
-TexX1=0.5
-TexY1=0.1
-TexX2=0.7
-TexY2=0.7
-
-[SongMenuStatic3]
-Tex =SongMenuBG
-X =500
-Y =140
-W =230
-H =200
-Z =0.985
-Int=1
-Color =White
-Type=Font Black
-
-[SongMenuStatic4]
-X =705
-Y =120
-W =42
-H =240
-Z=0.985
-Color =Gray
-Tex =SongMenuBorder
-Type=Font Black
-Z=0.98
-
-# # # # Song Jump to Menu # # # #
-[SongJumpto]
-Texts=0
-Statics=1
-
-[SongJumptoText1]
-X =30
-Y =7
-Color=Black
-Font =1
-Size =10
-Text=SONG_JUMPTO_TYPE_DESC
-Align=0
-Z=0.99
-
-[SongJumptoSelectSlideType]
-Tex = button
-TexSBG = mainicon
-#Text = SONG_JUMPTO_TYPE_DESC
-Font=1
-X = 160
-Y = 10
-Z = 0.99
-W = 0
-H = 30
-SkipX = 0
-SBGW= 120
-Fields=2
-DColor = White
-TColor = Gray
-TDColor = Gray
-SBGTex = button
-SBGDColor = White
-STColor = Gray
-STDColor = White
-
-[SongJumptoButtonSearchText]
-X = 30
-Y = 40
-Z = 0.99
-W = 208
-H = 25
-Tex=JumpToBG
-Type=Font Black
-Color=Black
-Texts=1
-
-[SongJumptoButtonSearchTextText1]
-X = 2
-Y = -1
-Size=9
-Font=0
-Color=Black
-Align=0
-
-[SongJumptoTextFound]
-X =30
-Y =70
-Color=Black
-Font =0
-Size =8
-Text=SONG_JUMPTO_HELP
-Align=0
-Z=0.99
-
-
-# # # # Statistic Screens # # # #
-[StatMain]
-Texts=4
-Statics=6
-
-[StatMainBackground]
-Tex=MainBG
-
-[StatMainStatic5]
-Tex =ButtonNavi
-X =196
-Y =553
-W =22
-H =22
-Color =White
-Type=Plain
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[StatMainStatic6]
-Tex =ButtonEnter
-X =350
-Y =553
-W =22
-H =22
-Color =White
-Type=Plain
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[StatMainStatic7]
-Tex =ButtonEsc
-X =510
-Y =553
-W =22
-H =22
-Color =White
-Type=Plain
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[StatMainText3]
-X =226
-Y =553
-Color=Gray
-Font =1
-Size =7
-Text=SING_LEGEND_NAVIGATE
-Align=0
-
-[StatMainText4]
-X =380
-Y =553
-Color=Gray
-Font =1
-Size =7
-Text=SING_LEGEND_SELECT
-Align=0
-
-[StatMainText5]
-X =540
-Y =553
-Color=Gray
-Font =1
-Size =7
-Text=SING_LEGEND_ESC
-Align=0
-
-[StatMainButtonScores]
-X =589
-Y =120
-W =190
-H =50
-Tex = Button
-Color = ColorDark
-Int = 1
-DColor = White
-DInt = 0.5
-Type = Font Black
-Texts=1
-
-[StatMainButtonScoresText1]
-X =95
-Y =10
-Font=0
-Size=10
-Align=1
-Text=STAT_DESC_SCORES
-Color=White
-
-[StatMainButtonSingers]
-X =589
-Y =180
-W =190
-H =50
-Tex = Button
-Color = ColorDark
-Int = 1
-DColor = White
-DInt = 0.5
-Type = Font Black
-Texts=1
-
-[StatMainButtonSingersText1]
-X =95
-Y =10
-Font=0
-Size=10
-Align=1
-Text=STAT_DESC_SINGERS
-Color=White
-
-[StatMainButtonSongs]
-X =589
-Y =240
-W =190
-H =50
-Tex = Button
-Color = ColorDark
-Int = 1
-DColor = White
-DInt = 0.5
-Type = Font Black
-Texts=1
-
-[StatMainButtonSongsText1]
-X =95
-Y =13
-Font=0
-Size=8
-Align=1
-Text=STAT_DESC_SONGS
-Color=White
-
-[StatMainButtonBands]
-X =589
-Y =300
-W =190
-H =50
-Tex = Button
-Color = ColorDark
-Int = 1
-DColor = White
-DInt = 0.5
-Type = Font Black
-Texts=1
-
-[StatMainButtonBandsText1]
-X =95
-Y =13
-Font=0
-Size=8
-Align=1
-Text=STAT_DESC_BANDS
-Color=White
-
-[StatMainButtonExit]
-X =589
-Y =360
-W =190
-H =50
-Tex = Button
-Color = ColorDark
-Int = 1
-DColor = White
-DInt = 0.5
-Type = Font Black
-Texts=1
-
-[StatMainButtonExitText1]
-X =95
-Y =10
-Font=0
-Size=10
-Align=1
-Text=SING_OPTIONS_EXIT
-Color=White
-
-[StatMainTextOverview]
-X =45
-Y =145
-W =510
-Color=Black
-Font =0
-Size =9
-Align=0
-Text=
-
-[StatMainStatic1]
-X =40
-Y =71
-W =32
-H =32
-Color =ColorDark
-Tex =MainIcon
-Type=Font Black
-
-
-[StatMainStatic2]
-X =40
-Y =120
-W =520
-H =20
-Tex=StatMainBG1
-Color =ColorLight
-Type=Font Black
-
-[StatMainStatic3]
-X =40
-Y =140
-W =520
-H =300
-Tex=StatMainBG2
-Color =ColorDark
-Type=Font Black
-
-[StatMainStatic4]
-X =40
-Y =440
-W =520
-H =20
-Tex=StatMainBG3
-Color =ColorLight
-Type=Font Black
-
-[StatMainText1]
-X =40
-Y =6
-Color=GrayLight
-Font =1
-Size =22
-Text=STAT_MAIN
-Align=0
-
-[StatMainText2]
-X =73
-Y =69
-Color=GrayDark
-Font =1
-Size =10
-Align =0
-Text=STAT_MAIN_DESC
-
-
-[StatDetail]
-Texts=0
-Statics=0
-
-[StatDetailBackground]
-Tex=MainBG
-
-[StatDetailStatic5]
-Tex =ButtonNavi
-X =196
-Y =553
-W =22
-H =22
-Color =White
-Type=Plain
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[StatDetailStatic6]
-Tex =ButtonEnter
-X =350
-Y =553
-W =22
-H =22
-Color =White
-Type=Plain
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[StatDetailStatic7]
-Tex =ButtonEsc
-X =510
-Y =553
-W =22
-H =22
-Color =White
-Type=Plain
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[StatDetailText2]
-X =226
-Y =553
-Color=Gray
-Font =1
-Size =7
-Text=SING_LEGEND_NAVIGATE
-Align=0
-
-[StatDetailText3]
-X =380
-Y =553
-Color=Gray
-Font =1
-Size =7
-Text=SING_LEGEND_SELECT
-Align=0
-
-[StatDetailText4]
-X =540
-Y =553
-Color=Gray
-Font =1
-Size =7
-Text=SING_LEGEND_ESC
-Align=0
-
-[StatDetailButtonNext]
-X =589
-Y =120
-W =190
-H =50
-Tex = Button
-Color = ColorDark
-Int = 1
-DColor = White
-DInt = 0.5
-Type = Font Black
-Texts=1
-
-[StatDetailButtonNextText1]
-X =95
-Y =10
-Font=0
-Size=10
-Align=1
-Text=STAT_NEXT
-Color=White
-
-[StatDetailButtonPrev]
-X =589
-Y =180
-W =190
-H =50
-Tex = Button
-Color = ColorDark
-Int = 1
-DColor = White
-DInt = 0.5
-Type = Font Black
-Texts=1
-
-[StatDetailButtonPrevText1]
-X =95
-Y =10
-Font=0
-Size=10
-Align=1
-Text=STAT_PREV
-Color=White
-
-[StatDetailButtonReverse]
-X =589
-Y =240
-W =190
-H =50
-Tex = Button
-Color = ColorDark
-Int = 1
-DColor = White
-DInt = 0.5
-Type = Font Black
-Texts=1
-
-[StatDetailButtonReverseText1]
-X =95
-Y =10
-Font=0
-Size=10
-Align=1
-Text=STAT_REVERSE
-Color=White
-
-[StatDetailButtonExit]
-X =589
-Y =300
-W =190
-H =50
-Tex = Button
-Color = ColorDark
-Int = 1
-DColor = White
-DInt = 0.5
-Type = Font Black
-Texts=1
-
-[StatDetailButtonExitText1]
-X =95
-Y =10
-Font=0
-Size=10
-Align=1
-Text=SING_OPTIONS_EXIT
-Color=White
-
-[StatDetailTextDescription]
-X =73
-Y =69
-Color=GrayDark
-Font =1
-Size =10
-Align =0
-Text=
-
-[StatDetailTextPage]
-X = 546
-Y = 118
-Color= Black
-Font = 0
-Size = 5
-Align=2
-Text=
-
-[StatDetailTextList1]
-X = 45
-Y = 142
-Color=Black
-Font = 0
-Size = 8
-Text=Stat1
-
-[StatDetailTextList2]
-X = 45
-Y = 180
-Color=Black
-Font = 0
-Size = 8
-Text=Stat2
-
-[StatDetailTextList3]
-X = 45
-Y = 218
-Color=Black
-Font = 0
-Size = 8
-Text=
-
-[StatDetailTextList4]
-X = 45
-Y = 256
-Color=Black
-Font = 0
-Size = 8
-Text=
-
-[StatDetailTextList5]
-X = 45
-Y = 294
-Color=Black
-Font = 0
-Size = 8
-Text=
-
-[StatDetailTextList6]
-X = 45
-Y = 332
-Color=Black
-Font = 0
-Size = 8
-Text=
-
-[StatDetailTextList7]
-X = 45
-Y = 370
-Color=Black
-Font = 0
-Size = 8
-Text=
-
-[StatDetailTextList8]
-X = 45
-Y = 408
-Color=Black
-Font = 0
-Size = 8
-Text=
-
-[StatDetailTextList9]
-X = 45
-Y = 446
-Color=Black
-Font = 0
-Size = 8
-Text=
-
-[StatDetailTextList10]
-X = 45
-Y = 484
-Color=Black
-Font = 0
-Size = 8
-Text=
-
-[StatDetailStatic1]
-X =40
-Y =71
-W =32
-H =32
-Color =ColorDark
-Tex =MainIcon
-Type=Font Black
-
-[StatDetailStatic2]
-X =40
-Y =120
-W =520
-H =24
-Tex=StatDetailBG1
-Color =ColorLight
-Type=Font Black
-
-[StatDetailStatic3]
-X =40
-Y =144
-W =520
-H =379
-Tex=StatMainBG2
-Color =ColorDark
-Type=Font Black
-
-[StatDetailStatic4]
-X =40
-Y =523
-W =520
-H =20
-Tex=StatMainBG3
-Color =ColorLight
-Type=Font Black
-
-
-[StatDetailText1]
-X =40
-Y =6
-Color=GrayLight
-Font =1
-Size =22
-Text=STAT_DETAIL
-Align=0
-
-
-# # # # OnScreen PopUp Error / Question Messages # # # #
-[CheckPopup]
-Texts=0
-Statics=3
-
-[CheckPopupButton1]
-X = 192
-Y = 327
-W = 128
-H = 50
-Tex =MainBar
-Color = ColorDark
-DColor = White
-Int=1
-DInt=0.5
-Type=Font Black
-Texts=1
-Z = 1
-
-[CheckPopupButton1Text1]
-X =64
-Y =13
-Color=White
-Font =0
-Size =8
-Text=Yes
-Align=1
-Z=1
-
-[CheckPopupButton2]
-X = 480
-Y = 327
-W = 128
-H = 50
-Tex =MainBar
-Color = ColorDark
-DColor = White
-Int=1
-DInt=0.5
-Type=Font Black
-Texts=1
-Z = 1
-
-[CheckPopupButton2Text1]
-X =64
-Y =13
-Color=White
-Font =0
-Size =8
-Text=No
-Align=1
-Z=1
-
-[CheckPopupText]
-X =400
-Y =226
-W =500
-Color=Black
-Font =0
-Size =14
-Text=
-Align=1
-Z=1
-
-[CheckPopupStatic1]
-Tex =PopUpBG
-X =99
-Y =224
-W =602
-H =152
-Z =1
-Int=1
-Color =White
-Type=Font Black
-
-[CheckPopupStatic2]
-Tex =PopUpFG
-X =99
-Y =224
-W =602
-H =152
-Z =1
-Int=1
-Color =Black
-Type=Font Black
-
-[CheckPopupStatic3]
-Tex =IconQuestion
-X =124
-Y =235
-W =44
-H =44
-Z =1
-Int=1
-Color =Black
-Type=Font Black
-
-[ErrorPopup]
-Texts=1
-Statics=1
-
-[ErrorPopupButton1]
-X = 366
-Y = 342
-W =22
-H =22
-Tex =ButtonEnter
-Color = White
-DColor = White
-Type=Plain
-Texts=1
-Z = 1
-
-[ErrorPopupButton1Text1]
-X =32
-Y =0
-Color=Black
-Font =0
-Size =10
-Text=OK
-Align=0
-Z=0
-
-[ErrorPopupText]
-X =400
-Y =226
-W =500
-Color=Black
-Font =0
-Size =14
-Text=
-Align=1
-Z=1
-
-[ErrorPopupStatic1]
-Tex =PopUpBG
-X =99
-Y =224
-W =602
-H =152
-Z =1
-Int=1
-Color =White
-Type=Font Black
-
-[ErrorPopupStatic2]
-Tex =PopUpFG
-X =99
-Y =224
-W =602
-H =152
-Z =1
-Int=1
-Color =Black
-Type=Font Black
-
-[ErrorPopupStatic3]
-Tex =IconError
-X =124
-Y =235
-W =44
-H =44
-Z =1
-Int=1
-Color =Black
-Type=Font Black
\ No newline at end of file diff --git a/Themes/Deluxe.ini b/Themes/Deluxe.ini deleted file mode 100644 index 78dc101f..00000000 --- a/Themes/Deluxe.ini +++ /dev/null @@ -1,7880 +0,0 @@ -;1.10 Mod
-;experimental version
-;if you are using this as a sample for your theme
-;don't be suprised it doesn't work good with newer releases
-
-[Theme]
-Name=Deluxe
-Creator=Ultrastar Deluxe Team
-US_Version=USD 110
-
-[Colors]
-White = 255 255 255
-LightBlue = 119 187 210
-DarkBlue = 28 126 171
-LightRed = 170 146 146
-DarkRed = 155 113 113
-LightGreen = 136 168 136
-DarkGreen = 106 152 104
-LightPurple = 155 136 168
-DarkPurple = 145 104 152
-LightOrange = 168 155 136
-DarkOrange = 151 131 76
-LightYellow = 168 168 136
-DarkYellow = 150 151 76
-Turkis = 13 186 167
-GrayLightest = 223 223 223
-GrayLight = 191 191 191
-Gray = 127 127 127
-GrayDark = 63 63 63
-Black = 0 0 0
-GrayPopup = 51 51 51
-Gold = 255 223 31
-Silver = 223 223 223
-Bronze = 205 127 50
-Red = 255 0 0
-
-[Loading]
-Texts =2
-Fade = 1
-
-[LoadingBackground]
-Tex=LoadingBG
-
-[LoadingText1]
-X =30
-Y =550
-Color =Black
-Font =0
-Align =0
-Size =10
-Text =SING_LOADING
-
-[LoadingText2]
-X =790
-Y =556
-Color=Black
-Font =0
-Size =6
-Align=2
-Text=US_VERSION
-
-[Main]
-Texts =2
-Statics=4
-
-[MainBackground]
-Tex=MainBG
-
-[MainStatic1]
-X =0
-Y =549
-W =252
-H =28
-Tex=Leiste1
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[MainStatic2]
-X =254
-Y =549
-W =548
-H =28
-Tex=Leiste2
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[MainStatic3]
-X =260
-Y =552
-W =24
-H =23
-Tex=ButtonNavi
-Color =White
-Type=Transparent
-Style=5
-
-[MainText2]
-X =290
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SING_LEGEND_NAVIGATE
-
-[MainStatic4]
-X =388
-Y =552
-W =24
-H =23
-Tex=ButtonEnter
-Color =White
-Type=Transparent
-Style=5
-
-
-[MainText1]
-X =238
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=2
-Text=SING_MENU
-
-[MainTextDescriptionLong]
-X =418
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=
-
-[MainButtonSolo]
-X =180
-Y =270
-W =150
-H =50
-Tex =Button
-Color =DarkBlue
-DColor = LightBlue
-Type=Colorized
-Texts=1
-Reflection=1
-ReflectionSpacing=15
-DeSelectReflectionSpacing=280
-Fade=1
-FadeText=1
-SelectH=150
-FadeTex=ButtonFade
-FadeTexPos=0
-
-[MainButtonSoloText1]
-X =75
-Y =10
-Font=0
-Size=10
-Align=1
-Text=SING_SING
-Color=White
-
-[MainButtonMulti]
-X =335
-Y =270
-W =150
-H =50
-Tex =Button
-Color =DarkBlue
-DColor = LightBlue
-Type=Colorized
-Texts=1
-Reflection=1
-ReflectionSpacing=15
-DeSelectReflectionSpacing=280
-Fade=1
-FadeText=1
-SelectH=150
-FadeTex=ButtonFade
-FadeTexPos=0
-
-[MainButtonMultiText1]
-X =75
-Y =10
-Font=0
-Size=10
-Align=1
-Text=SING_MULTI
-Color=White
-
-[MainButtonCollection1]
-X =490
-Y =270
-W =150
-H =50
-Tex =Button
-Color =DarkBlue
-DColor = LightBlue
-Type=Colorized
-Texts=1
-Reflection=1
-ReflectionSpacing=15
-DeSelectReflectionSpacing=280
-Fade=1
-FadeText=0
-SelectH=150
-FadeTex=ButtonFade
-FadeTexPos=0
-FirstChild=3
-
-[MainButtonCollection1Text1]
-X =75
-Y =10
-Font=0
-Size=10
-Align=1
-Text=SING_TOOLS
-Color=White
-
-[MainButtonStats]
-X =495
-Y =310
-W =140
-H =30
-Tex =Rectangle
-Color =LightBlue
-DColor = DarkBlue
-Type=Colorized
-Texts=1
-Reflection=0
-Parent=1
-
-[MainButtonStatsText1]
-X =70
-Y =3
-Font=0
-Size=8
-Align=1
-Text=SING_STATS
-Color=White
-
-[MainButtonEditor]
-X =495
-Y =345
-W =140
-H =30
-Tex =Rectangle
-Color =LightBlue
-DColor = DarkBlue
-Type=Colorized
-Texts=1
-Reflection=0
-Parent=1
-
-[MainButtonEditorText1]
-X =70
-Y =3
-Font=0
-Size=8
-Align=1
-Text=SING_EDITOR
-Color=White
-
-[MainButtonOptions]
-X =495
-Y =380
-W =140
-H =30
-Tex =Rectangle
-Color =LightBlue
-DColor = DarkBlue
-Type=Colorized
-Texts=1
-Reflection=0
-Parent=1
-
-[MainButtonOptionsText1]
-X =70
-Y =3
-Font=0
-Size=8
-Align=1
-Text=SING_OPTIONS
-Color=White
-
-[MainButtonExit]
-X =645
-Y =270
-W =150
-H =50
-Tex =Button
-Color =DarkBlue
-DColor = LightBlue
-Type=Colorized
-Texts=1
-Reflection=1
-ReflectionSpacing=15
-DeSelectReflectionSpacing=280
-Fade=1
-FadeText=1
-SelectH=150
-FadeTex=ButtonFade
-FadeTexPos=0
-
-[MainButtonExitText1]
-X =75
-Y =10
-Font=0
-Size=10
-Align=1
-Text=SING_EXIT
-Color=White
-
-[Song]
-Texts =3
-
-[SongBackground]
-Tex=SongBG
-
-[SongCover]
-X=252
-Y=125
-W=320
-H=190
-Style=5
-Reflections=1
-
-[SongEqualizer]
-Visible=1
-Direction=1
-Color=White
-Alpha=1
-X=205
-Y=514
-Z=1
-PieceW=6
-PieceH=6
-Space=1
-Bands=6
-Length=18
-
-[SongVideoIcon]
-X =249
-Y =487
-W =32
-H =32
-Z=1
-Color=White
-Tex =VideoIcon
-Type=Colorized
-
-[SongStatic1]
-X =0
-Y =549
-W =252
-H =28
-Tex=Leiste1
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[SongStatic2]
-X =254
-Y =549
-W =548
-H =28
-Tex=Leiste2
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[SongStatic3]
-X =200
-Y =120
-W =300
-H =200
-Color =LightBlue
-Tex =SongSelection1
-Type=Colorized
-
-[SongStatic4]
-X =248
-Y =320
-W =200
-H =200
-Z=0.98
-Color =LightBlue
-Tex =SongSelection2
-Type=Colorized
-
-[SongTextCat]
-X =70
-Y =53
-Color=White
-Font =0
-Size =10
-Align =0
-Text=SING_SONG_SELECTION_DESC
-
-[SongTextArtist]
-X =350
-Y =320
-W = 190
-Color=White
-Font =1
-Size =9
-Align =1
-Text=
-
-[SongTextTitle]
-X =350
-Y =380
-W = 190
-Color=White
-Font =0
-Size =9
-Align =1
-Text=
-
-[SongTextNumber]
-X =440
-Y =495
-Color=White
-Font =0
-Size =8
-Align =2
-Text=
-
-#Variable statics and texts for song-screen in sing- and partymode
-# There can be an unlimited Number of Statics and Texts, As long
-# as the numbers are in order.
-# Statics that are shown in PartyMode Only are Named_
-# SongStaticParty[No]
-# Texts that are shown in PartyMode Only are Named_
-# SongTextParty[No]
-# Statics that are shown in Normal Mode Only are Named_
-# SongStaticNonParty[No]
-# Texts that are shown in Normal Mode Only are Named_
-# SongTextNonParty[No]
-#Here are the ones for singmode
-
-[SongStaticNonParty1]
-X =40
-Y =22
-W =27
-H =27
-Color =White
-Tex =SongCD
-Type=Colorized
-
-[SongStaticNonParty2]
-X =260
-Y =552
-W =24
-H =23
-Tex=ButtonAlt
-Color =White
-Type=Transparent
-
-[SongStaticNonParty3]
-X =300
-Y =552
-W =32
-H =23
-Tex=ButtonAZ
-Color =White
-Type=Transparent
-
-[SongStaticNonParty4]
-X =425
-Y =552
-W =24
-H =23
-Tex=ButtonM
-Color =White
-Type=Transparent
-
-[SongStaticNonParty5]
-X =515
-Y =552
-W =24
-H =23
-Tex=ButtonJ
-Color =White
-Type=Transparent
-
-[SongStaticNonParty6]
-X =679
-Y =552
-W =24
-H =23
-Tex=ButtonP
-Color =White
-Type=Transparent
-
-#Texts Non Party
-[SongTextNonParty1]
-X =70
-Y =6
-Color=White
-Font =0
-Size =20
-Text=SING_SONG_SELECTION
-Align=0
-
-[SongTextNonParty2]
-X =238
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=2
-Text=SING_SONG_SELECTION_WHEREAMI
-
-[SongTextNonParty3]
-X =288
-Y =556
-Color=Black
-Font =1
-Size =5
-Align=0
-Text=+
-
-[SongTextNonParty4]
-X =330
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SING_SONG_SELECTION_GOTO
-
-[SongTextNonParty5]
-X =450
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SING_SONG_SELECTION_MENU
-
-[SongTextNonParty6]
-X =540
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SONG_JUMPTO_DESC
-
-[SongTextNonParty7]
-X =705
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SING_SONG_SELECTION_PLAYLIST
-
-
-#and theese are the ones for partymode
-
-[SongStaticParty1]
-X =40
-Y =22
-W =27
-H =27
-Color =White
-Tex =PartyIcon
-Type=Colorized
-
-[SongStaticParty2]
-X =260
-Y =552
-W =32
-H =23
-Tex=Button13
-Color =White
-Type=Transparent
-
-[SongStaticParty3]
-X =400
-Y =552
-W =24
-H =23
-Tex=ButtonM
-Color =White
-Type=Transparent
-
-[SongStaticParty4]
-X =540
-Y =552
-W =24
-H =24
-Tex=ButtonEnter
-Color =White
-Type=Transparent
-
-#Texts for Party Mode
-
-[SongTextParty1]
-X =70
-Y =6
-ColR = 0.7
-ColG = 0.7
-ColB = 0.7
-Font = 0
-Size = 20
-Color =White
-Text=PARTY_MODE
-
-[SongTextParty2]
-X =238
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=2
-Text=PARTY_SONG_WHEREAMI
-
-[SongTextParty3]
-X =288
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SONG_MENU_NAME_PARTY_JOKER
-
-[SongTextParty4]
-X =426
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=PARTY_SONG_MENU
-
-[SongTextParty5]
-X =570
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=PARTY_SONG_LEGEND_CONTINUE
-
-#variable statics end
-
-
-# Jokers, 5 for each team, only shown in party Mode
-[SongStaticTeam1Joker1]
-Tex =Joker
-X =480
-Y =400
-W =40
-H =40
-Z =0.98
-Color=P1Dark
-Type=Colorized
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[SongStaticTeam1Joker2]
-Tex =Joker
-X =530
-Y =400
-W =40
-H =40
-Z =0.98
-Color=P1Dark
-Type=Colorized
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[SongStaticTeam1Joker3]
-Tex =Joker
-X =580
-Y =400
-W =40
-H =40
-Z =0.98
-Color=P1Dark
-Type=Colorized
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[SongStaticTeam1Joker4]
-Tex =Joker
-X =630
-Y =400
-W =40
-H =40
-Z =0.98
-Color=P1Dark
-Type=Colorized
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[SongStaticTeam1Joker5]
-Tex =Joker
-X =680
-Y =400
-W =40
-H =40
-Z =0.98
-Color=P1Dark
-Type=Colorized
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[SongStaticTeam2Joker1]
-Tex =Joker
-X =480
-Y =450
-W =40
-H =40
-Z =0.98
-Color=P2Dark
-Type=Colorized
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[SongStaticTeam2Joker2]
-Tex =Joker
-X =530
-Y =450
-W =40
-H =40
-Z =0.98
-Color=P2Dark
-Type=Colorized
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[SongStaticTeam2Joker3]
-Tex =Joker
-X =580
-Y =450
-W =40
-H =40
-Z =0.98
-Color=P2Dark
-Type=Colorized
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[SongStaticTeam2Joker4]
-Tex =Joker
-X =630
-Y =450
-W =40
-H =40
-Z =0.98
-Color=P2Dark
-Type=Colorized
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[SongStaticTeam2Joker5]
-Tex =Joker
-X =680
-Y =450
-W =40
-H =40
-Z =0.98
-Color=P2Dark
-Type=Colorized
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[SongStaticTeam3Joker1]
-Tex =Joker
-X =480
-Y =500
-W =40
-H =40
-Z =0.98
-Color=P3Dark
-Type=Colorized
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[SongStaticTeam3Joker2]
-Tex =Joker
-X =530
-Y =500
-W =40
-H =40
-Z =0.98
-Color=P3Dark
-Type=Colorized
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[SongStaticTeam3Joker3]
-Tex =Joker
-X =580
-Y =500
-W =40
-H =40
-Z =0.98
-Color=P3Dark
-Type=Colorized
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[SongStaticTeam3Joker4]
-Tex =Joker
-X =630
-Y =500
-W =40
-H =40
-Z =0.98
-Color=P3Dark
-Type=Colorized
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-[SongStaticTeam3Joker5]
-Tex =Joker
-X =680
-Y =500
-W =40
-H =40
-Z =0.98
-Color=P3Dark
-Type=Colorized
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-
-
-[Sing]
-Texts =1
-
-[SingText1]
-Text =SING_TIME
-X =20
-Y =577
-Font =1
-Size =6
-Color =White
-Align=0
-
-[SingStatic1]
-;TextBG
-Tex=LyricBar
-X =10
-Y =492
-W =780
-H =85
-Color =White
-Type=Transparent
-
-[SingStatic2]
-;TimeBar
-Tex =TimeBar1
-X =10
-Y =577
-W =780
-H =20
-Color =White
-Type=Transparent
-
-[SingTimeProgress]
-X =87
-Y =584
-W =633
-H =6
-Color=White
-
-[SingTimeText]
-Text =SING_TIME
-X =736
-Y =577
-Font =1
-Size =6
-Color =White
-Align=0
-
-# O N E P L A Y E R M O D E # # # # # # # # # # # # # # # # # # # #
-#PlayerOne
-[SingP1Static]
-Tex =P
-X =20
-Y =297
-W =30
-H =28
-Color=P1Dark
-Type=Colorized
-
-[SingP1Text]
-Text =P1
-X =25
-Y =302
-Font =1
-Size =6
-Color =White
-Align=0
-
-[SingP1Static2]
-Tex =ScoreBG
-X =680
-Y =282
-W =100
-H =36
-Color =P1Dark
-Type=Colorized
-
-[SingP1TextScore]
-Text =00000
-X =690
-Y =284
-Font =0
-Size =10
-Color =White
-Align=0
-
-[SingP1SingBar]
-X =680
-Y =316
-W =100
-H =8
-
-# T W O P L A Y E R M O D E # # # # # # # # # # # # # # # # # # # #
-#Player One
-[SingP1TwoPStatic]
-Tex =P
-X =20
-Y =117
-W =30
-H =28
-Color =P1Dark
-Type=Colorized
-
-[SingP1TwoPText]
-Text =P1
-X =25
-Y =122
-Font =1
-Size =6
-Color =White
-Align=0
-
-[SingP1TwoPStatic2]
-Tex =ScoreBG
-X =680
-Y =102
-W =100
-H =36
-Color =P1Dark
-Type=Colorized
-
-[SingP1TwoPTextScore]
-Text =00000
-X =690
-Y =104
-Font =0
-Size =10
-Color =White
-Align=0
-
-[SingP1TwoPSingBar]
-X =680
-Y =136
-W =100
-H =13
-
-#Player Two
-[SingP2RStatic]
-Tex =P
-X =20
-Y =297
-W =30
-H =28
-Color=P2Dark
-Type=Colorized
-
-[SingP2RText]
-Text =P2
-X =24
-Y =302
-Font =1
-Size =6
-Color =White
-Align=0
-
-[SingP2RStatic2]
-Tex =ScoreBG
-X =680
-Y =282
-W =100
-H =36
-Color=P2Dark
-Type=Colorized
-
-[SingP2RTextScore]
-Text =00000
-X =690
-Y =284
-Font =0
-Size =10
-Color =White
-Align=0
-
-[SingP2RSingBar]
-X =680
-Y =316
-W =100
-H =8
-
-# T H R E E P L A Y E R M O D E # # # # # # # # # # # # # # # # # # # #
-#Player One
-[SingP1ThreePStatic]
-Tex=P
-X =16
-Y =59
-W =50
-H =54
-Color=P1Dark
-Type=Colorized
-
-[SingP1ThreePText]
-Text =P1
-X =27
-Y =66
-Font =1
-Size =8
-Color =White
-Align=0
-
-[SingP1ThreePStatic2]
-Tex=ScoreBG
-X =75
-Y =61
-W =100
-H =36
-Color=P1Dark
-Type=Colorized
-
-[SingP1ThreePTextScore]
-Text =00000
-X =85
-Y =63
-Font =0
-Size =10
-Color =White
-Align=0
-
-[SingP1ThreePSingBar]
-X =75
-Y =95
-W =100
-H =8
-
-#Player Two
-[SingP2MStatic]
-Tex=P
-X =311
-Y =59
-W =50
-H =54
-Color=P2Dark
-Type=Colorized
-
-[SingP2MText]
-Text =P2
-X =321
-Y =66
-Font =1
-Size =8
-Color =White
-Align=0
-
-[SingP2MStatic2]
-Tex =ScoreBG
-X =370
-Y =61
-W =100
-H =36
-Color=P2Dark
-Type=Colorized
-
-[SingP2MTextScore]
-Text =00000
-X =380
-Y =63
-Font =0
-Size =10
-Color =White
-Align=0
-
-[SingP2MSingBar]
-X =370
-Y =95
-W =100
-H =8
-
-#Player Three
-[SingP3RStatic]
-Tex =P
-X =611
-Y =59
-W =50
-H =54
-Color=P3Dark
-Type=Colorized
-
-[SingP3RText]
-Text =P3
-X =621
-Y =66
-Font =1
-Size =8
-Color=White
-Align=0
-
-[SingP3RStatic2]
-Tex=ScoreBG
-X =670
-Y =61
-W =100
-H =36
-Color=P3Dark
-Type=Colorized
-
-[SingP3RTextScore]
-Text =00000
-X =680
-Y =63
-Font =0
-Size =10
-Color =White
-Align=0
-
-[SingP3SingBar]
-X =670
-Y =95
-W =100
-H =8
-
-[Score]
-Texts =1
-
-[ScoreBackground]
-Tex=ScoreScreenBG
-
-[ScoreText1]
-X =70
-Y =6
-Color=White
-Font =0
-Size =20
-Text=SONG_SCORE
-Align=0
-
-[ScoreTextArtistTitle]
-X =70
-Y =53
-Color=White
-Font =0
-Size =10
-Align =0
-Text=ArtistTitle
-
-[ScoreStatic1]
-X =40
-Y =22
-W =27
-H =27
-Color =White
-Tex =ScoreIcon
-Type=Colorized
-
-[ScoreStatic2]
-X =0
-Y =549
-W =252
-H =28
-Tex=Leiste1
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[ScoreStatic3]
-X =254
-Y =549
-W =548
-H =28
-Tex=Leiste2
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[ScoreText2]
-X =238
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=2
-Text=SONG_SCORE_WHEREAMI
-
-[ScoreStatic4]
-X =260
-Y =552
-W =24
-H =23
-Tex=ButtonEnter
-Color =White
-Type=Transparent
-
-[ScoreText3]
-X =290
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SING_LEGEND_CONTINUE
-#end of main stuff
-
-# # # # # # # # # # # # # # # # # # One Player Score # # # # # # # # # # # #
-[ScoreTextName1]
-X =150
-Y =260
-Font =0
-Size =14
-Text =P1
-Color =White
-Align=0
-
-[ScoreStaticRatingPicture1]
-X =235
-Y =260
-H=140
-W=140
-
-[ScoreTextScore1]
-X =150
-Y =430
-Color=White
-Font =1
-Size =9
-Text =Tone Deaf
-Align=0
-
-[ScoreTextNotes1]
-X =150
-Y =340
-Color=White
-Font =0
-Size =9
-Text=SING_NOTES
-Align=0
-
-[ScoreTextNotesScore1]
-X =440
-Y =340
-Color=White
-Font =0
-Size =10
-Align =2
-Text =0
-
-[ScoreTextLineBonus1]
-X =150
-Y =370
-Color=White
-Font =0
-Size =9
-Text =SING_PHRASE_BONUS
-Align=0
-
-[ScoreTextLineBonusScore1]
-X =440
-Y =370
-Color=White
-Font =0
-Size =10
-Align =2
-Text =0
-
-[ScoreTextGoldenNotes1]
-X =150
-Y =400
-Color=White
-Font =0
-Size =9
-Text =SING_GOLDEN_NOTES
-Align=0
-
-[ScoreTextGoldenNotesScore1]
-X =440
-Y =400
-Color=White
-Font =0
-Size =10
-Align =2
-Text =0
-
-[ScoreTextTotal1]
-X =180
-Y =460
-Color=White
-Font =0
-Size =14
-Text=SING_TOTAL
-Align=0
-
-[ScoreTextTotalSCore1]
-X =440
-Y =460
-Color=White
-Font =0
-Size =14
-Align =2
-Text =0
-
-#Lines
-[ScorePlayer1Static1]
-Tex =ScoreLine
-X =148
-Y =368
-W =295
-H =1
-Color =White
-Type =Colorized
-
-[ScorePlayer1Static2]
-Tex =ScoreLine
-X =148
-Y =398
-W =295
-H =1
-Color =White
-Type =Colorized
-
-#small boxes
-[ScoreStaticBoxLightest1]
-Tex =ScoreBox
-X =200
-Y =220
-W =30
-H =30
-Color =P1Lightest
-Type= colorized
-
-[ScoreStaticBoxLight1]
-Tex =ScoreBox
-X =200
-Y =260
-W =30
-H =30
-Color =P1Light
-Type=colorized
-
-[ScoreStaticBoxDark1]
-Tex =ScoreBox
-X =200
-Y =300
-W =30
-H =30
-Color =P1Dark
-Type=colorized
-
-[ScoreStaticBoxDark1]
-Tex =PlayerNumberBox
-X =150
-Y =467
-W =25
-H =25
-Type =Colorized
-Color =P1Dark
-TexX1=0
-TexY1=0
-TexX2=1
-TexY2=1
-Z=0.9
-Reflection=1
-ReflectionSpacing=4
-
-[ScorePlayer1Text1]
-X =154
-Y =472
-W =30
-H =30
-Z=1
-Color=White
-Font =1
-Size =5
-Align=0
-Text=P1
-
-#ScoreBar
-[ScoreStaticBackLevel1]
-Tex =ScoreLevel
-X =450
-Y =160
-W =90
-H =300
-Color =P1Lightest
-Type =Colorized
-
-[ScoreStaticBackLevelRound1]
-Tex =ScoreLevelRound
-X =450
-Y =130
-W =90
-H =8
-Color =P1Lightest
-Type =Colorized
-
-[ScoreStaticLevel1]
-Tex =ScoreLevel
-X =450
-Y =410
-W =90
-H =30
-Color =P1Light
-Type =Colorized
-
-[ScoreStaticLevelRound1]
-Tex =ScoreLevelRound
-X =450
-Y =380
-W =90
-H =8
-Color =P1Light
-Type =Colorized
-
-[ScorePlayer1Static3]
-Tex =ScoreEndCap
-X =469
-Y =460
-W =95
-H =30
-Color =P1Dark
-Type =Colorized
-Reflection=1
-ReflectionSpacing=4
-
-[ScorePlayer1Static7]
-Tex =ScoreLine
-X =468
-Y =460
-W =114
-H =2
-Color =White
-Type =Colorized
-
-# # # # # # # # # # # # # # # # # # Two Player Score # # # # # # # # # # # #
-# P L A Y E R O N E
-[ScoreTextName2]
-X =42
-Y =290
-Font =0
-Size =10
-Text =P1
-Color =White
-Align=0
-
-[ScoreStaticRatingPicture2]
-X =180
-Y =165
-H=75
-W=75
-
-[ScoreTextScore2]
-X=217
-Y=235
-Width=100
-Color=White
-Font =0
-Size =9
-Text =Tone Deaf
-Align=1
-
-[ScoreStaticBoxDark2]
-Tex=ScoreBar_box_dark
-X=45
-Y=327
-W=22
-H=20
-Color=P1Dark
-Type=Colorized
-
-[ScoreTextNotes2]
-X =72
-Y =322
-Color=White
-Font =0
-Size =10
-Text=SING_NOTES
-Align=0
-
-[ScoreTextNotesScore2]
-X =282
-Y =322
-Color=White
-Font =0
-Size =10
-Align =2
-Text =0000
-
-[ScoreStaticBoxLight2]
-Tex =ScoreBar_box_light
-X =45
-Y =358
-W =22
-H =20
-Color=P1Lightest
-Type=Colorized
-
-[ScoreTextLineBonus2]
-X =72
-Y =352
-Color=White
-Font =0
-Size =10
-Text =SING_PHRASE_BONUS
-Align=0
-
-[ScoreTextLineBonusScore2]
-X =282
-Y =352
-Color=White
-Font =0
-Size =10
-Align =2
-Text =0000
-
-[ScoreStaticBoxLightest2]
-Tex =ScoreBar_box_lightest
-X =45
-Y =390
-W =22
-H =20
-Color =P1Lightest
-Type=Colorized
-
-[ScoreTextGoldenNotes2]
-X =72
-Y =383
-Color=White
-Font =0
-Size =10
-Text =SING_GOLDEN_NOTES
-Align=0
-
-[ScoreTextGoldenNotesScore2]
-X =282
-Y =383
-Color=White
-Font =0
-Size =10
-Align =2
-Text =0000
-
-[ScoreTextTotal2]
-X =82
-Y =456
-Color=White
-Font =0
-Size =10
-Text =SING_TOTAL
-Align=0
-
-[ScoreTextTotalSCore2]
-X =283
-Y =448
-Color=White
-Font =0
-Size =14
-Align =2
-Text =00000
-
-# Lines
-[ScorePlayer2Static1]
-Tex =ScoreLine
-X =45
-Y =351
-W =237
-H =1
-Type =Colorized
-Color =White
-
-[ScorePlayer2Static2]
-Tex =ScoreLine
-X =45
-Y =382
-W =237
-H =1
-Type =Colorized
-Color =White
-
-[ScorePlayer2Static5]
-Tex=PlayerIDBox01
-X =45
-Y =455
-W =26
-H =23
-Type=Transparent
-Color=White
-Reflection=1
-ReflectionSpacing=30
-
-#ScoreBar
-[ScoreStaticBackLevel2]
-Tex =ScoreLevel
-X =298
-Y =168
-W =95
-H =310
-Color =P1Lightest
-Type =Colorized
-
-[ScoreStaticBackLevelRound2]
-Tex =ScoreLevelRound
-X =298
-Y =138
-W =95
-H =8
-Color =P1Lightest
-Type =Colorized
-
-[ScoreStaticLevel2]
-Tex =ScoreLevel
-X =298
-Y =400
-W =95
-H =10
-Color =P1Dark
-Type =Colorized
-
-[ScoreStaticLevelRound2]
-Tex =ScoreLevelRound
-X =298
-Y =392
-W =95
-H =8
-Color =P1Dark
-Type =Colorized
-
-[ScorePlayer2Static3]
-Tex =ScoreEndCap
-X =294
-Y =478
-W =110
-H =30
-z=1
-Color =P1Dark
-Type =Colorized
-Reflection=1
-ReflectionSpacing=0
-
-[ScorePlayer2Static4]
-Tex =ScoreGlassBox
-X =294
-Y =148
-W =113
-H =331
-z =0.9
-Color =White
-Type =Transparent
-
-# P L A Y E R T W O
-[ScoreTextName3]
-X =758
-Y =290
-Font =0
-Size =10
-Text =P2
-Color =White
-Align=2
-
-[ScoreStaticRatingPicture3]
-X =545
-Y =165
-H =75
-W =75
-
-[ScoreTextScore3]
-X =583
-Y =235
-width=100
-Color=White
-Font =0
-Size =9
-Text =Tone Deaf
-Align=1
-
-[ScoreStaticBoxDark3]
-Tex=ScoreBar_box_dark
-X=733
-Y=327
-W=22
-H=20
-Color=P2Dark
-Type=Colorized
-
-[ScoreTextNotes3]
-X =728
-Y =322
-Color=White
-Font =0
-Size =10
-Text =SING_NOTES
-Align=2
-
-[ScoreTextNotesScore3]
-X =518
-Y =322
-Color=White
-Font =0
-Size =10
-Align =0
-Text =0000
-
-[ScoreStaticBoxLight3]
-Tex =ScoreBar_box_light
-X =733
-Y =358
-W =22
-H =20
-Color=P2Lightest
-Type=Colorized
-
-[ScoreTextLineBonus3]
-X =728
-Y =352
-Color=White
-Font =0
-Size =10
-Text =SING_PHRASE_BONUS
-Align=2
-
-[ScoreTextLineBonusScore3]
-X =518
-Y =352
-Color=White
-Font =0
-Size =10
-Align =0
-Text =0000
-
-[ScoreStaticBoxLightest3]
-Tex =ScoreBar_box_lightest
-X =733
-Y =390
-W =22
-H =20
-Color =P2Lightest
-Type=Colorized
-
-[ScoreTextGoldenNotes3]
-X =728
-Y =383
-Color=White
-Font =0
-Size =10
-Text =SING_GOLDEN_NOTES
-Align=2
-
-[ScoreTextGoldenNotesScore3]
-X =518
-Y =383
-Color=White
-Font =0
-Size =10
-Align =0
-Text =0000
-
-[ScoreTextTotal3]
-X =718
-Y =456
-Color=White
-Font =0
-Size =10
-Text =SING_TOTAL
-Align=2
-Reflection=1
-ReflectionSpacing=4
-
-[ScoreTextTotalScore3]
-X =517
-Y =448
-Color=White
-Font =0
-Size =14
-Align =0
-Text =00000
-Reflection=1
-ReflectionSpacing=4
-
-#Lines
-[ScorePlayer3Static1]
-Tex =ScoreLine
-X =518
-Y =351
-W =237
-H =1
-Type =Colorized
-Color =White
-
-[ScorePlayer3Static2]
-Tex =ScoreLine
-X =518
-Y =382
-W =237
-H =1
-Type =Colorized
-Color =White
-
-[ScorePlayer3Static5]
-Tex=PlayerIDBox02
-X =729
-Y =455
-W =26
-H =23
-Type=Transparent
-Color=White
-Reflection=1
-ReflectionSpacing=30
-
-#ScoreBar
-[ScoreStaticBackLevel3]
-Tex =ScoreLevel
-X =409
-Y =168
-W =95
-H =310
-Color =P2Lightest
-Type =Colorized
-
-[ScoreStaticBackLevelRound3]
-Tex =ScoreLevelRound
-X =409
-Y =138
-W =95
-H =8
-Color =P2Lightest
-Type =Colorized
-
-[ScoreStaticLevel3]
-Tex =ScoreLevel
-X =409
-Y =400
-W =95
-H =10
-Color =P2Dark
-Type =Colorized
-
-[ScoreStaticLevelRound3]
-Tex =ScoreLevelRound
-X =409
-Y =392
-W =95
-H =8
-Color =P2Dark
-Type =Colorized
-
-[ScorePlayer3Static3]
-Tex =ScoreEndCap
-X =405
-Y =478
-W =110
-H =30
-z=1
-Color =P2Dark
-Type =Colorized
-Reflection=1
-ReflectionSpacing=0
-
-[ScorePlayer3Static4]
-Tex =ScoreGlassBox
-X =405
-Y =148
-W =113
-H =331
-z =0.91
-Color =White
-Type =Transparent
-
-# # # # # # # # # # # # # # # # # # Three Player Score # # # # # # # # # # # #
-# P L A Y E R O N E
-[ScoreTextName4]
-X=20
-Y=160
-Font=0
-Size=14
-Align=0
-Text=P1
-Color=P1Dark
-
-[ScoreTextNotes4]
-X=20
-Y=220
-Font=0
-Size=9
-Align=0
-Text=SING_NOTES
-Color=White
-
-[ScoreTextNotesScore4]
-X=260
-Y=220
-Font=0
-Size=10
-Align=2
-Text=0000
-Color=White
-
-[ScoreTextLineBonus4]
-X=20
-Y=250
-Font=0
-Size=9
-Align=0
-Text=SING_PHRASE_BONUS
-Color=White
-
-[ScoreTextLineBonusScore4]
-X=260
-Y=250
-Font=0
-Size=10
-Align=2
-Text=0000
-Color=White
-
-[ScoreTextGoldenNotes4]
-X=20
-Y=280
-Font=0
-Size=9
-Align=0
-Text=SING_GOLDEN_NOTES
-Color=White
-
-[ScoreTextGoldenNotesScore4]
-X=260
-Y=280
-Font=0
-Size=10
-Align=2
-Text=0000
-Color=White
-
-[ScoreTextScore4]
-X=20
-Y=310
-Font=1
-Size=9
-Align=0
-Text=Tone Deaf
-Color=White
-
-[ScoreTextTotal4]
-X=47
-Y=373
-Font=0
-Size=10
-Align=0
-Text=SING_TOTAL
-Color=White
-
-[ScoreTextTotalScore4]
-X=260
-Y=364
-Font=0
-Size=14
-Align=2
-Text=00000
-Color=White
-
-[ScoreStaticBoxDark4]
-Tex =PlayerNumberBox
-X =20
-Y =370
-W =25
-H =25
-Type =Colorized
-Color =P1Dark
-Z=0.9
-Reflection=1
-ReflectionSpacing=4
-
-[ScorePlayer4Text1]
-X =24
-Y =376
-W =30
-H =30
-Z=1
-Color=White
-Font =1
-Size =5
-Align=0
-Text=P1
-
-#lines
-[ScorePlayer4Static1]
-X=20
-Y=218
-W=240
-H=2
-Tex=ScoreLine
-Type=Colorized
-Color=White
-
-[ScorePlayer4Static2]
-X=20
-Y=248
-W=240
-H=2
-Tex=ScoreLine
-Type=Colorized
-Color=White
-
-[ScorePlayer4Static3]
-X=20
-Y=278
-W=240
-H=2
-Tex=ScoreLine
-Type=Colorized
-Color=White
-
-[ScorePlayer4Static4]
-X=20
-Y=308
-W=240
-H=2
-Tex=ScoreLine
-Type=Colorized
-Color=White
-
-[ScorePlayer4Static5]
-X=20
-Y=338
-W=240
-H=4
-Tex=ScoreLine
-Type=Colorized
-Color=White
-
-# P L A Y E R T W O
-[ScoreTextName5]
-X=280
-Y=160
-Font=0
-Size=14
-Align=0
-Text=P2
-Color=P2Dark
-
-[ScoreTextNotes5]
-X=280
-Y=220
-Font=0
-Size=9
-Align=0
-Text=SING_NOTES
-Color=White
-
-[ScoreTextNotesScore5]
-X=520
-Y=220
-Font=0
-Size=10
-Align=2
-Text=0000
-Color=White
-
-[ScoreTextLineBonus5]
-X=280
-Y=250
-Font=0
-Size=9
-Align=0
-Text=SING_PHRASE_BONUS
-Color=White
-
-[ScoreTextLineBonusScore5]
-X=520
-Y=250
-Font=0
-Size=10
-Align=2
-Text=0000
-Color=White
-
-[ScoreTextGoldenNotes5]
-X=280
-Y=280
-Font=0
-Size=9
-Align=0
-Text=SING_GOLDEN_NOTES
-Color=White
-
-[ScoreTextGoldenNotesScore5]
-X=520
-Y=280
-Font=0
-Size=10
-Align=2
-Text=0000
-Color=White
-
-[ScoreTextScore5]
-X=280
-Y=310
-Font=1
-Size=9
-Align=0
-Text=Tone Deaf
-Color=White
-
-[ScoreTextTotal5]
-X=307
-Y=373
-Font=0
-Size=10
-Align=0
-Text=SING_TOTAL
-Color=White
-
-[ScoreTextTotalScore5]
-X=520
-Y=364
-Font=0
-Size=14
-Align=2
-Text=00000
-Color=White
-
-[ScoreStaticBoxDark5]
-Tex =PlayerNumberBox
-X =280
-Y =370
-W =25
-H =25
-Type =Colorized
-Color =P2Dark
-Z=0.9
-Reflection=1
-ReflectionSpacing=4
-
-[ScorePlayer5Text1]
-X =284
-Y =376
-W =30
-H =30
-Z=1
-Color=White
-Font =1
-Size =5
-Align=0
-Text=P2
-
-[ScorePlayer5Static1]
-X=280
-Y=218
-W=240
-H=2
-Tex=ScoreLine
-Type=Colorized
-Color=White
-
-[ScorePlayer5Static2]
-X=280
-Y=248
-W=240
-H=2
-Tex=ScoreLine
-Type=Colorized
-Color=White
-
-[ScorePlayer5Static3]
-X=280
-Y=278
-W=240
-H=2
-Tex=ScoreLine
-Type=Colorized
-Color=White
-
-[ScorePlayer5Static4]
-X=280
-Y=308
-W=240
-H=2
-Tex=ScoreLine
-Type=Colorized
-Color=White
-
-[ScorePlayer5Static5]
-X=280
-Y=338
-W=240
-H=4
-Tex=ScoreLine
-Type=Colorized
-Color=White
-
-# P L A Y E R T H R E E
-[ScoreTextName6]
-X=540
-Y=160
-Font=0
-Size=14
-Align=0
-Text=P3
-Color=P3Dark
-
-[ScoreTextNotes6]
-X=540
-Y=220
-Font=0
-Size=9
-Align=0
-Text=SING_NOTES
-Color=White
-
-[ScoreTextNotesScore6]
-X=780
-Y=220
-Font=0
-Size=10
-Align=2
-Text=0000
-Color=White
-
-[ScoreTextLineBonus6]
-X=540
-Y=250
-Font=0
-Size=9
-Align=0
-Text=SING_PHRASE_BONUS
-Color=White
-
-[ScoreTextLineBonusScore6]
-X=780
-Y=250
-Font=0
-Size=10
-Align=2
-Text=0000
-Color=White
-
-[ScoreTextGoldenNotes6]
-X=540
-Y=280
-Font=0
-Size=9
-Align=0
-Text=SING_GOLDEN_NOTES
-Color=White
-
-[ScoreTextGoldenNotesScore6]
-X=780
-Y=280
-Font=0
-Size=10
-Align=2
-Text=0000
-Color=White
-
-[ScoreTextScore6]
-X=540
-Y=310
-Font=1
-Size=9
-Align=0
-Text=Tone Deaf
-Color=White
-
-[ScoreTextTotal6]
-X=567
-Y=373
-Font=0
-Size=10
-Align=0
-Text=SING_TOTAL
-Color=White
-
-[ScoreTextTotalScore6]
-X=780
-Y=364
-Font=0
-Size=14
-Align=2
-Text=00000
-Color=White
-
-[ScoreStaticBoxDark6]
-Tex =PlayerNumberBox
-X =540
-Y =370
-W =25
-H =25
-Type =Colorized
-Color =P3Dark
-Z=0.9
-Reflection=1
-ReflectionSpacing=4
-
-[ScorePlayer6Text1]
-X =544
-Y =376
-W =30
-H =30
-Z=1
-Color=White
-Font =1
-Size =5
-Align=0
-Text=P3
-
-#lines
-[ScorePlayer6Static1]
-X=540
-Y=218
-W=240
-H=2
-Tex=ScoreLine
-Type=Colorized
-Color=White
-
-[ScorePlayer6Static2]
-X=540
-Y=248
-W=240
-H=2
-Tex=ScoreLine
-Type=Colorized
-Color=White
-
-[ScorePlayer6Static3]
-X=540
-Y=278
-W=240
-H=2
-Tex=ScoreLine
-Type=Colorized
-Color=White
-
-[ScorePlayer6Static4]
-X=540
-Y=308
-W=240
-H=2
-Tex=ScoreLine
-Type=Colorized
-Color=White
-
-[ScorePlayer6Static5]
-X=540
-Y=338
-W=240
-H=4
-Tex=ScoreLine
-Type=Colorized
-Color=White
-
-[Options]
-Texts = 6
-Fade = 2
-
-[OptionsBackground]
-Tex=OptionsBG
-
-[OptionsStatic1]
-X =40
-Y =22
-W =27
-H =27
-Color =White
-Tex =IconOption
-Type=Colorized
-
-[OptionsStatic2]
-X =0
-Y =549
-W =252
-H =28
-Tex=Leiste1
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[OptionsStatic3]
-X =254
-Y =549
-W =548
-H =28
-Tex=Leiste2
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[OptionsStatic4]
-X =260
-Y =552
-W =24
-H =23
-Tex=ButtonNavi
-Color =White
-Type=Transparent
-Style=5
-
-[OptionsStatic5]
-X =388
-Y =552
-W =24
-H =23
-Tex=ButtonEnter
-Color =White
-Type=Transparent
-Style=5
-
-[OptionsStatic6]
-X =512
-Y =552
-W =32
-H =23
-Tex=ButtonEsc
-Color =White
-Type=Transparent
-
-[OptionsText1]
-X =70
-Y =6
-Color=White
-Font =0
-Size =20
-Text=SING_OPTIONS
-Align=0
-
-[OptionsText2]
-X =238
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=2
-Text=SING_OPTIONS_WHEREAMI
-
-[OptionsText3]
-X =70
-Y =53
-Color=White
-Font =0
-Size =10
-Align =0
-Text=SING_OPTIONS_DESC
-
-[OptionsText4]
-X =294
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SING_LEGEND_NAVIGATE
-
-[OptionsText5]
-X =418
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SING_LEGEND_SELECT
-
-[OptionsText6]
-X =538
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SING_LEGEND_ESC
-
-[OptionsButtonGame]
-X =100
-Y =215
-W =150
-H =50
-Tex =Button
-Color =DarkBlue
-DColor = LightBlue
-Type=Colorized
-Texts=1
-Fade=1
-FadeText=1
-SelectH=100
-FadeTex=ButtonFade
-FadeTexPos=0
-
-[OptionsButtonGameText1]
-X =75
-Y =10
-Font=0
-Size=10
-Align=1
-Text=SING_OPTIONS_GAME
-Color=White
-
-[OptionsButtonGraphics]
-X =255
-Y =215
-W =150
-H =50
-Tex =Button
-Color =DarkBlue
-DColor = LightBlue
-Type=Colorized
-Texts=1
-Fade=1
-FadeText=1
-SelectH=100
-FadeTex=ButtonFade
-FadeTexPos=0
-
-[OptionsButtonGraphicsText1]
-X =75
-Y =10
-Font=0
-Size=10
-Align=1
-Text=SING_OPTIONS_GRAPHICS
-Color=White
-
-[OptionsButtonSound]
-X =410
-Y =215
-W =150
-H =50
-Tex =Button
-Color =DarkBlue
-DColor = LightBlue
-Type=Colorized
-Texts=1
-Fade=1
-FadeText=1
-SelectH=100
-FadeTex=ButtonFade
-FadeTexPos=0
-
-[OptionsButtonSoundText1]
-X =75
-Y =10
-Font=0
-Size=10
-Align=1
-Text=SING_OPTIONS_SOUND
-Color=White
-
-[OptionsButtonLyrics]
-X =565
-Y =215
-W =150
-H =50
-Tex =Button
-Color =DarkBlue
-DColor = LightBlue
-Type=Colorized
-Align=0
-Texts=1
-Fade=1
-FadeText=1
-SelectH=100
-FadeTex=ButtonFade
-FadeTexPos=0
-
-[OptionsButtonLyricsText1]
-X =75
-Y =10
-Font=0
-Size=10
-Align=1
-Text=SING_OPTIONS_LYRICS
-Color=White
-
-[OptionsButtonThemes]
-X =100
-Y =335
-W =150
-H =50
-Tex =Button
-Color =DarkBlue
-DColor = LightBlue
-Type=Colorized
-Align=0
-Texts=1
-Fade=1
-FadeText=1
-SelectH=100
-FadeTex=ButtonFade
-FadeTexPos=0
-
-[OptionsButtonThemesText1]
-X =75
-Y =10
-Font=0
-Size=10
-Align=1
-Text=SING_OPTIONS_THEMES
-Color=White
-
-[OptionsButtonRecord]
-X =255
-Y =335
-W =150
-H =50
-Tex =Button
-Color =DarkBlue
-DColor = LightBlue
-Type=Colorized
-Align=0
-Texts=1
-Fade=1
-FadeText=1
-SelectH=100
-FadeTex=ButtonFade
-FadeTexPos=0
-
-[OptionsButtonRecordText1]
-X =75
-Y =10
-Font=0
-Size=10
-Align=1
-Text=SING_OPTIONS_RECORD
-Color=White
-Texts=1
-
-[OptionsButtonAdvanced]
-X =410
-Y =335
-W =150
-H =50
-Tex =Button
-Color =DarkBlue
-DColor = LightBlue
-Type=Colorized
-Align=0
-Texts=1
-Fade=1
-FadeText=1
-SelectH=100
-FadeTex=ButtonFade
-FadeTexPos=0
-
-[OptionsButtonAdvancedText1]
-X =75
-Y =10
-Font=0
-Size=10
-Align=1
-Text=SING_OPTIONS_ADVANCED
-Color=White
-Texts=1
-
-[OptionsButtonExit]
-X =565
-Y =335
-W =150
-H =50
-Tex =Button
-Color =DarkBlue
-DColor = LightBlue
-Type=Colorized
-Align=0
-Texts=1
-Fade=1
-FadeText=1
-SelectH=100
-FadeTex=ButtonFade
-FadeTexPos=0
-
-[OptionsButtonExitText1]
-X =75
-Y =10
-Font=0
-Size=10
-Align=1
-Text=SING_OPTIONS_EXIT
-Color=White
-
-[OptionsGame]
-Texts = 5
-
-[OptionsGameBackground]
-Tex=OptionsBG
-
-[OptionsGameStatic1]
-X =40
-Y =22
-W =27
-H =27
-Color =White
-Tex =IconOption
-Type=Colorized
-
-[OptionsGameStatic2]
-X =0
-Y =549
-W =252
-H =28
-Tex=Leiste1
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[OptionsGameStatic3]
-X =254
-Y =549
-W =548
-H =28
-Tex=Leiste2
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[OptionsGameStatic4]
-X =260
-Y =552
-W =24
-H =23
-Tex=ButtonNavi
-Color =White
-Type=Transparent
-Style=5
-
-[OptionsGameStatic5]
-X =388
-Y =552
-W =32
-H =23
-Tex=ButtonEsc
-Color =White
-Type=Transparent
-
-[OptionsGameText1]
-X =70
-Y =6
-Color=White
-Font =0
-Size =20
-Text=SING_OPTIONS
-Align=0
-
-[OptionsGameText2]
-X =238
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=2
-Text=SING_OPTIONS_GAME_WHEREAMI
-
-[OptionsGameText3]
-X =70
-Y =53
-Color=White
-Font =0
-Size =10
-Align =0
-Text=SING_OPTIONS_GAME_DESC
-
-[OptionsGameText4]
-X =294
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SING_LEGEND_NAVIGATE
-
-[OptionsGameText5]
-X =418
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SING_LEGEND_ESC
-
-[OptionsGameSelectPlayers]
-Tex = MainBar
-TexSBG =SelectBG
-Text =SING_OPTIONS_GAME_PLAYERS
-X = 40
-Y = 85
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex = MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsGameSelectDifficulty]
-Tex = MainBar
-TexSBG =SelectBG
-Text =SING_OPTIONS_GAME_DIFFICULTY
-X = 40
-Y = 140
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex = MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-
-[OptionsGameSelectSlideLanguage]
-Tex = MainBar
-TexSBG =SelectBG
-Text =SING_OPTIONS_GAME_LANGUAGE
-X = 40
-Y = 195
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex = MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsGameSelectTabs]
-Tex =MainBar
-TexSBG =SelectBG
-Text =SING_OPTIONS_GAME_TABS
-X = 40
-Y = 250
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsGameSelectSlideSorting]
-Tex =MainBar
-TexSBG =SelectBG
-Text =SING_OPTIONS_GAME_SORTING
-X = 40
-Y = 305
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsGameSelectDebug]
-Tex =MainBar
-TexSBG =SelectBG
-Text =SING_OPTIONS_GAME_DEBUG
-X = 40
-Y = 360
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsGameButtonExit]
-X = 40
-Y = 415
-W = 230
-H = 70
-Tex =MainBar
-Color = ColorDark
-DColor = Gray
-Type = Colorized
-
-[OptionsGraphics]
-Texts = 5
-
-[OptionsGraphicsBackground]
-Tex=OptionsBG
-
-[OptionsGraphicsStatic1]
-X =40
-Y =22
-W =27
-H =27
-Color =White
-Tex =IconOption
-Type=Colorized
-
-[OptionsGraphicsStatic2]
-X =0
-Y =549
-W =252
-H =28
-Tex=Leiste1
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[OptionsGraphicsStatic3]
-X =254
-Y =549
-W =548
-H =28
-Tex=Leiste2
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[OptionsGraphicsStatic4]
-X =260
-Y =552
-W =24
-H =23
-Tex=ButtonNavi
-Color =White
-Type=Transparent
-Style=5
-
-[OptionsGraphicsStatic5]
-X =388
-Y =552
-W =32
-H =23
-Tex=ButtonEsc
-Color =White
-Type=Transparent
-
-[OptionsGraphicsText1]
-X =70
-Y =6
-Color=White
-Font =0
-Size =20
-Text=SING_OPTIONS
-Align=0
-
-[OptionsGraphicsText2]
-X =238
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=2
-Text=SING_OPTIONS_GRAPHICS_WHEREAMI
-
-[OptionsGraphicsText3]
-X =70
-Y =53
-Color=White
-Font =0
-Size =10
-Align =0
-Text=SING_OPTIONS_GRAPHICS_DESC
-
-[OptionsGraphicsText4]
-X =294
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SING_LEGEND_NAVIGATE
-
-[OptionsGraphicsText5]
-X =418
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SING_LEGEND_ESC
-
-[OptionsGraphicsSelectSlideResolution]
-Tex =MainBar
-TexSBG =SelectBG
-Text=SING_OPTIONS_GRAPHICS_RESOLUTION
-X = 40
-Y = 85
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsGraphicsSelectFullscreen]
-Tex =MainBar
-TexSBG =SelectBG
-Text =SING_OPTIONS_GRAPHICS_FULLSCREEN
-X = 40
-Y = 140
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsGraphicsSelectDepth]
-Tex =MainBar
-TexSBG =SelectBG
-Text =SING_OPTIONS_GRAPHICS_DEPTH
-X = 40
-Y = 195
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsGraphicsSelectOscilloscope]
-Tex =MainBar
-TexSBG =SelectBG
-Text =SING_OPTIONS_GRAPHICS_OSCILLOSCOPE
-X = 40
-Y = 250
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsGraphicsSelectMovieSize]
-Tex =MainBar
-TexSBG =SelectBG
-Text =SING_OPTIONS_GRAPHICS_MOVIE_SIZE
-X = 40
-Y = 305
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsGraphicsButtonExit]
-X = 40
-Y = 360
-W = 230
-H = 70
-Tex =MainBar
-Color = ColorDark
-DColor = Gray
-Type = Colorized
-
-[OptionsSound]
-Texts = 5
-
-[OptionsSoundBackground]
-Tex=OptionsBG
-
-[OptionsSoundStatic1]
-X =40
-Y =22
-W =27
-H =27
-Color =White
-Tex =IconOption
-Type=Colorized
-
-[OptionsSoundStatic2]
-X =0
-Y =549
-W =252
-H =28
-Tex=Leiste1
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[OptionsSoundStatic3]
-X =254
-Y =549
-W =548
-H =28
-Tex=Leiste2
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[OptionsSoundStatic4]
-X =260
-Y =552
-W =24
-H =23
-Tex=ButtonNavi
-Color =White
-Type=Transparent
-Style=5
-
-[OptionsSoundStatic5]
-X =388
-Y =552
-W =32
-H =23
-Tex=ButtonEsc
-Color =White
-Type=Transparent
-
-[OptionsSoundText1]
-X =70
-Y =6
-Color=White
-Font =0
-Size =20
-Text=SING_OPTIONS
-Align=0
-
-[OptionsSoundText2]
-X =238
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=2
-Text=SING_OPTIONS_SOUND_WHEREAMI
-
-[OptionsSoundText3]
-X =70
-Y =53
-Color=White
-Font =0
-Size =10
-Align =0
-Text=SING_OPTIONS_SOUND_DESC
-
-[OptionsSoundText4]
-X =294
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SING_LEGEND_NAVIGATE
-
-[OptionsSoundText5]
-X =418
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SING_LEGEND_ESC
-
-[OptionsSoundSelectMicBoost]
-Tex =MainBar
-TexSBG =SelectBG
-Text =SING_OPTIONS_SOUND_MIC_BOOST
-X = 40
-Y = 85
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsSoundSelectClickAssist]
-Tex =MainBar
-TexSBG =SelectBG
-Text =SING_OPTIONS_SOUND_CLICK_ASSIST
-X = 40
-Y = 140
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsSoundSelectBeatClick]
-Tex =MainBar
-TexSBG =SelectBG
-Text =SING_OPTIONS_SOUND_BEAT_CLICK
-X = 40
-Y = 195
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsSoundSelectThreshold]
-Tex =MainBar
-TexSBG =SelectBG
-Text =SING_OPTIONS_SOUND_THRESHOLD
-X = 40
-Y = 250
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsSoundSelectTwoPlayerMode]
-Tex =MainBar
-TexSBG =SelectBG
-Text =SING_OPTIONS_SOUND_TWO_PLAYERS_MODE
-X = 40
-Y = 305
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsSoundSelectSlidePreviewVolume]
-Tex =MainBar
-TexSBG =SelectBG
-Text=SING_OPTIONS_SOUND_PREVIEWVOLUME
-X = 40
-Y = 305
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsSoundSelectSlidePreviewFADING]
-Tex =MainBar
-TexSBG =SelectBG
-Text=SING_OPTIONS_SOUND_PREVIEWFADING
-X = 40
-Y = 360
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsSoundButtonExit]
-X = 40
-Y = 415
-W = 230
-H = 70
-Tex =MainBar
-Color = ColorDark
-DColor = Gray
-Type = Colorized
-
-[OptionsLyrics]
-Texts = 1
-
-[OptionsLyricsBackground]
-Tex=OptionsBG
-
-[OptionsLyricsStatic1]
-X =40
-Y =22
-W =27
-H =27
-Color =White
-Tex =IconOption
-Type=Colorized
-
-[OptionsLyricsStatic2]
-X =0
-Y =549
-W =252
-H =28
-Tex=Leiste1
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[OptionsLyricsStatic3]
-X =254
-Y =549
-W =548
-H =28
-Tex=Leiste2
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[OptionsLyricsStatic4]
-X =260
-Y =552
-W =24
-H =23
-Tex=ButtonNavi
-Color =White
-Type=Transparent
-Style=5
-
-[OptionsLyricsStatic5]
-X =388
-Y =552
-W =32
-H =23
-Tex=ButtonEsc
-Color =White
-Type=Transparent
-
-[OptionsLyricsText1]
-X =70
-Y =6
-Color=White
-Font =0
-Size =20
-Text=SING_OPTIONS
-Align=0
-
-[OptionsLyricsText2]
-X =238
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=2
-Text=SING_OPTIONS_LYRICS_WHEREAMI
-
-[OptionsLyricsText3]
-X =70
-Y =53
-Color=White
-Font =0
-Size =10
-Align =0
-Text=SING_OPTIONS_LYRICS_DESC
-
-[OptionsLyricsText4]
-X =294
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SING_LEGEND_NAVIGATE
-
-[OptionsLyricsText5]
-X =418
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SING_LEGEND_ESC
-
-[OptionsLyricsSelectLyricsFont]
-Tex =MainBar
-TexSBG =SelectBG
-Text =SING_OPTIONS_LYRICS_FONT
-X = 40
-Y = 85
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsLyricsSelectLyricsEffect]
-Tex =MainBar
-TexSBG =SelectBG
-Text =SING_OPTIONS_LYRICS_EFFECT
-X = 40
-Y = 140
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsLyricsSelectSolmization]
-Tex =MainBar
-TexSBG =SelectBG
-Text =SING_OPTIONS_LYRICS_SOLMIZATION
-X = 40
-Y = 195
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsLyricsButtonExit]
-X = 40
-Y = 250
-W = 230
-H = 70
-Tex =MainBar
-Color = ColorDark
-DColor = Gray
-Type = Colorized
-
-[OptionsThemes]
-Texts = 5
-
-[OptionsThemesBackground]
-Tex=OptionsBG
-
-[OptionsThemesStatic1]
-X =40
-Y =22
-W =27
-H =27
-Color =White
-Tex =IconOption
-Type=Colorized
-
-[OptionsThemesStatic2]
-X =0
-Y =549
-W =252
-H =28
-Tex=Leiste1
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[OptionsThemesStatic3]
-X =254
-Y =549
-W =548
-H =28
-Tex=Leiste2
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[OptionsThemesStatic4]
-X =260
-Y =552
-W =24
-H =23
-Tex=ButtonNavi
-Color =White
-Type=Transparent
-Style=5
-
-[OptionsThemesStatic5]
-X =388
-Y =552
-W =32
-H =23
-Tex=ButtonEsc
-Color =White
-Type=Transparent
-
-[OptionsThemesText1]
-X =70
-Y =6
-Color=White
-Font =0
-Size =20
-Text=SING_OPTIONS
-Align=0
-
-[OptionsThemesText2]
-X =238
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=2
-Text=SING_OPTIONS_THEMES_WHEREAMI
-
-[OptionsThemesText3]
-X =70
-Y =53
-Color=White
-Font =0
-Size =10
-Align =0
-Text=SING_OPTIONS_THEMES_DESC
-
-[OptionsThemesText4]
-X =294
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SING_LEGEND_NAVIGATE
-
-[OptionsThemesText5]
-X =418
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SING_LEGEND_ESC
-
-[OptionsThemesSelectTheme]
-Tex =MainBar
-TexSBG =SelectBG
-Text =SING_OPTIONS_THEMES_THEME
-X = 40
-Y = 85
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsThemesSelectSkin]
-Tex =MainBar
-TexSBG =SelectBG
-Text =SING_OPTIONS_THEMES_SKIN
-X = 40
-Y = 140
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsThemesSelectColor]
-Tex =MainBar
-TexSBG =SelectBG
-Text =SING_OPTIONS_THEMES_COLOR
-X = 40
-Y = 195
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsThemesButtonExit]
-X = 40
-Y = 250
-W = 230
-H = 70
-Tex =MainBar
-Color = ColorDark
-DColor = Gray
-Type = Colorized
-
-[OptionsRecord]
-Texts = 5
-
-[OptionsRecordBackground]
-Tex=OptionsBG
-
-[OptionsRecordStatic1]
-X =40
-Y =22
-W =27
-H =27
-Color =White
-Tex =IconOption
-Type=Colorized
-
-[OptionsRecordStatic2]
-X =0
-Y =549
-W =252
-H =28
-Tex=Leiste1
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[OptionsRecordStatic3]
-X =254
-Y =549
-W =548
-H =28
-Tex=Leiste2
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[OptionsRecordStatic4]
-X =260
-Y =552
-W =24
-H =23
-Tex=ButtonNavi
-Color =White
-Type=Transparent
-Style=5
-
-[OptionsRecordStatic5]
-X =388
-Y =552
-W =32
-H =23
-Tex=ButtonEsc
-Color =White
-Type=Transparent
-
-[OptionsRecordText1]
-X =70
-Y =6
-Color=White
-Font =0
-Size =20
-Text=SING_OPTIONS
-Align=0
-
-[OptionsRecordText2]
-X =238
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=2
-Text=SING_OPTIONS_RECORD_WHEREAMI
-
-[OptionsRecordText3]
-X =70
-Y =53
-Color=White
-Font =0
-Size =10
-Align =0
-Text=SING_OPTIONS_RECORD_DESC
-
-[OptionsRecordText4]
-X =294
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SING_LEGEND_NAVIGATE
-
-[OptionsRecordText5]
-X =418
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SING_LEGEND_ESC
-
-[OptionsRecordSelectSlideCard]
-Tex = MainBar
-TexSBG =SelectBG
-Text =SING_OPTIONS_RECORD_CARD
-X = 40
-Y = 85
-W = 230
-H = 70
-SkipX = 50
-Fields=1
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex = MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsRecordSelectSlideInput]
-Tex = MainBar
-TexSBG =SelectBG
-Text =SING_OPTIONS_RECORD_INPUT
-X = 40
-Y = 140
-W = 230
-H = 70
-SkipX = 50
-Fields=1
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex = MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsRecordSelectSlideChannelL]
-Tex = MainBar
-TexSBG =SelectBG
-Text =SING_OPTIONS_RECORD_CHANNELL
-X = 40
-Y = 195
-W = 230
-H = 70
-SkipX = 50
-Fields=7
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex = MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsRecordSelectSlideChannelR]
-Tex = MainBar
-TexSBG =SelectBG
-Text =SING_OPTIONS_RECORD_CHANNELR
-X = 40
-Y = 250
-W = 230
-H = 70
-SkipX = 50
-Fields=7
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex = MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsRecordButtonExit]
-X = 40
-Y = 305
-W = 230
-H = 70
-Tex = MainBar
-Color = ColorDark
-DColor = Gray
-Type = Colorized
-
-[OptionsAdvanced]
-Texts = 5
-
-[OptionsAdvancedBackground]
-Tex=OptionsBG
-
-[OptionsAdvancedStatic1]
-X =40
-Y =22
-W =27
-H =27
-Color =White
-Tex =IconOption
-Type=Colorized
-
-[OptionsAdvancedStatic2]
-X =0
-Y =549
-W =252
-H =28
-Tex=Leiste1
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[OptionsAdvancedStatic3]
-X =254
-Y =549
-W =548
-H =28
-Tex=Leiste2
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[OptionsAdvancedStatic4]
-X =260
-Y =552
-W =24
-H =23
-Tex=ButtonNavi
-Color =White
-Type=Transparent
-Style=5
-
-[OptionsAdvancedStatic5]
-X =388
-Y =552
-W =32
-H =23
-Tex=ButtonEsc
-Color =White
-Type=Transparent
-
-[OptionsAdvancedText1]
-X =70
-Y =6
-Color=White
-Font =0
-Size =20
-Text=SING_OPTIONS
-Align=0
-
-[OptionsAdvancedText2]
-X =238
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=2
-Text=SING_OPTIONS_ADVANCED_WHEREAMI
-
-[OptionsAdvancedText3]
-X =70
-Y =53
-Color=White
-Font =0
-Size =10
-Align =0
-Text=SING_OPTIONS_ADVANCED_DESC
-
-[OptionsAdvancedText4]
-X =294
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SING_LEGEND_NAVIGATE
-
-[OptionsAdvancedText5]
-X =418
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SING_LEGEND_ESC
-
-#########unused at the moment#########
-#[OptionsAdvancedSelectLoadAnimation]
-#Tex =MainBar
-#TexSBG =SelectBG
-#Text=SING_OPTIONS_ADVANCED_LOADANIMATION
-#X = 40
-#Y = 85
-#W = 230
-#H = 70
-#SkipX = 50
-
-#Color = ColorDark
-#DColor = Gray
-#TColor = White
-#TDColor = White
-#SBGTex =MainBar
-#SBGColor = ColorDark
-#SBGDColor = Gray
-#STColor = White
-#STDColor = GrayDark
-
-[OptionsAdvancedSelectScreenFade]
-Tex =MainBar
-TexSBG =SelectBG
-Text =SING_OPTIONS_ADVANCED_SCREENFADE
-X = 40
-Y = 85
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsAdvancedSelectEffectSing]
-Tex =MainBar
-TexSBG =SelectBG
-Text =SING_OPTIONS_ADVANCED_EFFECTSING
-X = 40
-Y = 140
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsAdvancedSelectLineBonus]
-Tex =MainBar
-TexSBG =SelectBG
-Text =SING_OPTIONS_GRAPHICS_LINEBONUS
-X = 40
-Y = 195
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsAdvancedSelectSlideOnSongClick]
-Tex =MainBar
-TexSBG =SelectBG
-Text=SING_OPTIONS_ADVANCED_ONSONGCLICK
-X = 40
-Y = 250
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsAdvancedSelectAskbeforeDel]
-Tex =MainBar
-TexSBG =SelectBG
-Text =SING_OPTIONS_ADVANCED_ASKBEFOREDEL
-X = 40
-Y = 305
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsAdvancedSelectPartyPopup]
-Tex =MainBar
-TexSBG =SelectBG
-Text =SING_OPTIONS_ADVANCED_PARTYPOPUP
-X = 40
-Y = 360
-W = 230
-H = 70
-SkipX = 50
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex =MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[OptionsAdvancedButtonExit]
-X = 40
-Y = 415
-W = 230
-H = 70
-Tex =MainBar
-Color = ColorDark
-DColor = Gray
-Type = Colorized
-
-[Top5]
-Texts=1
-
-[Top5Background]
-Tex=Top5BG
-
-[Top5Text1]
-X =70
-Y =6
-Color=White
-Font =0
-Size =20
-Align=0
-Text =SING_TOP_5_CHARTS
-
-[Top5TextArtistTitle]
-X =70
-Y =53
-Color =White
-Font =0
-Size =10
-Align =0
-Text =artist - title
-
-[Top5Text4]
-X =70
-Y =73
-Color=White
-Font =0
-Size =10
-Align=0
-Text =SING_OPTIONS_GAME_DIFFICULTY
-
-[Top5TextLevel]
-X =270
-Y =73
-Color =White
-Font =0
-Size =10
-Align =1
-Text =easy
-
-[Top5Static1]
-X =40
-Y =22
-W =27
-H =27
-Color =White
-Tex =ScoreIcon
-Type=Colorized
-
-[Top5Static2]
-X =0
-Y =549
-W =252
-H =28
-Tex=Leiste1
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[Top5Static3]
-X =254
-Y =549
-W =548
-H =28
-Tex=Leiste2
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[Top5Text2]
-X =238
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=2
-Text=SING_TOP_5_CHARTS_WHEREAMI
-
-[Top5Static4]
-X =260
-Y =552
-W =24
-H =23
-Tex=ButtonEnter
-Color =White
-Type=Transparent
-
-[Top5Text3]
-X =290
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SING_TOP_5_CHARTS_CONTINUE
-
-[Top5TextName1]
-X =150
-Y =190
-Color =White
-Font =0
-Size =14
-Align =0
-Text =1. Player1
-
-[Top5TextName2]
-X =150
-Y =240
-Color =White
-Font =0
-Size =14
-Align =0
-Text =2. Player2
-
-[Top5TextName3]
-X =150
-Y =290
-Color =White
-Font =0
-Size =14
-Align =0
-Text =3. Player3
-
-[Top5TextName4]
-X =150
-Y =340
-Color =White
-Font =0
-Size =14
-Align =0
-Text =4. Player4
-
-[Top5TextName5]
-X =150
-Y =390
-Color =White
-Font =0
-Size =14
-Align =0
-Text =5. Player5
-
-[Top5TextScore1]
-X =680
-Y =190
-Color =White
-Font =0
-Size =14
-Align =2
-Text =00000
-
-[Top5TextScore2]
-X =680
-Y =240
-Color =White
-Font =0
-Size =14
-Align =2
-Text =00000
-
-[Top5TextScore3]
-X =680
-Y =290
-Color =White
-Font =0
-Size =14
-Align =2
-Text =00000
-
-[Top5TextScore4]
-X =680
-Y =340
-Color =White
-Font =0
-Size =14
-Align =2
-Text =00000
-
-[Top5TextScore5]
-X =680
-Y =390
-Color =White
-Font =0
-Size =14
-Align =2
-Text =00000
-
-[Top5TextNumber1]
-X =120
-Y =193
-Color =White
-Font =1
-Size =9
-Align =1
-Text =1
-
-[Top5TextNumber2]
-X =120
-Y =243
-Color =White
-Font =1
-Size =9
-Align =1
-Text =2
-
-[Top5TextNumber3]
-X =120
-Y =293
-Color =White
-Font =1
-Size =9
-Align =1
-Text =3
-
-[Top5TextNumber4]
-X =120
-Y =343
-Color =White
-Font =1
-Size =9
-Align =1
-Text =4
-
-[Top5TextNumber5]
-X =120
-Y =393
-Color =White
-Font =1
-Size =9
-Align =1
-Text =5
-
-[Top5StaticNumber1]
-Tex=PlayerNumberBox
-X=100
-Y=186
-W=40
-H=40
-Color=P1Dark
-Type=Colorized
-
-[Top5StaticNumber2]
-Tex=PlayerNumberBox
-X=100
-Y=236
-W=40
-H=40
-Color=P1Dark
-Type=Colorized
-
-[Top5StaticNumber3]
-Tex=PlayerNumberBox
-X=100
-Y=286
-W=40
-H=40
-Color=P1Dark
-Type=Colorized
-
-[Top5StaticNumber4]
-Tex=PlayerNumberBox
-X=100
-Y=336
-W=40
-H=40
-Color=P1Dark
-Type=Colorized
-
-[Top5StaticNumber5]
-Tex=PlayerNumberBox
-X=100
-Y=386
-W=40
-H=40
-Color=P1Dark
-Type=Colorized
-
-[Level]
-Texts=5
-
-[LevelBackground]
-Tex=MainBG
-
-[LevelStatic1]
-X =0
-Y =549
-W =252
-H =28
-Tex=Leiste1
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[LevelStatic2]
-X =254
-Y =549
-W =548
-H =28
-Tex=Leiste2
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[LevelStatic3]
-X =40
-Y =22
-W =27
-H =27
-Color =White
-Tex =MainIcon
-Type=Colorized
-
-[LevelStatic4]
-X =260
-Y =552
-W =24
-H =23
-Tex=ButtonNavi
-Color =White
-Type=Transparent
-Style=5
-
-[LevelStatic5]
-X =388
-Y =552
-W =24
-H =23
-Tex=ButtonEnter
-Color =White
-Type=Transparent
-Style=5
-
-[LevelText1]
-X =70
-Y =6
-ColR = 0.7
-ColG = 0.7
-ColB = 0.7
-Font = 0
-Size = 20
-Color =White
-Text=SING_MODE
-
-[LevelText2]
-X =70
-Y =53
-Color=White
-Font =0
-Size =10
-Align =0
-Text=SING_DIFFICULTY_DESC
-
-[LevelText3]
-X =238
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=2
-Text=SING_DIFFICULTY_WHEREAMI
-
-[LevelText4]
-X =294
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SING_LEGEND_NAVIGATE
-
-[LevelText5]
-X =418
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SING_DIFFICULTY_CONTINUE
-
-[LevelButtonEasy]
-X =180
-Y =270
-W =150
-H =50
-Tex =Button
-Color =DarkBlue
-DColor = LightBlue
-Type=Colorized
-Texts=1
-Fade=1
-FadeText=1
-SelectH=100
-FadeTex=ButtonFade
-FadeTexPos=0
-
-[LevelButtonMedium]
-X =335
-Y =270
-W =150
-H =50
-Tex =Button
-Color =DarkBlue
-DColor = LightBlue
-Type=Colorized
-Texts=1
-Fade=1
-FadeText=1
-SelectH=100
-FadeTex=ButtonFade
-FadeTexPos=0
-
-[LevelButtonHard]
-X =490
-Y =270
-W =150
-H =50
-Tex =Button
-Color =DarkBlue
-DColor = LightBlue
-Type=Colorized
-Texts=1
-Fade=1
-FadeText=1
-SelectH=100
-FadeTex=ButtonFade
-FadeTexPos=0
-
-[LevelButtonEasyText1]
-X =75
-Y =10
-Font=0
-Size=10
-Align=1
-Color=White
-Text=SING_EASY
-
-[LevelButtonMediumText1]
-X =75
-Y =10
-Font=0
-Size=10
-Align=1
-Color=White
-Text=SING_MEDIUM
-
-[LevelButtonHardText1]
-X =75
-Y =10
-Font=0
-Size=10
-Align=1
-Color=White
-Text=SING_HARD
-
-[Name]
-Texts=2
-
-[NameBackground]
-Tex=MainBG
-
-[NameStatic1]
-X =0
-Y =549
-W =252
-H =28
-Tex=Leiste1
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[NameStatic2]
-X =254
-Y =549
-W =548
-H =28
-Tex=Leiste2
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[NameStatic3]
-X =40
-Y =22
-W =27
-H =27
-Color =White
-Tex =MainIcon
-Type=Colorized
-
-[NameText1]
-X =70
-Y =6
-ColR = 0.7
-ColG = 0.7
-ColB = 0.7
-Font = 0
-Size = 20
-Color =White
-Text=SING_MODE
-
-[NameText2]
-X =70
-Y =53
-Color=White
-Font =0
-Size =10
-Align =0
-Text=SING_PLAYER_DESC
-
-[NameText3]
-X =238
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=2
-Text=SING_PLAYER_WHEREAMI
-
-[NameStatic4]
-X =260
-Y =552
-W =24
-H =23
-Tex=ButtonNavi
-Color =White
-Type=Transparent
-Style=5
-
-[NameText4]
-X =294
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SING_LEGEND_NAVIGATE
-
-[NameStatic5]
-X =388
-Y =552
-W =32
-H =23
-Tex=ButtonAZ
-Color =White
-Type=Transparent
-Style=5
-
-[NameText5]
-X =418
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SING_PLAYER_ENTER_NAME
-
-[NameStatic6]
-X =556
-Y =552
-W =24
-H =23
-Tex=ButtonEnter
-Color =White
-Type=Transparent
-Style=5
-
-[NameText6]
-X =586
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SING_LEGEND_CONTINUE
-
-[NameButtonPlayer1]
-X =180
-Y =270
-W =150
-H =50
-Tex =Button
-Color =P1Dark
-DColor = P1Light
-Type=Colorized
-Texts=1
-Reflection=1
-ReflectionSpacing=2
-
-[NameButtonPlayer1Text1]
-X =75
-Y =10
-Font=0
-Size=10
-Align=1
-Color=White
-Text=
-
-[NameButtonPlayer2]
-X =335
-Y =270
-W =150
-H =50
-Tex =Button
-Color =P2Dark
-DColor = P2Light
-Type=Colorized
-Texts=1
-Reflection=1
-ReflectionSpacing=2
-
-[NameButtonPlayer2Text1]
-X =75
-Y =10
-Font=0
-Size=10
-Align=1
-Color=White
-Text=
-
-[NameButtonPlayer3]
-X =490
-Y =270
-W =150
-H =50
-Tex =Button
-Color =P3Dark
-DColor = P3Light
-Type=Colorized
-Texts=1
-Reflection=1
-ReflectionSpacing=2
-
-[NameButtonPlayer3Text1]
-X =75
-Y =10
-Font=0
-Size=10
-Align=1
-Color=White
-Text=
-
-[NameButtonPlayer4]
-X =180
-Y =400
-W =150
-H =50
-Tex =Button
-Color =P4Dark
-DColor = P4Light
-Type=Colorized
-Texts=1
-Reflection=1
-ReflectionSpacing=2
-
-[NameButtonPlayer4Text1]
-X =75
-Y =10
-Font=0
-Size=10
-Align=1
-Color=White
-Text=
-
-[NameButtonPlayer5]
-X =335
-Y =400
-W =150
-H =50
-Tex =Button
-Color =P5Dark
-DColor = P5Light
-Type=Colorized
-Texts=1
-Reflection=1
-ReflectionSpacing=2
-
-[NameButtonPlayer5Text1]
-X =75
-Y =10
-Font=0
-Size=10
-Align=1
-Color=White
-Text=
-
-[NameButtonPlayer6]
-X =490
-Y =400
-W =150
-H =50
-Tex =Button
-Color =P6Dark
-DColor = P6Light
-Type=Colorized
-Texts=1
-Reflection=1
-ReflectionSpacing=2
-
-[NameButtonPlayer6Text1]
-X =75
-Y =10
-Font=0
-Size=10
-Align=1
-Color=White
-Text=
-
-[PartyNewRound]
-Texts =7
-
-[PartyNewRoundBackground]
-Tex=MainBG
-
-[PartyNewRoundStatic1]
-X =0
-Y =549
-W =252
-H =28
-Tex=Leiste1
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[PartyNewRoundStatic2]
-X =254
-Y =549
-W =548
-H =28
-Tex=Leiste2
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[PartyNewRoundStatic3]
-X =40
-Y =22
-W =27
-H =27
-Color =White
-Tex =PartyIcon
-Type=Colorized
-
-[PartyNewRoundText1]
-X =70
-Y =6
-ColR = 0.7
-ColG = 0.7
-ColB = 0.7
-Font = 0
-Size = 20
-Color =White
-Text=PARTY_MODE
-
-[PartyNewRoundText2]
-X =70
-Y =53
-Color=White
-Font =0
-Size =10
-Align =0
-Text=PARTY_ROUND_DESC
-
-[PartyNewRoundText3]
-X =238
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=2
-Text=PARTY_ROUND_WHEREAMI
-
-[PartyNewRoundText4]
-X =290
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=PARTY_ROUND_LEGEND_CONTINUE
-
-[PartyNewRoundText5]
-X =460
-Y =100
-Color =White
-Font =0
-Size =10
-Text =PARTY_ROUND
-Align=0
-
-[PartyNewRoundText6]
-X =600
-Y =100
-Color =White
-Font =0
-Size =10
-Text =PARTY_ROUND_WINNER
-Align=0
-
-[PartyNewRoundText7]
-X =448
-Y =350
-Color =White
-Font =0
-Size =18
-Text =PARTY_ROUND
-Align=2
-
-[PartyNewRoundTextTeam1Players]
-X =30
-Y =137
-Color=White
-Font =0
-Size =7
-Align=0
-Text=Dummytext, Player2, Player3, Player4
-
-[PartyNewRoundTextTeam2Players]
-X =30
-Y =218
-Color=White
-Font =0
-Size =7
-Align=0
-Text=Dummytext, Player2, Player3, Player4
-
-[PartyNewRoundTextTeam3Players]
-X =30
-Y =299
-Color=White
-Font =0
-Size =7
-Align=0
-Text=Dummytext, Player2, Player3, Player4
-
-[PartyNewRoundStatic4]
-Tex =PartyRoundBG1
-X =450
-Y =103
-W = 330
-H = 24
-Int=1
-Color =DarkBlue
-Type=Colorized
-
-[PartyNewRoundStatic5]
-X =260
-Y =552
-W =24
-H =23
-Tex=ButtonEnter
-Color =White
-Type=Transparent
-
-[PartyNewRoundStatic6]
-Tex =PartyRoundBG3
-X =250
-Y =350
-W = 300
-H = 50
-Int=1
-Color =DarkBlue
-Type=Colorized
-
-[PartyNewRoundStatic7]
-Tex =PartyRoundBG4
-X =50
-Y =495
-W = 700
-H = 30
-Int=1
-Color =LightBlue
-Type=Colorized
-
-[PartyNewRoundStaticTeam1]
-Tex =PartyTeamButton1
-X =20
-Y =110
-W =400
-H =50
-Int=1
-Color =P1Dark
-Type=Colorized
-Reflection=0
-
-[PartyNewRoundStaticTeam2]
-Tex =PartyTeamButton1
-X =20
-Y =191
-W =400
-H =50
-Int=1
-Color =P2Dark
-Type=Colorized
-Reflection=0
-
-[PartyNewRoundStaticTeam3]
-Tex =PartyTeamButton1
-X =20
-Y =272
-W =400
-H =50
-Int=1
-Color =P3Dark
-Type=Colorized
-Reflection=0
-
-[PartyNewRoundStaticNextPlayer1]
-Tex=PartyPlayerButton
-X=155
-Y=415
-W=150
-H=50
-Type=Colorized
-Texts=1
-Color =P1Light
-Reflection=1
-ReflectionSpacing=2
-
-[PartyNewRoundStaticNextPlayer2]
-Tex=PartyPlayerButton
-X=325
-Y=415
-W=150
-H=50
-Type=Colorized
-Texts=1
-Color =P2Light
-Reflection=1
-ReflectionSpacing=2
-
-[PartyNewRoundStaticNextPlayer3]
-Tex=PartyPlayerButton
-X=495
-Y=415
-W=150
-H=50
-Type=Colorized
-Texts=1
-Color =P3Light
-Reflection=1
-ReflectionSpacing=2
-
-
-[PartyNewRoundTextRound1]
-X =460
-Y =133
-Color =White
-Font =0
-Size =8
-Text =Round 1
-Align=0
-
-[PartyNewRoundTextRound2]
-X =460
-Y =162
-Color =White
-Font =0
-Size =8
-Text =Round 2
-Align=0
-
-[PartyNewRoundTextRound3]
-X =460
-Y =191
-Color =White
-Font =0
-Size =8
-Text =Round 3
-Align=0
-
-[PartyNewRoundTextRound4]
-X =460
-Y =220
-Color =White
-Font =0
-Size =8
-Text =Round 4
-Align=0
-
-[PartyNewRoundTextRound5]
-X =460
-Y =249
-Color =White
-Font =0
-Size =8
-Text =Round 5
-Align=0
-
-[PartyNewRoundTextRound6]
-X =460
-Y =278
-Color =White
-Font =0
-Size =8
-Text =Round 6
-Align=0
-
-[PartyNewRoundTextRound7]
-X =460
-Y =307
-Color =White
-Font =0
-Size =8
-Text =Round 7
-Align=0
-
-[PartyNewRoundTextWinner1]
-X =600
-Y =133
-Color =White
-Font =0
-Size =8
-Text =Winner 1
-Align=0
-
-[PartyNewRoundTextWinner2]
-X =600
-Y =162
-Color =White
-Font =0
-Size =8
-Text =Winner 2
-Align=0
-
-[PartyNewRoundTextWinner3]
-X =600
-Y =191
-Color =White
-Font =0
-Size =8
-Text =Winner 3
-Align=0
-
-[PartyNewRoundTextWinner4]
-X =600
-Y =220
-Color =White
-Font =0
-Size =8
-Text =Winner 4
-Align=0
-
-[PartyNewRoundTextWinner5]
-X =600
-Y =249
-Color =White
-Font =0
-Size =8
-Text =Winner 5
-Align=0
-
-[PartyNewRoundTextWinner6]
-X =600
-Y =278
-Color =White
-Font =0
-Size =8
-Text =Winner 6
-Align=0
-
-[PartyNewRoundTextWinner7]
-X =600
-Y =307
-Color =White
-Font =0
-Size =8
-Text =Winner 7
-Align=0
-
-[PartyNewRoundStaticRound1]
-Tex =PartyRoundBG2
-X =450
-Y =135
-W = 330
-H = 20
-Color =LightBlue
-Type =Colorized
-
-[PartyNewRoundStaticRound2]
-Tex =PartyRoundBG2
-X =450
-Y =164
-W = 330
-H = 20
-Color =LightBlue
-Type =Colorized
-
-[PartyNewRoundStaticRound3]
-Tex =PartyRoundBG2
-X =450
-Y =193
-W = 330
-H = 20
-Color =LightBlue
-Type =Colorized
-
-[PartyNewRoundStaticRound4]
-Tex =PartyRoundBG2
-X =450
-Y =222
-W = 330
-H = 20
-Color =LightBlue
-Type =Colorized
-
-[PartyNewRoundStaticRound5]
-Tex =PartyRoundBG2
-X =450
-Y =251
-W = 330
-H = 20
-Color =LightBlue
-Type =Colorized
-
-[PartyNewRoundStaticRound6]
-Tex =PartyRoundBG2
-X =450
-Y =280
-W = 330
-H = 20
-Color =LightBlue
-Type =Colorized
-
-[PartyNewRoundStaticRound7]
-Tex =PartyRoundBG2
-X =450
-Y =309
-W = 330
-H = 20
-Color =LightBlue
-Type =Colorized
-
-[PartyNewRoundTextNextRound]
-X =400
-Y =495
-Color =White
-Font =0
-Size =10
-Text =Next Round
-Align=1
-
-[PartyNewRoundTextNextRoundNo]
-X =457
-Y =350
-Color =White
-Font =0
-Size =18
-Text =99
-Align=0
-
-[PartyNewRoundTextScoreTeam1]
-X =390
-Y =110
-Color =White
-Font =0
-Size =17
-Text =3000
-Align=1
-
-[PartyNewRoundTextScoreTeam2]
-X =390
-Y =191
-Color =White
-Font =0
-Size =17
-Text =2000
-Align=1
-
-[PartyNewRoundTextScoreTeam3]
-X =390
-Y =272
-Color =White
-Font =0
-Size =17
-Text =1000
-Align=1
-
-[PartyNewRoundTextNameTeam1]
-X =30
-Y =108
-Color =White
-Font =0
-Size =12
-Text =Team 1
-Align=0
-
-[PartyNewRoundTextNameTeam2]
-X =30
-Y =189
-Color =White
-Font =0
-Size =12
-Text =Team 2
-Align=0
-
-[PartyNewRoundTextNameTeam3]
-X =30
-Y =270
-Color =White
-Font =0
-Size =12
-Text =Team 3
-Align=0
-
-[PartyNewRoundTextNextPlayer1]
-X =230
-Y =425
-Color =White
-Font =0
-Size =10
-Text =Player 1
-Align=1
-
-[PartyNewRoundTextNextPlayer2]
-X =400
-Y =425
-Color =White
-Font =0
-Size =10
-Text =Player 2
-Align=1
-
-[PartyNewRoundTextNextPlayer3]
-X =570
-Y =425
-Color =White
-Font =0
-Size =10
-Text =Player 3
-Align=1
-
-
-[PartyScore]
-Texts=5
-
-[PartyScoreBackground]
-Tex=PartyBG
-
-[PartyScoreDecoTextures]
-ChangeTextures =1
-
-FirstTexture =PartyScoreDeco
-FirstTyp =Colorized
-FirstColor =Gold
-
-SecondTexture =PartyScoreDeco
-SecondTyp =Colorized
-SecondColor =Silver
-
-ThirdTexture =PartyScoreDeco
-ThirdTyp =Colorized
-ThirdColor =Bronze
-
-[PartyScoreStatic1]
-X =0
-Y =549
-W =252
-H =28
-Tex=Leiste1
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[PartyScoreStatic2]
-X =254
-Y =549
-W =548
-H =28
-Tex=Leiste2
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[PartyScoreStatic3]
-X =40
-Y =22
-W =27
-H =27
-Color =White
-Tex =PartyIcon
-Type=Colorized
-
-[PartyScoreStatic4]
-X =260
-Y =552
-W =24
-H =23
-Tex=ButtonEnter
-Color =White
-Type=Transparent
-
-[PartyScoreText1]
-X =70
-Y =6
-ColR = 0.7
-ColG = 0.7
-ColB = 0.7
-Font = 0
-Size = 20
-Color =White
-Text=PARTY_MODE
-
-[PartyScoreText2]
-X =70
-Y =53
-Color=White
-Font =0
-Size =10
-Align =0
-Text=PARTY_SCORE_DESC
-
-[PartyScoreText3]
-X =238
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=2
-Text=PARTY_SCORE_WHEREAMI
-
-[PartyScoreText4]
-X =290
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=PARTY_LEGEND_CONTINUE
-
-[PartyScoreStatic5]
-Tex =PartyScoreBG1
-X =50
-Y =100
-W = 700
-H = 80
-Int=1
-Color =DarkBlue
-Type=Colorized
-
-[PartyScoreStatic6]
-Tex =PartyScoreBG2
-X =50
-Y =495
-W = 700
-H = 20
-Int=1
-Color =LightBlue
-Type=Colorized
-
-[PartyScoreText5]
-X =400
-Y =136
-Color =White
-Font =0
-Size =15
-Text =PARTY_SCORE_WINS2
-Align=1
-
-[PartyScoreTextWinner]
-X =400
-Y =98
-Color =White
-Font =0
-Size =18
-Text =The Winner is...
-Align=1
-
-[PartyScoreTextScoreTeam1]
-X =568
-Y =198
-Color =White
-Font =0
-Size =12
-Text =3000
-Align=2
-
-[PartyScoreTextScoreTeam2]
-X =568
-Y =298
-Color =White
-Font =0
-Size =12
-Text =2000
-Align=2
-
-[PartyScoreTextScoreTeam3]
-X =568
-Y =398
-Color =White
-Font =0
-Size =12
-Text =1000
-Align=2
-
-[PartyScoreTextNameTeam1]
-X =188
-Y =198
-Font=0
-Size=12
-Align=0
-Text=Team 1
-Color=White
-
-[PartyScoreTextNameTeam2]
-X =188
-Y =298
-Color =White
-Font =0
-Size =12
-Text =Team 2
-Align=0
-
-[PartyScoreTextNameTeam3]
-X =188
-Y =398
-Color =White
-Font =0
-Size =12
-Text =Team 3
-Align=0
-
-[PartyScoreStaticTeam1]
-X =188
-Y =230
-W =380
-H =16
-Z =1
-Tex=PartyTeamPoints
-Color =P1Dark
-Int = 1
-Type=Colorized
-Reflection=1
-ReflectionSpacing=12
-
-[PartyScoreStaticTeam1BG]
-Tex=PartyTeamButton2
-X=178
-Y=200
-W=400
-H=50
-Type=Colorized
-Color =P1Dark
-Reflection=1
-ReflectionSpacing=2
-
-[PartyScoreStaticTeam1Deco]
-Tex =PartyScoreDeco
-X = 563
-Y = 191
-W = 64
-H = 64
-Type =Colorized
-Color =Gold
-Reflection=1
-ReflectionSpacing=-5
-
-[PartyScoreStaticTeam2]
-X =188
-Y =330
-W =380
-H =15
-Z =1
-Tex=PartyTeamPoints
-Color =P2Dark
-Int = 1
-Type=Colorized
-Reflection=1
-ReflectionSpacing=12
-
-[PartyScoreStaticTeam2BG]
-Tex=PartyTeamButton2
-X=178
-Y=300
-W=400
-H=50
-Type=Colorized
-Color =P2Dark
-Reflection=1
-ReflectionSpacing=2
-
-[PartyScoreStaticTeam2Deco]
-Tex =PartyScoreDeco
-X = 563
-Y = 291
-W = 64
-H = 64
-Type =Colorized
-Color =Gold
-Reflection=1
-ReflectionSpacing=-5
-
-[PartyScoreStaticTeam3]
-X =188
-Y =430
-W =380
-H =15
-Z =1
-Tex=PartyTeamPoints
-Color =P3Dark
-Int = 1
-Type=Colorized
-Reflection=1
-ReflectionSpacing=12
-
-[PartyScoreStaticTeam3BG]
-Tex=PartyTeamButton2
-X=178
-Y=400
-W=400
-H=50
-Type=Colorized
-Color =P3Dark
-Reflection=1
-ReflectionSpacing=2
-
-[PartyScoreStaticTeam3Deco]
-Tex =PartyScoreDeco
-X = 563
-Y = 391
-W = 64
-H = 64
-Type =Colorized
-Color =Gold
-Reflection=1
-ReflectionSpacing=-5
-
-[PartyWin]
-Texts=4
-
-[PartyWinBackground]
-Tex=PartyBG
-
-[PartyWinStatic1]
-X =0
-Y =549
-W =252
-H =28
-Tex=Leiste1
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[PartyWinStatic2]
-X =254
-Y =549
-W =548
-H =28
-Tex=Leiste2
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[PartyWinStatic3]
-X =40
-Y =22
-W =27
-H =27
-Color =White
-Tex =PartyIcon
-Type=Colorized
-
-[PartyWinStatic4]
-X =260
-Y =552
-W =24
-H =23
-Tex=ButtonEnter
-Color =White
-Type=Transparent
-
-[PartyWinText1]
-X =70
-Y =6
-ColR = 0.7
-ColG = 0.7
-ColB = 0.7
-Font = 0
-Size = 20
-Color =White
-Text=PARTY_MODE
-
-[PartyWinText2]
-X =70
-Y =53
-Color=White
-Font =0
-Size =10
-Align =0
-Text=PARTY_WIN_DESC
-
-[PartyWinText3]
-X =238
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=2
-Text=PARTY_WIN_WHEREAMI
-
-[PartyWinText4]
-X =290
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=PARTY_WIN_LEGEND_CONTINUE
-
-#[PartyWinTextWinner]
-#X =150
-#Y =120
-#Color =White
-#Font =1
-#Size =14
-#Text =The Winner is...
-#Align=0
-
-[PartyWinTextScoreTeam1]
-X =699
-Y =183
-Color =White
-Font =0
-Size =19
-Text =3000
-Align=2
-
-[PartyWinTextScoreTeam2]
-X =669
-Y =298
-Color =White
-Font =0
-Size =12
-Text =2000
-Align=2
-
-[PartyWinTextScoreTeam3]
-X =649
-Y =398
-Color =White
-Font =0
-Size =9
-Text =1000
-Align=2
-
-[PartyWinTextNameTeam1]
-X =169
-Y =183
-Font=0
-Size=19
-Align=0
-Text=Team 1
-Color=White
-
-[PartyWinTextNameTeam2]
-X =289
-Y =298
-Color =White
-Font =0
-Size =12
-Text =Team 2
-Align=0
-
-[PartyWinTextNameTeam3]
-X =369
-Y =398
-Color =White
-Font =0
-Size =9
-Text =Team 3
-Align=0
-
-[PartyWinStaticTeam1]
-X =169
-Y =230
-W =530
-H =16
-Z =1
-Tex=PartyTeamPoints
-Color =TeamColor
-Int = 1
-Type=Colorized
-Reflection=1
-ReflectionSpacing=12
-
-[PartyWinStaticTeam1BG]
-Tex=PartyTeamButton3
-X=159
-Y=185
-W=550
-H=65
-Type=Colorized
-Color =TeamColor
-Reflection=1
-ReflectionSpacing=2
-
-[PartyWinStaticTeam1Rank1]
-X =169
-Y =230
-W =530
-H =16
-Z =1
-Tex=PartyTeamPoints
-Color =P1Dark
-Int = 1
-Type=Colorized
-Reflection=1
-ReflectionSpacing=12
-
-[PartyWinStaticTeam1BGRank1]
-Tex=PartyTeamButton3
-X=159
-Y=185
-W=550
-H=65
-Type=Colorized
-Color =P1Dark
-Reflection=1
-ReflectionSpacing=2
-
-[PartyWinStaticTeam1Rank2]
-X =289
-Y =330
-W =380
-H =15
-Z =1
-Tex=PartyTeamPoints
-Color =P1Dark
-Int = 1
-Type=Colorized
-Reflection=1
-ReflectionSpacing=12
-
-[PartyWinStaticTeam1BGRank2]
-Tex=PartyTeamButton3
-X=279
-Y=300
-W=400
-H=50
-Type=Colorized
-Color =P1Dark
-Reflection=1
-ReflectionSpacing=2
-
-[PartyWinStaticTeam1Rank3]
-X =369
-Y =420
-W =280
-H =15
-Z =1
-Tex=PartyTeamPoints
-Color =P1Dark
-Int = 1
-Type=Colorized
-Reflection=1
-ReflectionSpacing=12
-
-[PartyWinStaticTeam1BGRank3]
-Tex=PartyTeamButton3
-X=359
-Y=400
-W=300
-H=40
-Type=Colorized
-Color =P1Dark
-Reflection=1
-ReflectionSpacing=2
-
-
-[PartyWinStaticTeam1Deco]
-Tex =PartyWinDeco1
-X = 91
-Y = 176
-W = 79
-H = 79
-Type =Colorized
-Color =Gold
-Reflection=1
-ReflectionSpacing=3
-
-[PartyWinStaticTeam2]
-X =289
-Y =330
-W =380
-H =15
-Z =1
-Tex=PartyTeamPoints
-Color =TeamColor
-Int = 1
-Type=Colorized
-Reflection=1
-ReflectionSpacing=12
-
-[PartyWinStaticTeam2BG]
-Tex=PartyTeamButton4
-X=279
-Y=300
-W=400
-H=50
-Type=Colorized
-Color =TeamColor
-Reflection=1
-ReflectionSpacing=2
-
-[PartyWinStaticTeam2Rank1]
-X =169
-Y =230
-W =530
-H =16
-Z =1
-Tex=PartyTeamButton3
-Color =P2Dark
-Int = 1
-Type=Colorized
-Reflection=1
-ReflectionSpacing=12
-
-[PartyWinStaticTeam2BGRank1]
-Tex=PartyTeamButton4
-X=159
-Y=185
-W=550
-H=65
-Type=Colorized
-Color =P2Dark
-Reflection=1
-ReflectionSpacing=2
-
-[PartyWinStaticTeam2Rank2]
-X =289
-Y =330
-W =380
-H =15
-Z =1
-Tex=PartyTeamPoints
-Color =P2Dark
-Int = 1
-Type=Colorized
-Reflection=1
-ReflectionSpacing=12
-
-[PartyWinStaticTeam2BGRank2]
-Tex=PartyTeamButton4
-X=279
-Y=300
-W=400
-H=50
-Type=Colorized
-Color =P2Dark
-Reflection=1
-ReflectionSpacing=2
-
-[PartyWinStaticTeam2Rank3]
-X =369
-Y =420
-W =280
-H =15
-Z =1
-Tex=PartyTeamPoints
-Color =TeamColor
-Int = 1
-Type=Colorized
-Reflection=1
-ReflectionSpacing=12
-
-[PartyWinStaticTeam2BGRank3]
-Tex=PartyTeamButton4
-X=359
-Y=400
-W=300
-H=40
-Type=Colorized
-Color =TeamColor
-Reflection=1
-ReflectionSpacing=2
-
-[PartyWinStaticTeam2Deco]
-Tex =PartyWinDeco2
-X = 226
-Y = 291
-W = 64
-H = 64
-Type =Colorized
-Color =Silver
-Reflection=1
-ReflectionSpacing=3
-
-[PartyWinStaticTeam3]
-X =369
-Y =420
-W =280
-H =15
-Z =1
-Tex=PartyTeamPoints
-Color =TeamColor
-Int = 1
-Type=Colorized
-Reflection=1
-ReflectionSpacing=12
-
-[PartyWinStaticTeam3BG]
-Tex=PartyTeamButton5
-X=359
-Y=400
-W=300
-H=40
-Type=Colorized
-Color =TeamColor
-Reflection=1
-ReflectionSpacing=2
-
-[PartyWinStaticTeam3Rank1]
-X =169
-Y =230
-W =530
-H =16
-Z =1
-Tex=PartyTeamPoints
-Color =P3Dark
-Int = 1
-Type=Colorized
-Reflection=1
-ReflectionSpacing=12
-
-[PartyWinStaticTeam3BGRank1]
-Tex=PartyTeamButton3
-X=159
-Y=185
-W=550
-H=65
-Type=Colorized
-Color =P3Dark
-Reflection=1
-ReflectionSpacing=2
-
-[PartyWinStaticTeam3Rank2]
-X =289
-Y =330
-W =380
-H =15
-Z =1
-Tex=PartyTeamPoints
-Color =P3Dark
-Int = 1
-Type=Colorized
-Reflection=1
-ReflectionSpacing=12
-
-[PartyWinStaticTeam3BGRank2]
-Tex=PartyTeamButton5
-X=279
-Y=300
-W=400
-H=50
-Type=Colorized
-Color =P3Dark
-Reflection=1
-ReflectionSpacing=2
-
-[PartyWinStaticTeam3Rank3]
-X =369
-Y =420
-W =280
-H =15
-Z =1
-Tex=PartyTeamPoints
-Color =P3Dark
-Int = 1
-Type=Colorized
-Reflection=1
-ReflectionSpacing=12
-
-[PartyWinStaticTeam3BGRank3]
-Tex=PartyTeamButton5
-X=359
-Y=400
-W=300
-H=40
-Type=Colorized
-Color =P3Dark
-Reflection=1
-ReflectionSpacing=2
-
-[PartyWinStaticTeam3Deco]
-Tex =PartyWinDeco3
-X = 316
-Y = 391
-W = 54
-H = 54
-Type =Colorized
-Color =Bronze
-Reflection=1
-ReflectionSpacing=3
-
-[PartyOptions]
-Texts = 5
-
-[PartyOptionsBackground]
-Tex=PartyBG
-
-[PartyOptionsStatic1]
-X =0
-Y =549
-W =252
-H =28
-Tex=Leiste1
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[PartyOptionsStatic2]
-X =254
-Y =549
-W =548
-H =28
-Tex=Leiste2
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[PartyOptionsStatic3]
-X =40
-Y =22
-W =27
-H =27
-Color =White
-Tex =PartyIcon
-Type=Colorized
-
-[PartyOptionsStatic4]
-X =260
-Y =552
-W =24
-H =23
-Tex=ButtonNavi
-Color =White
-Type=Transparent
-Style=5
-
-[PartyOptionsStatic5]
-X =388
-Y =552
-W =24
-H =23
-Tex=ButtonEnter
-Color =White
-Type=Transparent
-Style=5
-
-[PartyOptionsText1]
-X =70
-Y =6
-ColR = 0.7
-ColG = 0.7
-ColB = 0.7
-Font = 0
-Size = 20
-Color =White
-Text=PARTY_MODE
-
-[PartyOptionsText2]
-X =70
-Y =53
-Color=White
-Font =0
-Size =10
-Align =0
-Text=PARTY_OPTIONS_DESC
-
-[PartyOptionsText3]
-X =238
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=2
-Text=PARTY_OPTIONS_WHEREAMI
-
-[PartyOptionsText4]
-X =294
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SING_LEGEND_NAVIGATE
-
-[PartyOptionsText5]
-X =418
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SING_LEGEND_CONTINUE
-
-[PartyOptionsSelectLevel]
-Tex = MainBar
-TexSBG =SelectBG
-Text =PARTY_DIFFICULTY
-X = 40
-Y = 85
-W = 230
-H = 70
-SkipX = 50
-Fields=1
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex = MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[PartyOptionsSelectPlayList]
-Tex = MainBar
-TexSBG =SelectBG
-Text =PARTY_PLAYLIST
-X = 40
-Y = 140
-W = 230
-H = 70
-SkipX = 50
-Fields=1
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex = MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[PartyOptionsSelectPlayList2]
-Tex = MainBar
-TexSBG =SelectBG
-Text =PARTY_PLAYLIST
-X = 40
-Y = 195
-W = 230
-H = 70
-SkipX = 50
-Fields=1
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex = MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[PartyOptionsSelectRounds]
-Tex = MainBar
-TexSBG =SelectBG
-Text =PARTY_ROUNDS
-X = 40
-Y = 250
-W = 230
-H = 70
-SkipX = 50
-Fields=7
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex = MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[PartyOptionsSelectTeams]
-Tex = MainBar
-TexSBG =SelectBG
-Text =PARTY_TEAMS
-X = 40
-Y = 305
-W = 230
-H = 70
-SkipX = 50
-Fields=7
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex = MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[PartyOptionsSelectPlayers1]
-Tex = MainBar
-TexSBG =SelectBG
-Text =PARTY_TEAMS_PLAYER1
-X = 40
-Y = 360
-W = 230
-H = 70
-SkipX = 50
-Fields=7
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex = MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[PartyOptionsSelectPlayers2]
-Tex = MainBar
-TexSBG =SelectBG
-Text =PARTY_TEAMS_PLAYER2
-X = 40
-Y = 415
-W = 230
-H = 70
-SkipX = 50
-Fields=7
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex = MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-[PartyOptionsSelectPlayers3]
-Tex = MainBar
-TexSBG =SelectBG
-Text =PARTY_TEAMS_PLAYER3
-X = 40
-Y = 470
-W = 230
-H = 70
-SkipX = 50
-Fields=7
-
-Color = ColorDark
-DColor = Gray
-TColor = White
-TDColor = White
-SBGTex = MainBar
-SBGColor = ColorDark
-SBGDColor = Gray
-STColor = White
-STDColor = GrayDark
-
-
-
-[PartyPlayer]
-Texts=6
-
-[PartyPlayerBackground]
-Tex=PartyBG
-
-[PartyPlayerStatic1]
-X =0
-Y =549
-W =252
-H =28
-Tex=Leiste1
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[PartyPlayerStatic2]
-X =254
-Y =549
-W =548
-H =28
-Tex=Leiste2
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[PartyPlayerStatic3]
-X =40
-Y =22
-W =27
-H =27
-Color =White
-Tex =PartyIcon
-Type=Colorized
-
-[PartyPlayerStatic4]
-X =260
-Y =552
-W =24
-H =23
-Tex=ButtonNavi
-Color =White
-Type=Transparent
-Style=5
-
-[PartyPlayerStatic5]
-X =388
-Y =552
-W =32
-H =23
-Tex=ButtonAZ
-Color =White
-Type=Transparent
-Style=5
-
-[PartyPlayerStatic6]
-X =556
-Y =552
-W =24
-H =23
-Tex=ButtonEnter
-Color =White
-Type=Transparent
-Style=5
-
-[PartyPlayerText1]
-X =70
-Y =6
-ColR = 0.7
-ColG = 0.7
-ColB = 0.7
-Font = 0
-Size = 20
-Color =White
-Text=PARTY_MODE
-
-[PartyPlayerText2]
-X =70
-Y =53
-Color=White
-Font =0
-Size =10
-Align =0
-Text=PARTY_PLAYER_DESC
-
-[PartyPlayerText3]
-X =238
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=2
-Text=PARTY_PLAYER_WHEREAMI
-
-[PartyPlayerText4]
-X =294
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SING_LEGEND_NAVIGATE
-
-[PartyPlayerText5]
-X =418
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=PARTY_PLAYER_ENTER_NAME
-
-[PartyPlayerText6]
-X =586
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=PARTY_PLAYER_LEGEND_CONTINUE
-
-[PartyPlayerTeam1Name]
-Tex=PartyTeamButton2
-X=85
-Y=100
-W=310
-H=50
-Type=Colorized
-Texts=1
-Color =P1Lightest
-DColor =P1Dark
-
-[PartyPlayerTeam1NameText1]
-X =155
-Y =8
-Font=0
-Size=12
-Align=1
-Text=Team 1
-Color=White
-
-[PartyPlayerPlayer1Name]
-Tex=Button
-X=85
-Y=160
-W =150
-H =50
-Type=Colorized
-Texts=1
-Color =P1Lightest
-DColor =P1Light
-Reflection=1
-ReflectionSpacing=1
-
-[PartyPlayerPlayer1NameText1]
-X =75
-Y =10
-Font=0
-Size=10
-Align=1
-Text=Player 1
-Color=White
-
-[PartyPlayerPlayer2Name]
-Tex=Button
-X=245
-Y=160
-W =150
-H =50
-Type=Colorized
-Texts=1
-Color =P1Lightest
-DColor =P1Light
-Reflection=1
-ReflectionSpacing=1
-
-[PartyPlayerPlayer2NameText1]
-X =75
-Y =10
-Font=0
-Size=10
-Align=1
-Text=Player 2
-Color=White
-
-[PartyPlayerPlayer3Name]
-Tex=Button
-X=405
-Y=160
-W =150
-H =50
-Type=Colorized
-Texts=1
-Color =P1Lightest
-DColor =P1Light
-Reflection=1
-ReflectionSpacing=1
-
-[PartyPlayerPlayer3NameText1]
-X =75
-Y =10
-Font=0
-Size=10
-Align=1
-Text=Player 3
-Color=White
-
-[PartyPlayerPlayer4Name]
-Tex=Button
-X=565
-Y=160
-W =150
-H =50
-Type=Colorized
-Texts=1
-Color =P1Lightest
-DColor =P1Light
-Reflection=1
-ReflectionSpacing=1
-
-[PartyPlayerPlayer4NameText1]
-X =75
-Y =10
-Font=0
-Size=10
-Align=1
-Text=Player 4
-Color=White
-
-[PartyPlayerTeam2Name]
-Tex=PartyTeamButton2
-X=85
-Y=240
-W=310
-H=50
-Type=Colorized
-Texts=1
-Color =P2Lightest
-DColor =P2Dark
-
-[PartyPlayerTeam2NameText1]
-X =155
-Y =8
-Font=0
-Size=12
-Align=1
-Text=Team 2
-Color=White
-
-[PartyPlayerPlayer5Name]
-Tex=Button
-X=85
-Y=300
-W =150
-H =50
-Type=Colorized
-Texts=1
-Color =P2Lightest
-DColor =P2Light
-Reflection=1
-ReflectionSpacing=1
-
-[PartyPlayerPlayer5NameText1]
-X =75
-Y =10
-Font=0
-Size=10
-Align=1
-Text=Player 5
-Color=White
-
-[PartyPlayerPlayer6Name]
-Tex=Button
-X=245
-Y=300
-W =150
-H =50
-Type=Colorized
-Texts=1
-Color =P2Lightest
-DColor =P2Light
-Reflection=1
-ReflectionSpacing=1
-
-[PartyPlayerPlayer6NameText1]
-X =75
-Y =10
-Font=0
-Size=10
-Align=1
-Text=Player 6
-Color=White
-
-[PartyPlayerPlayer7Name]
-Tex=Button
-X=405
-Y=300
-W =150
-H =50
-Type=Colorized
-Texts=1
-Color =P2Lightest
-DColor =P2Light
-Reflection=1
-ReflectionSpacing=1
-
-[PartyPlayerPlayer7NameText1]
-X =75
-Y =10
-Font=0
-Size=10
-Align=1
-Text=Player 7
-Color=White
-
-[PartyPlayerPlayer8Name]
-Tex=Button
-X=565
-Y=300
-W =150
-H =50
-Type=Colorized
-Texts=1
-Color =P2Lightest
-DColor =P2Light
-Reflection=1
-ReflectionSpacing=1
-
-[PartyPlayerPlayer8NameText1]
-X =75
-Y =10
-Font=0
-Size=10
-Align=1
-Text=Player 8
-Color=White
-
-[PartyPlayerTeam3Name]
-Tex=Button
-Tex=PartyTeamButton2
-X=85
-Y=380
-W=310
-H=50
-Type=Colorized
-Texts=1
-Color =P3Lightest
-DColor =P3Dark
-
-[PartyPlayerTeam3NameText1]
-X =155
-Y =8
-Font=0
-Size=12
-Align=1
-Text=Team 3
-Color=White
-
-[PartyPlayerPlayer9Name]
-Tex=Button
-X=85
-Y=440
-W =150
-H =50
-Type=Colorized
-Texts=1
-Color =P3Lightest
-DColor =P3Light
-Reflection=1
-ReflectionSpacing=1
-
-[PartyPlayerPlayer9NameText1]
-X =75
-Y =10
-Font=0
-Size=10
-Align=1
-Text=Player 9
-Color=White
-
-[PartyPlayerPlayer10Name]
-Tex=Button
-X=245
-Y=440
-W =150
-H =50
-Type=Colorized
-Texts=1
-Color =P3Lightest
-DColor =P3Light
-Reflection=1
-ReflectionSpacing=1
-
-[PartyPlayerPlayer10NameText1]
-X =75
-Y =10
-Font=0
-Size=10
-Align=1
-Text=Player 10
-Color=White
-
-[PartyPlayerPlayer11Name]
-Tex=Button
-X=405
-Y=440
-W =150
-H =50
-Type=Colorized
-Texts=1
-Color =P3Lightest
-DColor =P3Light
-Reflection=1
-ReflectionSpacing=1
-
-[PartyPlayerPlayer11NameText1]
-X =75
-Y =10
-Font=0
-Size=10
-Align=1
-Text=Player 11
-Color=White
-
-[PartyPlayerPlayer12Name]
-Tex=Button
-X=565
-Y=440
-W =150
-H =50
-Type=Colorized
-Texts=1
-Color =P3Lightest
-DColor =P3Light
-Reflection=1
-ReflectionSpacing=1
-
-[PartyPlayerPlayer12NameText1]
-X =75
-Y =10
-Font=0
-Size=10
-Align=1
-Text=Player 12
-Color=White
-
-
-[SongMenu]
-Texts=0
-Statics=1
-
-[SongMenuButton1]
-X = 460
-Y = 165
-W = 270
-H = 25
-Tex =Rectangle
-Color =LightBlue
-DColor = DarkBlue
-Type=Colorized
-Texts=1
-Z = 0.98
-Texts=1
-
-[SongMenuButton1Text1]
-X =30
-Y =0
-Color=White
-Font =0
-Size =8
-Text=SONG_MENU_PLAY
-Align=0
-Z=0.99
-
-[SongMenuButton2]
-X = 460
-Y = 195
-W = 270
-H = 25
-Tex =Rectangle
-Color =LightBlue
-DColor = DarkBlue
-Type=Colorized
-Texts=1
-Z = 0.98
-Texts=1
-
-[SongMenuButton2Text1]
-X =30
-Y =0
-Color=White
-Font =0
-Size =8
-Text=SONG_MENU_EDIT
-Align=0
-Z=0.99
-
-[SongMenuButton3]
-X = 460
-Y = 225
-W = 270
-H = 25
-Tex =Rectangle
-Color =LightBlue
-DColor = DarkBlue
-Type=Colorized
-Texts=1
-Z = 0.98
-Texts=1
-
-[SongMenuButton3Text1]
-X =30
-Y =0
-Color=White
-Font =0
-Size =8
-Text=SONG_MENU_MODI
-Align=0
-Z=0.99
-
-[SongMenuButton4]
-X = 460
-Y = 255
-W = 270
-H = 25
-Tex = Rectangle
-Color =LightBlue
-DColor = DarkBlue
-Type=Colorized
-Texts=1
-Z = 0.98
-
-[SongMenuButton4Text1]
-X =30
-Y =0
-Color=White
-Font =0
-Size =8
-Text=SONG_MENU_CANCEL
-Align=0
-Z=0.99
-
-[SongMenuSelectSlide3]
-Tex = Rectangle
-TexSBG = SongMenuSelectBG
-Text =
-X = 460
-Y = 225
-W = 0
-H = 25
-Z = 0.98
-SkipX = 0
-SBGW=270
-
-TextSize=8
-
-Color = LightBlue
-DColor = DarkBlue
-TColor = White
-TDColor = White
-SBGTex = MainBar
-SBGColor = LightBlue
-SBGDColor = DarkBlue
-STColor = White
-STDColor = GrayDark
-
-[SongMenuTextMenu]
-X =489
-Y =125
-Color=White
-Font =0
-Size =14
-Text=MENU
-Align=0
-Z=0.99
-
-[SongMenuStatic2]
-X =463
-Y =135
-W =21
-H =21
-Color =White
-Tex =IconSongMenu
-Type=Colorized
-Z=0.98
-
-[SongMenuStatic1]
-Tex =SongMenuBG
-X =448
-Y =120
-W =300
-H =200
-Z =0.94
-Int=1
-Color =DarkBlue
-Type=Colorized
-
-[SongJumpto]
-Texts=0
-Statics=1
-
-[SongJumptoStatic1]
-Tex =JumpToBG
-X =171
-Y =175
-W =355
-H =175
-Z =0.98
-Int=1
-Color =DarkBlue
-Type=Colorized
-
-[SongJumptoStatic2]
-X =184
-Y =185
-W =21
-H =21
-Color =White
-Tex =MainSearch
-Type=Colorized
-Z=0.99
-
-[SongJumptoText1]
-X =210
-Y =175
-Color=White
-Font =0
-Size =14
-Text=SONG_JUMPTO_TYPE_DESC
-Align=0
-Z=0.99
-
-[SongJumptoSelectSlideType]
-Tex = button
-TexSBG = mainicon
-#Text = SONG_JUMPTO_TYPE_DESC
-Font=1
-X = 192
-Y = 205
-Z = 0.99
-W = 0
-H = 30
-SkipX = 4
-SBGW= 300
-Fields=2
-DColor = LightBlue
-TColor = White
-TDColor = White
-SBGTex = button
-SBGDColor = LightBlue
-STColor = White
-STDColor = LightBlue
-
-[SongJumptoButtonSearchText]
-X = 200
-Y = 215
-Z = 0.99
-W = 160
-H = 50
-Size=14
-Font=1
-Align=0
-
-[SongJumptoTextFound]
-X =184
-Y =295
-Color=White
-Font =0
-Size =8
-Text=SONG_JUMPTO_HELP
-Align=0
-Z=0.99
-
-[StatMain]
-Texts=0
-Statics=0
-
-[StatMainBackground]
-Tex=MainBG
-
-[StatMainButtonScores]
-X =589
-Y =100
-W =190
-H =50
-Tex =Button
-Color =DarkBlue
-DColor = LightBlue
-Type=Colorized
-Texts=1
-Reflection=0
-
-[StatMainButtonScoresText1]
-X =95
-Y =10
-Font=0
-Size=10
-Align=1
-Text=STAT_DESC_SCORES
-Color=White
-
-[StatMainButtonSingers]
-X =589
-Y =160
-W =190
-H =50
-Tex =Button
-Color =DarkBlue
-DColor = LightBlue
-Type=Colorized
-Texts=1
-Reflection=0
-
-[StatMainButtonSingersText1]
-X =95
-Y =10
-Font=0
-Size=10
-Align=1
-Text=STAT_DESC_SINGERS
-Color=White
-
-[StatMainButtonSongs]
-X =589
-Y =220
-W =190
-H =50
-Tex =Button
-Color =DarkBlue
-DColor = LightBlue
-Type=Colorized
-Texts=1
-Reflection=0
-
-[StatMainButtonSongsText1]
-X =95
-Y =13
-Font=0
-Size=8
-Align=1
-Text=STAT_DESC_SONGS
-Color=White
-
-[StatMainButtonBands]
-X =589
-Y =280
-W =190
-H =50
-Tex =Button
-Color =DarkBlue
-DColor = LightBlue
-Type=Colorized
-Texts=1
-Reflection=0
-
-[StatMainButtonBandsText1]
-X =95
-Y =13
-Font=0
-Size=8
-Align=1
-Text=STAT_DESC_BANDS
-Color=White
-
-[StatMainButtonExit]
-X =589
-Y =340
-W =190
-H =50
-Tex =Button
-Color =DarkBlue
-DColor = LightBlue
-Type=Colorized
-Texts=1
-Reflection=0
-
-[StatMainButtonExitText1]
-X =95
-Y =10
-Font=0
-Size=10
-Align=1
-Text=SING_OPTIONS_EXIT
-Color=White
-
-[StatMainTextOverview]
-X =45
-Y =125
-W =510
-Color=White
-Font =0
-Size =9
-Align=0
-Text=
-
-[StatMainStatic1]
-X =40
-Y =22
-W =27
-H =27
-Color =White
-Tex =StatIcon
-Type=Colorized
-
-[StatMainStatic2]
-X =0
-Y =549
-W =252
-H =28
-Tex=Leiste1
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[StatMainStatic3]
-X =254
-Y =549
-W =548
-H =28
-Tex=Leiste2
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[StatMainStatic4]
-X =260
-Y =552
-W =24
-H =23
-Tex=ButtonNavi
-Color =White
-Type=Transparent
-Style=5
-
-[StatMainStatic5]
-X =388
-Y =552
-W =32
-H =23
-Tex=ButtonEsc
-Color =White
-Type=Transparent
-
-[StatMainStatic6]
-X =40
-Y =100
-W =520
-H =20
-Tex=StatMainBG1
-Color =ColorLight
-Type=Colorized
-
-[StatMainStatic7]
-X =40
-Y =120
-W =520
-H =300
-Tex=StatMainBG2
-Color =ColorDark
-Type=Colorized
-
-[StatMainStatic8]
-X =40
-Y =420
-W =520
-H =20
-Tex=StatMainBG3
-Color =ColorLight
-Type=Colorized
-
-[StatMainText1]
-X =70
-Y =6
-Color=White
-Font =0
-Size =20
-Text=STAT_MAIN
-Align=0
-
-[StatMainText2]
-X =238
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=2
-Text=STAT_MAIN_WHEREAMI
-
-[StatMainText3]
-X =70
-Y =53
-Color=White
-Font =0
-Size =10
-Align =0
-Text=STAT_MAIN_DESC
-
-[StatMainText4]
-X =294
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SING_LEGEND_NAVIGATE
-
-[StatMainText5]
-X =418
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SING_LEGEND_ESC
-
-[StatDetail]
-Texts=0
-Statics=0
-
-[StatDetailBackground]
-Tex=MainBG
-
-[StatDetailButtonNext]
-X =589
-Y =100
-W =190
-H =50
-Tex =Button
-Color =DarkBlue
-DColor = LightBlue
-Type=Colorized
-Texts=1
-Reflection=0
-
-[StatDetailButtonNextText1]
-X =95
-Y =10
-Font=0
-Size=10
-Align=1
-Text=STAT_NEXT
-Color=White
-
-[StatDetailButtonPrev]
-X =589
-Y =160
-W =190
-H =50
-Tex =Button
-Color =DarkBlue
-DColor = LightBlue
-Type=Colorized
-Texts=1
-Reflection=0
-
-[StatDetailButtonPrevText1]
-X =95
-Y =10
-Font=0
-Size=10
-Align=1
-Text=STAT_PREV
-Color=White
-
-[StatDetailButtonReverse]
-X =589
-Y =220
-W =190
-H =50
-Tex =Button
-Color =DarkBlue
-DColor = LightBlue
-Type=Colorized
-Texts=1
-Reflection=0
-
-[StatDetailButtonReverseText1]
-X =95
-Y =10
-Font=0
-Size=10
-Align=1
-Text=STAT_REVERSE
-Color=White
-
-[StatDetailButtonExit]
-X =589
-Y =280
-W =190
-H =50
-Tex =Button
-Color =DarkBlue
-DColor = LightBlue
-Type=Colorized
-Texts=1
-Reflection=0
-
-[StatDetailButtonExitText1]
-X =95
-Y =10
-Font=0
-Size=10
-Align=1
-Text=SING_OPTIONS_EXIT
-Color=White
-
-[StatDetailTextDescription]
-X =70
-Y =53
-Color=White
-Font =0
-Size =10
-Align =0
-Text=
-
-[StatDetailTextPage]
-X = 546
-Y = 98
-Color= Black
-Font = 0
-Size = 5
-Align=2
-Text=
-
-[StatDetailTextList1]
-X = 45
-Y = 122
-Color=White
-Font = 0
-Size = 7
-Text=Stat1
-
-[StatDetailTextList2]
-X = 45
-Y = 160
-Color=White
-Font = 0
-Size = 7
-Text=Stat2
-
-[StatDetailTextList3]
-X = 45
-Y = 198
-Color=White
-Font = 0
-Size = 7
-Text=
-
-[StatDetailTextList4]
-X = 45
-Y = 236
-Color=White
-Font = 0
-Size = 7
-Text=
-
-[StatDetailTextList5]
-X = 45
-Y = 274
-Color=White
-Font = 0
-Size = 7
-Text=
-
-[StatDetailTextList6]
-X = 45
-Y = 312
-Color=White
-Font = 0
-Size = 7
-Text=
-
-[StatDetailTextList7]
-X = 45
-Y = 350
-Color=White
-Font = 0
-Size = 7
-Text=
-
-[StatDetailTextList8]
-X = 45
-Y = 388
-Color=White
-Font = 0
-Size = 7
-Text=
-
-[StatDetailTextList9]
-X = 45
-Y = 426
-Color=White
-Font = 0
-Size = 7
-Text=
-
-[StatDetailTextList10]
-X = 45
-Y = 464
-Color=White
-Font = 0
-Size = 7
-Text=
-
-[StatDetailStatic1]
-X =40
-Y =22
-W =27
-H =27
-Color =White
-Tex =StatIcon
-Type=Colorized
-
-[StatDetailStatic2]
-X =0
-Y =549
-W =252
-H =28
-Tex=Leiste1
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[StatDetailStatic3]
-X =254
-Y =549
-W =548
-H =28
-Tex=Leiste2
-Color =White
-Type=Plain
-Reflection=1
-ReflectionSpacing=1
-
-[StatDetailStatic4]
-X =260
-Y =552
-W =24
-H =23
-Tex=ButtonNavi
-Color =White
-Type=Transparent
-Style=5
-
-[StatDetailStatic5]
-X =388
-Y =552
-W =32
-H =23
-Tex=ButtonEsc
-Color =White
-Type=Transparent
-
-[StatDetailStatic6]
-X =40
-Y =100
-W =520
-H =24
-Tex=StatDetailBG1
-Color =ColorLight
-Type=Colorized
-
-[StatDetailStatic7]
-X =40
-Y =124
-W =520
-H =376
-Tex=StatMainBG2
-Color =ColorDark
-Type=Colorized
-
-[StatDetailStatic8]
-X =40
-Y =500
-W =520
-H =20
-Tex=StatMainBG3
-Color =ColorLight
-Type=Colorized
-
-
-[StatDetailText1]
-X =70
-Y =6
-Color=White
-Font =0
-Size =20
-Text=STAT_DETAIL
-Align=0
-
-[StatDetailText2]
-X =238
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=2
-Text=STAT_DETAIL_WHEREAMI
-
-[StatDetailText3]
-X =294
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SING_LEGEND_NAVIGATE
-
-[StatDetailText4]
-X =418
-Y =552
-Color=Black
-Font =0
-Size =7
-Align=0
-Text=SING_LEGEND_ESC
-
-[CheckPopup]
-Texts=1
-Statics=1
-
-[CheckPopupButton1]
-X = 285
-Y = 310
-W = 100
-H = 25
-Tex =Rectangle
-Color = Gray
-DColor = GrayPopup
-Type=Colorized
-Texts=1
-Z = 1
-Texts=1
-
-[CheckPopupButton1Text1]
-X =50
-Y =0
-Color=White
-Font =0
-Size =8
-Text=JA
-Align=1
-Z=1
-
-[CheckPopupButton2]
-X = 415
-Y = 310
-W = 100
-H = 25
-Tex =Rectangle
-Color = Gray
-DColor = GrayPopup
-Type=Colorized
-Texts=1
-Z = 1
-Texts=1
-
-[CheckPopupButton2Text1]
-X =50
-Y =0
-Color=White
-Font =0
-Size =8
-Text=NEIN
-Align=1
-Z=1
-
-[CheckPopupText]
-X =400
-Y =180
-W =280
-Color=White
-Font =0
-Size =12
-Text=error text
-Align=1
-Z=1
-
-[CheckPopupText1]
-X =282
-Y =147
-Color=White
-Font =0
-Size =10
-Text=MSG_QUESTION_TITLE
-Align=0
-Z=1
-
-[CheckPopupStatic1]
-Tex =PopUpBG
-X =250
-Y =150
-W =300
-H =200
-Z =0.98
-Int=1
-Color=White
-Type=Transparent
-
-[CheckPopupStatic3]
-Tex =IconQuestion
-X =255
-Y =151
-W =23
-H =23
-Z =0.99
-Int=1
-Color =White
-Type=Colorized
-
-[ErrorPopup]
-Texts=1
-Statics=1
-
-[ErrorPopupButton1]
-X = 350
-Y = 310
-W = 100
-H = 25
-Tex =Rectangle
-Color = Gray
-DColor = GrayPopup
-Type=Colorized
-Texts=1
-Z = 1
-Texts=1
-
-[ErrorPopupButton1Text1]
-X =50
-Y =0
-Color=White
-Font =0
-Size =8
-Text=OK
-Align=1
-Z=1
-
-[ErrorPopupText]
-X =400
-Y =180
-W =280
-Color=White
-Font =0
-Size =12
-Text=error text
-Align=1
-Z=1
-
-[ErrorPopupText1]
-X =282
-Y =148
-Color=White
-Font =0
-Size =10
-Text=MSG_ERROR_TITLE
-Align=0
-Z=1
-
-[ErrorPopupStatic1]
-Tex =PopUpBG
-X =250
-Y =150
-W =300
-H =200
-Z =0.98
-Int=1
-Color=White
-Type=Transparent
-
-[ErrorPopupStatic2]
-Tex =IconError
-X =255
-Y =151
-W =23
-H =23
-Z =0.99
-Int=1
-Color =White
-Type=Colorized
diff --git a/Tools/USDXResCompiler.lpi b/Tools/USDXResCompiler.lpi deleted file mode 100644 index cf94486e..00000000 --- a/Tools/USDXResCompiler.lpi +++ /dev/null @@ -1,78 +0,0 @@ -<?xml version="1.0"?>
-<CONFIG>
- <ProjectOptions>
- <PathDelim Value="\"/>
- <Version Value="5"/>
- <General>
- <MainUnit Value="0"/>
- <IconPath Value="./"/>
- <TargetFileExt Value=".exe"/>
- <ActiveEditorIndexAtStart Value="0"/>
- </General>
- <VersionInfo>
- <ProjectVersion Value=""/>
- <Language Value=""/>
- <CharSet Value=""/>
- </VersionInfo>
- <PublishOptions>
- <Version Value="2"/>
- <DestinationDirectory Value="$(TestDir)\publishedproject\"/>
- <IgnoreBinaries Value="False"/>
- <IncludeFileFilter Value="*.(pas|pp|inc|lfm|lpr|lrs|lpi|lpk|sh|xml)"/>
- <ExcludeFileFilter Value="*.(bak|ppu|ppw|o|so);*~;backup"/>
- </PublishOptions>
- <RunParams>
- <local>
- <FormatVersion Value="1"/>
- <LaunchingApplication PathPlusParams="\usr\X11R6\bin\xterm -T 'Lazarus Run Output' -e $(LazarusDir)\tools\runwait.sh $(TargetCmdLine)"/>
- </local>
- </RunParams>
- <RequiredPackages Count="1">
- <Item1>
- <PackageName Value="lcl"/>
- </Item1>
- </RequiredPackages>
- <Units Count="2">
- <Unit0>
- <Filename Value="USDXResCompiler.lpr"/>
- <IsPartOfProject Value="True"/>
- <UnitName Value="USDXResCompiler"/>
- <CursorPos X="48" Y="74"/>
- <TopLine Value="42"/>
- <EditorIndex Value="0"/>
- <UsageCount Value="24"/>
- <Loaded Value="True"/>
- </Unit0>
- <Unit1>
- <Filename Value="..\..\..\..\lazarus\lcl\lresources.pp"/>
- <UnitName Value="LResources"/>
- <CursorPos X="31" Y="55"/>
- <TopLine Value="36"/>
- <UsageCount Value="10"/>
- </Unit1>
- </Units>
- <JumpHistory Count="0" HistoryIndex="-1"/>
- </ProjectOptions>
- <CompilerOptions>
- <Version Value="5"/>
- <PathDelim Value="\"/>
- <CodeGeneration>
- <Generate Value="Faster"/>
- </CodeGeneration>
- <Other>
- <CompilerPath Value="$(CompPath)"/>
- </Other>
- </CompilerOptions>
- <Debugging>
- <BreakPoints Count="2">
- <Item1>
- <Source Value="USDXResCompiler.lpr"/>
- <Line Value="14"/>
- </Item1>
- <Item2>
- <Source Value="USDXResCompiler.lpr"/>
- <Line Value="18"/>
- </Item2>
- </BreakPoints>
- </Debugging>
-</CONFIG>
diff --git a/Tools/USDXResCompiler.lpr b/Tools/USDXResCompiler.lpr deleted file mode 100644 index 8e6e7921..00000000 --- a/Tools/USDXResCompiler.lpr +++ /dev/null @@ -1,159 +0,0 @@ -program USDXResCompiler; - -{$mode objfpc}{$H+} - -uses - Classes, - SysUtils, - LResources; - -var - lResourceFile : TMemoryStream; - -procedure AddFile( aResName, aResType, aFile : string ); -var - lTmpStream : TmemoryStream; -begin - if aFile[1] = '"' then - begin - aFile := copy( aFile, 2, length( aFile ) - 2 ); - end; - - if not fileexists( aFile ) then - begin - writeln( 'SKIPED' + ' ( '+aFile+' ) File not found' ); - exit; - end; - - lTmpStream := TmemoryStream.create(); - try - lTmpStream.loadfromfile( aFile ); - lTmpStream.position := 0; - - BinaryToLazarusResourceCode(lTmpStream, lResourceFile, aResName, aResType); - writeln( 'ADDED - ' + aResType + ' : ' + aResName + ' ( '+aFile+' )' ); - finally - freeandnil( lTmpStream ); - end; -end; - -procedure addresourceline( aRCLine : String ); -var - lName : String; - lType : String; - lFile : String; - lTmp , - lTmp2 : Integer; -begin - if trim( aRCLine ) = '' then - exit; - - if aRCLine[1] = '#' then - exit; - - if ( aRCLine[1] = '/' ) AND - ( aRCLine[2] = '/' ) THEN - exit; - - // find 2nd column... and put it in lTmp - lTmp := pos( ' ', aRcLine ); - lTmp2 := pos( #9, aRcLine ); - if lTmp2 < lTmp then - lTmp := lTmp2; - - // Name = Start to lTmp - lName := trim( copy( aRcLine, 1, lTmp ) ); - - // Type = lTmp to first " - lTmp2 := pos( '"', aRcLine ); - lType := trim( copy( aRcLine, lTmp, lTmp2-lTmp ) ); - - // File = " to end of line - lFile := trim( copy( aRcLine, lTmp2, maxint ) ); - - lFile := StringReplace( lFile, '\', PathDelim ,[rfReplaceAll] ); - -(* - writeln( aRcLine ); - writeln( lName ); - writeln( lType ); - writeln( lFile ); - writeln( '' ); -*) - AddFile( lName , lType , lFile ); - -end; - - -var - lRCFile : TStringList; - iCount : Integer; -begin - if not fileexists( paramstr(1) ) then - begin - writeln( 'MUST Specify Delphi format RC File' ); - exit; - end; - - lRCFile := TStringList.create(); - lResourceFile := TMemoryStream.create(); - try - lRCFile.loadfromfile( paramstr(1) ); - - if trim( lRCFile.text ) = '' then - exit; - - for iCount := 0 to lRCFile.count -1 do - begin - addresourceline( lRCFile[ iCount ] ); - end; - -(* - AddFile( 'Font', 'TEX', '..\Fonts\Normal\eurostar_regular.png' ); - AddFile( 'Font', 'FNT', '..\Fonts\Normal\eurostar_regular.dat' ); - - AddFile( 'FontB', 'TEX', '..\Fonts\Bold\eurostar_regular_bold.png' ); - AddFile( 'FontB', 'FNT', '..\Fonts\Bold\eurostar_regular_bold.dat' ); - - AddFile( 'FontO', 'TEX', '..\Fonts\Outline 1\Outline 1.PNG' ); - AddFile( 'FontO', 'FNT', '..\Fonts\Outline 1\Outline 1.dat' ); - - AddFile( 'FontO2', 'TEX', '..\Fonts\Outline 2\Outline 2.PNG' ); - AddFile( 'FontO2', 'FNT', '..\Fonts\Outline 2\Outline 2.dat' ); - - AddFile( 'MAINICON', 'ICON', '..\Graphics\ustar-icon_v01.ico' ); - - - AddFile( 'CRDTS_BG', 'TEX', '..\Graphics\credits_v5_bg.png' ); - AddFile( 'CRDTS_OVL', 'TEX', '..\Graphics\credits_v5_overlay.png' ); - AddFile( 'CRDTS_blindguard', 'TEX', '..\Graphics\names_blindguard.png' ); - AddFile( 'CRDTS_blindy', 'TEX', '..\Graphics\names_blindy.png' ); - AddFile( 'CRDTS_canni', 'TEX', '..\Graphics\names_canni.png' ); - AddFile( 'CRDTS_commandio', 'TEX', '..\Graphics\names_commandio.png' ); - AddFile( 'CRDTS_lazyjoker', 'TEX', '..\Graphics\names_lazyjoker.png' ); - AddFile( 'CRDTS_mog', 'TEX', '..\Graphics\names_mog.png' ); - AddFile( 'CRDTS_mota', 'TEX', '..\Graphics\names_mota.png' ); - AddFile( 'CRDTS_skillmaste', 'TEX', '..\Graphics\names_skillmaster.png' ); - AddFile( 'CRDTS_whiteshark', 'TEX', '..\Graphics\names_whiteshark.png' ); - AddFile( 'INTRO_L01', 'TEX', '..\Graphics\intro-l-01.png' ); - AddFile( 'INTRO_L02', 'TEX', '..\Graphics\intro-l-02.png' ); - AddFile( 'INTRO_L03', 'TEX', '..\Graphics\intro-l-03.png' ); - AddFile( 'INTRO_L04', 'TEX', '..\Graphics\intro-l-04.png' ); - AddFile( 'INTRO_L05', 'TEX', '..\Graphics\intro-l-05.png' ); - AddFile( 'INTRO_L06', 'TEX', '..\Graphics\intro-l-06.png' ); - AddFile( 'INTRO_L07', 'TEX', '..\Graphics\intro-l-07.png' ); - AddFile( 'INTRO_L08', 'TEX', '..\Graphics\intro-l-08.png' ); - AddFile( 'INTRO_L09', 'TEX', '..\Graphics\intro-l-09.png' ); - AddFile( 'OUTRO_BG', 'TEX', '..\Graphics\outro-bg.png' ); - AddFile( 'OUTRO_ESC', 'TEX', '..\Graphics\outro-esc.png' ); - AddFile( 'OUTRO_EXD', 'TEX', '..\Graphics\outro-exit-dark.png' ); -*) - - finally - lResourceFile.SaveToFile( 'UltraStar.lrs' ); - freeandnil( lResourceFile ); - - freeandnil( lRCFile ); - end; -end. - diff --git a/Tools/linux-build.sh b/Tools/linux-build.sh deleted file mode 100755 index fd1b28b6..00000000 --- a/Tools/linux-build.sh +++ /dev/null @@ -1,3 +0,0 @@ -clear -fpc -S2cgi -OG1 -gl -vewnhi -l -Filib/JEDI-SDLv1.0/SDL/Pas/ -Fu/usr/lib/lazarus/components/images/lib/i386-linux/ -Fu/usr/lib/lazarus/lcl/units/i386-linux/ -Fu/usr/lib/lazarus/lcl/units/i386-linux/gtk2/ -Fu/usr/lib/lazarus/packager/units/i386-linux/ -Fu. -dLCL -dLCLgtk2 USDXResCompiler.lpr - |