Hi, this is probably very simple to code.
But I am a super noob.
I want a script for maplestory.
I want it to press the "s" key constantly without pressing enter, so you cant use typesend. It presses the "s" key repedeatly for 30 seconds then presses the left arrow 2seconds right arrow 3seconds and left 1 second.
Then just at so that it goes on and on until I press stop.
I know this is somehow possible, but I cant do it, please help!
heres my code so far (I cant use typesend tho.) =
SCAR Code:program autoattacker;
{.include srl/srl.scar}
const
Skill='s';// The skill button on your keyboard
waits=70;//
procedure autotatk;
begin
Disguise('autoatk')
wait(1000)
typesend(skill)a
end;
begin
SetupSRL;
wait(2000);
repeat
autotatk
until(false)
end.


Reply With Quote










