SCAR Code:
program BuildAlotHelper;
//Made for the game "BuildALot" by Reflexive Entertainment.
//Usage:
//When wanting to build something, hover the mouse there.
//When having the mouse on the correct spot, press the key you selected to start to start building..
(***The program will click fast (100 clicks per second) but the game can only handle 5 :/ ***)
//When building is complete, press the key you selected to stop to stop building..

const
startbutton = (*F*)8;
endbutton = (*F*)9;
//Must be F keys.

var x,y:integer;

begin; cleardebug; writeln('BuildALot Helper by Laur€ns. Have fun.');
repeat
  if IsFKeyDown(Startbutton) then
    begin
      wait(50);
      GetMousePos(x,y);
      writeln('X: '+inttostr(x)+' Y: '+inttostr(y));
      wait(10);
        repeat
          Clickmouse(x,y,True);
          wait(10);
        until IsFkeyDown(Endbutton);
    end;
  if not isfkeydown(Startbutton) then
    begin
      writeln('Waiting For F'+inttostr(startbutton)+' to start..');
      wait(5000);
    end;
until false;
end.

I was bored so yeah.
Maybe you can do something with it

//Comment: (* .. *) is commenting too.