Cuz I was trying to run this in simba and it didnt work.. I was eventually putting this in my herblore maker which has reflection already..
but since this doesnt work in simba, I decided Ill just put this in scar with the herblore reflection script 
So simba cant run this, and scar cant do reflection.. basically im screwed right?
Simba Code:
program ISMTutorial1;
{.include SRL/SRL/Misc/Smart.scar}
{.include SRL/SRL.scar}
var
s : string;
begin
repeat
if IsFKeyDown(12) then
begin
s := ReadLn('What do you wish to type?');
if s <> '' then
begin
SendInterSCARMessage('Channel1', s);
Writeln('Sending message to type ''' + s + '''.');
end;
while IsFKeyDown(12) do
wait(1);
end;
until(not IsFKeyDown(11));
end.