Results 1 to 7 of 7

Thread: Newbie question about AutoTyper

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

    Default Newbie question about AutoTyper

    Hey guys, been a while since I've been around.
    I'm still no better of a scripter , lol never tried anything after screwing around with my first autotyper.

    Whenever I had first made that autotyper (using SCAR 2.03, nonetheless, lol) I had it set to where the F Keys would control the preset messages, but I had to remove that when Jagex implemented the F Keys to switch between inventory, spells, etc.

    Can I set other keys in the script to control the messages? There's nothing I could think of unless you use key combinations...

    Basically, I'm asking can I set key combinations to send messages, if so how, if not thanks.




    __
    A lot's changed since 2.03.... lol.

  2. #2
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    Use KeyDown,

    For example to Tab as your trigger do KeyDown(Vk_Tab); .

    The Tab key can be used aswell, I think. Good luck with whatever you are doing

  3. #3
    Join Date
    Jun 2007
    Posts
    29
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks for the response, appreciated.

    But what keys are excluded?... I'm not even entirely sure what all key SCAR uses...

    Could I use keys like page up, page down, home, end?

    And can I use key combinations, like Ctrl+Alt+Q, for lack of a better example.

    EDIT:
    I tried using KeyDown(Vk_Tab) and got this:
    Code:
    Line 21: [Error] (16778:22): Type mismatch in script C:\Users\********\Desktop\Sub-Auto.scar
    Last edited by Isolated; 05-24-2009 at 03:44 AM.

  4. #4
    Join Date
    Jun 2007
    Posts
    29
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Anybody hooooooooome?

    Hello? (ello, ello, lo, lo)

  5. #5
    Join Date
    Jan 2008
    Location
    California, US
    Posts
    2,765
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Umm, this compiles fine for me.
    SCAR Code:
    program New;

    begin
      KeyDown(VK_TAB);
      KeyUp(VK_TAB);
    end.

  6. #6
    Join Date
    May 2009
    Posts
    13
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    there are much easier auto typers if u just google them.

  7. #7
    Join Date
    Aug 2007
    Location
    in a random little world
    Posts
    5,778
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

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
  •