In SCAR, press F1
Also holding control and space gives you a list which is good for spelling
For SRL commands check the manual (available in Download SRL here section)
Drigers tutorial.exe gives a good overview of a lot of commands (see part 1 of my FAQ, link in sig)
as for inttostr, it means Integer to String. For example if you have an integer NumberOfLogs, and would like to display it in the debug box, you can't just do
writeln(NumberOfLogs)
because writeln only accepts strings. So you do convert the integer to a string
WriteLn(IntToStr(NumberOfLogs));
SCAR Code:
program new;
var NumberOfLogs:integer;
begin
NumberOfLogs:=5;
WriteLn('You have cut '+IntToStr(NumberOfLogs)+' logs.');
end.