you shouldn't use srl_freebitmaps because that'll free any bitmap that the script is using too.
SCAR Code:
{*******************************************************************************
procedure srl_FreeBitmapEx(which: integer);
By: Rasta Magician
Description: Frees SRL bitmap which
*******************************************************************************}
procedure srl_FreeBitmapEx(which: integer);
begin
try
FreeBitmap(srl_Bitmaps[which]);
srl_BitmapSet[which] := False;
except end;
end;
also, your bitmaps are kinda big
~RM