
Originally Posted by
Haag
Im not Chinese, its not that, not at all. Mine is affiliated with Flowering ingame, nothing to do with chinese farm's.
The following DTMs were not freed: [SRL - Lamp bitmap, 1]
The following bitmaps were not freed: [SRL - Mod bitmap, SRL - Admin bitmap, SRL - Flag bitmap
Still getting this error Run, exactly did your steps

Ah, don't know why I missed this before! You've got this:
Simba Code:
SetupSRL;
SmartSetupEx(10, Memberss, True, False);
You need to call SetupSRL after setting up SMART:
Simba Code:
SmartSetupEx(10, Memberss, True, False);
SetupSRL;
// or:
Smart_Server := 10;
Smart_Members := Memberss;
Smart_Signed := True;
Smart_SuperDetail := False;
SetupSRL;