i wanna make something that will send keystrokes withoutalso maybe something that will recognize when keys are pressedCode:typesend
i wanna make something that will send keystrokes withoutalso maybe something that will recognize when keys are pressedCode:typesend
Try looking in Text.Scar located at
C:\Program Files\SCAR 2.03\includes\SRL\SRL\core
Heres something...
procedure TypeByte(k: Byte);
begin
KeyDown(k);
Wait(10 + Random(50));
KeyUp(k);
end;
thanks
maybe
SCAR Code:if (iskeydown(mouse1)) then
begin...