Well it seems some of you know a bit about scar scripting and I'm in a bit of a pickle here. I'm trying to make a script for Maplestory, not runescape. And SCAR just won't let me press any keys down. I'm trying to hold down the "shift" button for about 20 seconds, then tap the "right arrow" button, then hold shift for 20 more seconds, then tap the "left arrow" button and then repeat the process to unlimited. This is what I had, (sorry not much of a scripter :P)
Now I know I'm DEFINITELY doing something wrong here but I really cant figure it out. Basically what I'm trying to do is:program MapleSCAR;
begin
KeyDown(16);
Wait(20000);
KeyUp(16);
Wait(1000);
KeyDown(39);
Wait(100);
KeyUp(39);
Wait(1000);
KeyDown(16);
Wait(20000);
KeyUp(16);
Wait(1000);
KeyDown(37);
Wait(100);
KeyUp(37);
Wait(1000);
repeat
end.
Hold Shift 20 Seconds
1 second wait
Tap Right Arrow 1/10 second
1 second wait
Hold Shift 20 Seconds
1 second wait
Tap Left Arrow 1/10 second
1 second wait
Repeat forever
If anyone could write me a simple script for that or tell me how to fix it, or hell do both, I would be most grateful [:


Reply With Quote














