Results 1 to 4 of 4

Thread: Commands for Keys and Mousebutton?

  1. #1
    Join Date
    Oct 2006
    Posts
    334
    Mentioned
    0 Post(s)
    Quoted
    18 Post(s)

    Default Commands for Keys and Mousebutton?

    i wanna make something that will send keystrokes without
    Code:
    typesend
    also maybe something that will recognize when keys are pressed

  2. #2
    Join Date
    Feb 2006
    Location
    Tracy/Davis, California
    Posts
    12,631
    Mentioned
    135 Post(s)
    Quoted
    418 Post(s)

    Default

    Try looking in Text.Scar located at
    C:\Program Files\SCAR 2.03\includes\SRL\SRL\core

    Heres something...
    procedure TypeByte(k: Byte);
    begin
    KeyDown(k);
    Wait(10 + Random(50));
    KeyUp(k);
    end;

  3. #3
    Join Date
    Oct 2006
    Posts
    334
    Mentioned
    0 Post(s)
    Quoted
    18 Post(s)

    Default

    thanks

  4. #4
    Join Date
    Oct 2006
    Posts
    334
    Mentioned
    0 Post(s)
    Quoted
    18 Post(s)

    Default

    maybe
    SCAR Code:
    if (iskeydown(mouse1)) then
    begin...

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. VK Keys?
    By Macro_FTW in forum OSR Help
    Replies: 1
    Last Post: 11-12-2008, 04:22 PM
  2. Keys
    By PwNZoRNooB in forum OSR Help
    Replies: 3
    Last Post: 04-27-2007, 07:07 PM

Posting Permissions

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