amxmodx/installer/installer/AMXInstaller.dpr

48 lines
1.7 KiB
ObjectPascal
Raw Normal View History

2005-07-21 23:08:23 +00:00
program AMXInstaller;
2005-09-01 17:11:48 +00:00
{ AMXX Installer for AMX Mod X
2005-07-21 23:08:23 +00:00
by the AMXX Development Team
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)
2005-09-01 17:11:48 +00:00
AMXX Installer for AMX Mod X is developed under GNU Public License
2005-07-21 23:08:23 +00:00
and comes WITH ABSOLUTELY NO WARRANTY!
}
uses
madExcept,
madLinkDisAsm,
madListHardware,
madListProcesses,
madListModules,
2005-07-21 23:08:23 +00:00
Forms,
UnitfrmMain in 'UnitfrmMain.pas' {frmMain},
UnitFunctions in 'UnitFunctions.pas',
UnitScanMods in 'UnitScanMods.pas',
UnitfrmProxy in 'UnitfrmProxy.pas' {frmProxy},
UnitInstall in 'UnitInstall.pas',
UnitSelectModPath in 'UnitSelectModPath.pas' {frmSelectModPath};
{$R *.res}
begin
Application.Initialize;
Application.Title := 'AMX Mod X Installer';
Application.CreateForm(TfrmMain, frmMain);
2005-09-01 17:11:48 +00:00
frmMain.lblWelcome.Caption := 'Welcome to the AMX Mod X Installer ' + VERSION + ' Setup Wizard';
frmMain.lblInfo1.Caption := 'This wizard will guide you through the installation of AMX Mod X ' + VERSION + '.';
frmMain.lblSubTitle1.Caption := 'Please review the following license terms before installing AMX Mod X ' + VERSION + '.';
frmMain.lblSelectModInfo.Caption := 'Please select the mod AMX Mod X ' + VERSION + ' shall be installed to.';
frmMain.lblTitle3.Caption := 'Installing AMX Mod X ' + VERSION + ' via FTP';
frmMain.lblTitle5.Caption := 'Installing AMX Mod X ' + VERSION;
frmMain.lblSubTitle5.Caption := 'Please wait while AMX Mod X ' + VERSION + ' is being installed.';
2005-07-21 23:08:23 +00:00
Application.CreateForm(TfrmProxy, frmProxy);
Application.CreateForm(TfrmSelectModPath, frmSelectModPath);
Application.Run;
end.