-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSetup.scar
46 lines (39 loc) · 1.6 KB
/
Setup.scar
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{==============================================================================\
| MSI Group Scripting Include |
| Setup.scar |
|==============================================================================|
| For All MSI Setuping up needs that are not skill-related |
| |
| * procedure SetupMSI; * by The MSI Team |
\_____________________________________________________________________________}
//SRL Includes
{.include srl/srl/misc/smart.scar}
{.include srl/srl.scar}
{$IFDEF REFLECTION}
{.include reflection/reflection.simba}
{$ENDIF}
{.include srl/srl/misc/Reports.scar}
//MSI Script
{.include srl/srl/msi/Globals.scar}
{.include srl/srl/msi/Stats.scar}
{.include srl/srl/msi/Debug.scar}
{.include srl/srl/msi/Antiban.scar}
{.include srl/srl/msi/ItemInfo.scar}
{.include srl/srl/msi/Objects.scar}
{.include srl/srl/msi/Banking.scar}
{.include srl/srl/msi/Walking_Color.scar}
{.include srl/srl/msi/Walking_Reflection.scar}
//MSI Skill Files
{.include srl/srl/msi/Skills/Woodcutting.scar}
//MSI Skill Loops, AI and Mainloop
{.include srl/srl/msi/Skills.scar}
{.include srl/srl/msi/MainLoop.scar}
procedure SetupMSI;
var
Timer: integer;
begin
MarkTime(Timer);
SetLength(ProgressReportArray, HowManyPlayers);
Debug_LevelToDebug := Debug_Everything;
writeln('Setting up MSI took '+IntToStr(TimeFromMark(Timer))+' ms.');
end;