
Originally Posted by
The_Scripts
I want the user to have the option.
The only way I can think to do this is include it, add a boolean and an if statement to your smart setup, and add to the instructions if not using smart remove the include =X I am sorry thats not very helpful
SCAR Code:
program New;
{.include srl/srl/misc/smart.scar}
const
UseSMART = True; // If False please remove line 2, to remove the smart include
begin
if UseSMART then
begin
SmartSetup(RandomWorld, True, True, False);
SetTargetDC(SmartGetDC);
end;
end.