i have an anti-random, a progress report, a signature and the setup of a powercutter can someone please help me put them together and tell me where i need to put the rest of the powercutter 
heres the antirandom
SCAR Code:
program Auto;
{.include SRL/SRL.scar}
procedure DoAntiRandoms;
begin
FindTalk;
FindNormalRandoms;
if (FindFight = true) then
begin
RunAwayDirection('N');
Wait(10000 + random(2000));
RunBack;
end;
end.
heres the proggy
SCAR Code:
var Clicks: Integer;
Loads: Integer;
procedure ProgressReport;
begin
ClearDebug;
Writeln('[]========================================[]');
Writeln('---------------->Our Proggy<----------------');
Writeln(' did ' + IntToStr(Loads) + ' Loads' + ' ');
Writeln('---------------------------------------------');
Writeln(' Did ' + IntToStr(Clicks) + ' Clicks' + ' ');
Writeln('[]========================================[]');
end;
ProgressReport;
until(false);
heres the signature
SCAR Code:
procedure Signature;
begin
ClearDebug;
Writeln('______ _____ ____ ______ ____ ____ __ ')
Writeln('|_____|| | | __ ||__ __| / |_|\ | \ | |');
Writeln(' | | | o | || || | | / _ \ | |\ \ | |');
Writeln(' | | | _ \ || || | | / / \ \ | | \ \| |');
Writeln(' | | | | \ \ ||__|| / / / / \ \ | | \ |');
Writeln(' |_| |_| \_\|____| /_/ /_ / \ _\|__| \__|');
and heres the powercutter setup
SCAR Code:
program Troj@ns Powerchopper;
{.include SRL/SRL.scar}
{.include SRL/SRL/skill/WoodCutting.scar}
const
TypeTree = 'Tree'; // type what tree you are cutting Tree,Oak,Willow or Yew
TreeColor = 2777686;//you can optionally set the colors yourself
Oakcolor = 1591874
WillowColor = 2582616;
YewColor = 2582616;
Loads = 5; //how many trips to do
procedure
begin
end.