Results 1 to 2 of 2

Thread: Atuo Key Presser

  1. #1
    Join Date
    Jun 2007
    Posts
    25
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Atuo Key Presser

    im tryning to make a script to auto keep pressing
    F5 and F6
    and keep repeating until i stop it at a pretty fast rate
    but not real fast
    like every 0.7seconds

    thanks

  2. #2
    Join Date
    Apr 2007
    Posts
    994
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    program New;
    begin
      repeat
        Keydown(VK_F5);
        keyup(VK_F5);
        wait(700);
        Keydown(VK_F6);
        Keyup(VK_F6);
        wait(700);
      until(iskeydown('d'))
    end.

    Like that? It keeps pressing F5 and 6 until you press d.
    [QUOTE]<GoF`> oh no its Raymooond
    <Raymooond> Heya
    <GoF`> is it ray or some other ray?
    <LeeLokHin> No idea
    <LeeLokHin> Raymond, what's the game you like the most?
    <Raymooond> Runescape
    <-- LeeLokHin has kicked Raymooond from #srl (Faker.)[/QUOTE]

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •