I will try to walk you through the steps... This is what the very top of the script should look like...
Code:
program Example;
{.include SRL/SRL/Misc/Smart.scar}
{.include SRl/SRL.scar}
This should be in your const...
Code:
const
SmartWorld = 1;
Signed = True;
This should be your very first Procedure...
Code:
procedure SetupSmart;
begin
SmartSetupEx(SmartWorld, false, Signed);
ClearDebug;
WriteLn('Setting up Smart... Please Hold...');
Wait(10000 + random(5000));
SetTargetDC(SmartGetDC);
While not(SmartReady) do Wait(100);
end;
And finally, the main loop. If you don't know where it is it is at the very bottom of the script.
Code:
begin
SetupSmart;
SetupSRL;
Edit: On the const, you can change the SmartWorld to whatever world you want to be signed into, and where it says Signed = True, put that as False so you will be on an unsigned applet.