1.The anti-ban made me dizzy.
2.You should try fixing your standards.
3.You don't need this:
SCAR Code:
Players[0].Strings[1] := 'FEB';
or this:
SCAR Code:
{.include SRL/SRL/Skill/Woodcutting.scar}
4.Try changing procedure Banking to this:
SCAR Code:
procedure Banking;
begin
Disguise('banking')
MakeCompass('N');
Wait(300 + random(160));
OpenBankQuiet('db');
if (PinScreen) then
InPin(Pin);
if Players[currentplayer].Booleans[0] = True then
begin
DepositAll;
IncEx(Loads, 28);
end;
if Players[currentplayer].Booleans[0] = False then
begin
Deposit(2, 28, True);
IncEx(Loads, 27);
end;
Mouse(RandomRange(483, 495), RandomRange(29, 41), 0, 0, True);
Wait(150 + random(278));
end;
So instead of this:
Change it to this:
5.Add this to your progressreport:
SCAR Code:
Writeln('|~| Gained: ' + IntToStr(Lvlups) + ' Levels. | ');
6. It doesn't bank.
7.Why do you have this on your script?
SCAR Code:
procedure LoadDTMs;
begin
{AxeDTM := DTMFromString('78DA63FCCFC4C0B09F91011974670832FC07D' +
'220D1FF40C0F80BA8E61CAA1A882C8C04D1CC0C0C5B08A8E101AA' +
'D949400D1750CD3EFC6A0056B70BE7');
BrokenAxeDTM := DTMFromString('78DA63B4626660B8C2C8800C3AD20419FE036' +
'990E87F2060B405AA3981AA06220B2381B40750CD29026ACC806A' +
'1E1150E30A547396801A37A09A4BF8D5000072D20C8B'); }
WillowDTM := DTMFromString('78DA6364C00D1861342790E0429573B195445' +
'5230D24D809A891071212A86A8CF58451D5F00009595435C5D94EA86' +
'A5830CD498EB64055C30A240451D578384891EC2F00DA4D05E5');
end;