okay so I made this script for macro key shortcut using lape interpreter
Simba Code:
program new;
begin
repeat
begin
if(IsKeyDown('71')) then //G
SendKeys('W 1 Q R', 5, 5); // W 1 Q R -> 87 49 81 82
Wait(5);
end;
until false
//writeln(IntToStr(GetKeyCode('q')));
end.
but I get error
Exception in Script: Expected variable of type "UInt16", got "AnsiString" at line 5, column 19
i already asked mayaz if this is doable with Simba but it's giving me a hard time
any advice or if there's something better to use for keyboard macro please shoot