
Originally Posted by
eeh99
Error: Out Of Range at line 115
The following DTMs were not freed: [SRL - Lamp bitmap, 1, 2, 3]
The following bitmaps were not freed: [SRL - Mod bitmap, SRL - Admin bitmap, SRL - Flag bitmap, SRL - NavBar Bitmap, SRL - Options Bitmap, 5]
Keep getting this error after filling out forms. any ideas as to what it is? I have had the script working before but now when i try to start it up i always get this error.
Must be line 115 of online.simba, see below.

Originally Posted by
vonadz
Error.jpg
Hey guys, every time I try to run it I get this error! I ran it earlier today, worked perfectly and got from 87-88 mage. But now it has decided to do this! I would appreciate any help

thank you! Also I would post a proggy but it glitched out and said I got no exp!
See below.

Originally Posted by
BMWxi
I'm pretty sure that happens when the ge database is down and can be avoided with a try except statement.
I thought I put that in version 1.07, but it was actually my G.A.O script.
I was planning on uploading a new version later with some other fixes, so if you get that error just put this in the loop at the bottom of the script:
Simba Code:
SafeInitForm;
SafeShowFormModal;
If (SRLStats_Username = '') Then
SetupSRLStats(1330, 'Anonymous', 'anon1337') Else
SetupSRLStats(1330, SRLStats_Username, SRLStats_Password);
CheckForProgressPic;
DeclarePlayers;
ResetBreakTimer;
SMART_ClearCanvas;
Try
NaturePrice := GETGEprice(561);
Except // add in this here
NaturePrice := 111;
End;
WriteLn('Nature runes currently cost: ' + IntToStr(NaturePrice));
NumberAlched := 0;
Z := 0;
SetupPlayer;
ProgBMP := LoadBitmap(AppPath + '/Scripts/TMAE.png');
MainLoop;
End.