Results 1 to 4 of 4

Thread: Keys

  1. #1
    Join Date
    Apr 2007
    Location
    Finland
    Posts
    938
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Keys

    What's the best way to make it turn the screen to highest, I've seen some versions but I want to know the least detectable.

    And what's good to typing?
    SendKeys is highly detectable I hear.

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

    Default

    Well SRL itself (from its shipped functions) gives references to TypeSend(), and I would presume they know what they're doing so I guess thats best

    PLZ PLZ PLZ
    http://www.villavu.com/forum/showthread.php?t=9181

  3. #3
    Join Date
    Feb 2007
    Posts
    3,616
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by PwNZoRNooB View Post
    What's the best way to make it turn the screen to highest, I've seen some versions but I want to know the least detectable.

    And what's good to typing?
    SendKeys is highly detectable I hear.
    TypeSend('Hello world!') would type (most undetectably) Hellow world! and then the enter key automatically.

    As for best way to make screen the highest angle, you could just use the SRL function HighestAngle;

    If you'd rather make your own Highest angle command, do something like this:

    SCAR Code:
    procedure MakeCompassHighest;
    begin
      KeyDown(38);
      wait(2000+random(1000));
      KeyUp(38)
    end;
    Almost 100% sure 38 is the right number for the up arrow key

  4. #4
    Join Date
    Apr 2007
    Location
    Finland
    Posts
    938
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Help with holding keys down
    By shadohead in forum OSR Help
    Replies: 5
    Last Post: 01-29-2009, 09:08 AM
  2. Help With Holding Keys Down
    By shadohead in forum OSR Help
    Replies: 2
    Last Post: 01-28-2009, 07:49 AM
  3. VK Keys?
    By Macro_FTW in forum OSR Help
    Replies: 1
    Last Post: 11-12-2008, 04:22 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
  •