Pretty newby question I havn't used SCAR in years.
How do I use the FKeys to start a procedure? For example I press F1 and it starts a procedure.
Also, where can I find a list of commands for scripting in scar?
Thanks!
Pretty newby question I havn't used SCAR in years.
How do I use the FKeys to start a procedure? For example I press F1 and it starts a procedure.
Also, where can I find a list of commands for scripting in scar?
Thanks!
for using FKeys to start a procedure do
SCAR Code:repeat
Wait(1);
until (IsFKeyDown(SomeNumber)
For finding functions just open scar and hit F1
I know one bobarkinator who would get close round except error![]()
Or...
SCAR Code:repeat
if IsFKeyDown(TheNumber) then
begin
//Stuff here.
end;
until (something)
There are currently 1 users browsing this thread. (0 members and 1 guests)