Help with sending message
Trying to make a script that sends keys.. Ihave this but it gives me error:
Code:
[Error] C:\Simba\Scripts\dicer.simba(11:1): Unknown identifier 'TypeSend' at line 10
Compiling failed.
code:
Simba Code:
program Dice;
var
outcome: Integer;
procedure start;
begin
outcome := Random(100);
ClearDebug;
//TypeSend(Host is Rolling dice . . .);
Wait(1000);
TypeSend('I hope I dont lose . . .');
wait(800);
TypeSend('I has rolled a ' + IntToStr(outcome) + ' on the percentile dice.');
wait(400);
if outcome >= 55 then
Writeln('You win!');
if outcome <= 55 then
Writeln ('You lose!');
end;
begin
start;
end.