Well, Run This Script To Download Reflection!
SCAR Code:
Program Reflection_Downloader;
Var
Download: TStringArray;
Downloaded: Array[0..10] Of String;
I, F: Integer;
Procedure Setup;
Begin
Download := ['Changelog.txt', 'Characters.Scar', 'Core.scar',
'Depreciated.scar', 'Hooks.Scar', 'Objects.Scar', 'README.txt',
'Reflection.Scar', 'Walking.Scar'];
End;
Procedure DownloadFiles;
Begin
For I := 0 To High(Download) Do
Begin
Downloaded[i] := GetPage('http://scarreflection.googlecode.com/svn/trunk/' + Download[i]);
WriteLn(IntToStr(I));
End;
End;
Procedure Install;
Begin
For I := 0 To High(Download) Do
Begin
F := RewriteFile(AppPath + '\Includes\SRL\SRL\Reflection\' + Download[i], False);
WriteFileString(F, Downloaded[i]);
CloseFile(F);
End;
End;
Begin
Setup;
DownloadFiles;
Install;
End.