please bear in mind its been a while since i have done anything on scar and on top of that i'm slightly exausted. now back to business. i have this procedure that i'm stuck on.
SCAR Code:
Procedure LobsterSpotter;
begin
fspot;
if Players[currentplayer].Strings[1] = 'lobster'
then begin
writeln('Looking for Lobster fishing spot');
if FindFishSpot(x,y,'cage')
then begin
found := true;
writeln('Lobster spot found');
end else begin
found := false;
writeln('Lobster spot not found');
end
else writeln('Skipping Lobster Spot check');
end;
i think all that need doing is sorting out " if then else " , i just cant seem to get my head around it. appriciate any help anyone can offer.
thanks
apx900