mirror of
https://github.com/alliedmodders/metamod-source.git
synced 2024-12-01 13:24:25 +01:00
5d39ea83a9
--HG-- extra : convert_revision : svn%3Ac2935e3e-5518-0410-8daf-afa5dab7d4e3/trunk%40127
40 lines
1.5 KiB
ObjectPascal
40 lines
1.5 KiB
ObjectPascal
program MMS_Installer;
|
|
|
|
{ Metamod:Source installer ported from the AMX Mod X installer
|
|
|
|
Used components:
|
|
|
|
- Indy 9 (www.indyproject.org)
|
|
- FlatStyle Components (www.torry.net)
|
|
- FlatPack Component Pack (www.torry.net)
|
|
- JVCL Lib Pack 3.0 (jvcl.sourceforge.net)
|
|
|
|
}
|
|
|
|
uses
|
|
Forms,
|
|
UnitfrmMain in 'UnitfrmMain.pas' {frmMain},
|
|
UnitFunctions in 'UnitFunctions.pas',
|
|
UnitfrmProxy in 'UnitfrmProxy.pas' {frmProxy},
|
|
UnitInstall in 'UnitInstall.pas',
|
|
UnitSelectModPath in 'UnitSelectModPath.pas' {frmSelectModPath},
|
|
UnitPackSystem in 'UnitPackSystem.pas';
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.Title := 'Metamod:Source Installer';
|
|
Application.CreateForm(TfrmMain, frmMain);
|
|
frmMain.lblWelcome.Caption := 'Welcome to the Metamod:Source ' + VERSION + ' Setup Wizard';
|
|
frmMain.lblInfo1.Caption := 'This wizard will guide you through the installation of Metamod:Source ' + VERSION + '.';
|
|
frmMain.lblSubTitle1.Caption := 'Please review the following license terms before installing Metamod:Source ' + VERSION + '.';
|
|
frmMain.lblSelectModInfo.Caption := 'Please select the mod Metamod:Source ' + VERSION + ' shall be installed to.';
|
|
frmMain.lblTitle3.Caption := 'Installing Metamod:Source ' + VERSION + ' via FTP';
|
|
frmMain.lblTitle5.Caption := 'Installing Metamod:Source ' + VERSION;
|
|
frmMain.lblSubTitle5.Caption := 'Please wait while Metamod:Source ' + VERSION + ' is being installed.';
|
|
Application.CreateForm(TfrmProxy, frmProxy);
|
|
Application.CreateForm(TfrmSelectModPath, frmSelectModPath);
|
|
Application.Run;
|
|
end.
|