well here is my question tell me if you need more clarification
is it possible to put 2 or more scripts into one script and then have the main script have a choice to use either one of those 2 inside of it?
such as
SCAR Code:program 2scripts;
const
usescripta=true;
program scripta;
begin
end.
program scriptb;
begin
end.
procedure choose;
begin
if(usescripta=true)then
begin
scripta;
end else
begin
scriptb;
end
end;
begin
choose;
end.
i know that wont work but that is just an example incase you didnt understand my description
