Hi, I was just wondering if there is a way to order the procedures so that the script will first do Step A, then Step B, etc?
Hi, I was just wondering if there is a way to order the procedures so that the script will first do Step A, then Step B, etc?
thats easy...
the procedures and functions can all be out of order but its your mainloop at the end (or beginning i dunno) that really counts..
download some people's scripts and youll see what i mean
SCAR Code:program New;
{.include SRL/SRL.scar}
procedure proc2;
begin
writeln('bye');
end;
procedure proc1;
begin
writeln('hello');
end;
begin
SetupSRL;
proc1;
proc2;
end.
If there wasn't a way to make sure it did step A and then step B, then there would be no macros
It's kinda important that the script mines the rock before it tries to bank.
Ah I see now, thanks.
There are currently 1 users browsing this thread. (0 members and 1 guests)