you only need this for the setup of the stuff.. you only need {.include SRL\SRL.scar} if you are using stuff from the core folder, because this will include all the core stuff.. but anything skill or misc stuff you must have the seperate include for it
Code:
{.include SRL\SRL.scar} //regular thing..
{.include SRL\SRL\misc\amount.scar} //for a different include
procedure Setup;
begin
SetupSRL; //only need it one time
end;
begin
Setup; //once again.. setupsrl only needs to occur once which is here
repeat
somefunction;
another one;
until(false);
end.