Results 1 to 4 of 4

Thread: best procedures?

  1. #1
    Join Date
    Jun 2006
    Posts
    1,492
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default best procedures?

    what are the best procedures for typing and moving the mouse?

  2. #2
    Join Date
    Feb 2006
    Location
    L.A, USA
    Posts
    1,632
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Infintry001
    what are the best procedures for typing and moving the mouse?
    Moving the Mouse
    Code:
    MMouse(X, Y, RandX, RandY: integer);
    x, y = the coord
    RandX, RandY = random pixels off x and y. 0, 0 would be perfect click
    Example
    MMouse(200, 300, 2, 2);

    Typing
    Code:
     TypeSend(text : string);
    Example
    TypeSend('What you want to write here');

  3. #3
    Join Date
    Feb 2006
    Location
    Las Vegas, NV
    Posts
    939
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    PHP Code:
    MMouse(xyranxrany);
    Mouse(xyranxranyleft);

    x-- location of the movement
    ranx
    rany -- how random it should be in pixels
    left 
    -- true will do a left clickfalse will do a right click 
    example params:
    PHP Code:
    MMouse(50050055); //will move the mouse to position 500, 500 with a randomness of 5 pixels on x and y axis
    Mouse(50050055true); //will move the mouse to 500, 500 with randomness of 5, 5 then left click
    Mouse(50050055false); //same as above, but will right click instead 
    the typing procedure i am not sure about because i dont do a lot of typing on scripts

    edit: ahh whiteshadow.. beat me.. i had the reply on for like 20 minutes i think
    Busy with real life. I'll still be around occasionally.
    Current Mood:


  4. #4
    Join Date
    Feb 2006
    Location
    New Zealand
    Posts
    485
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Sending text: Use SendText('blablabla'); or TypeSend('blablabla');

    variants:
    SendText2('blablabla'); Will type text make mistakes and correct them.

    Capitalize('bla bla bla'); will type Bla Bla Bla

    SendMyText('blablabla');
    Types text humanlike either making mistakes and backspacing to
    correct it, sending the correction with a * after it, ignoring the mistake
    or not making a mistake at all.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Using Procedures in Procedures?
    By Geebly in forum OSR Help
    Replies: 4
    Last Post: 03-14-2008, 07:33 AM
  2. Help with procedures :s
    By Macro_FTW in forum OSR Help
    Replies: 1
    Last Post: 05-02-2007, 02:15 AM
  3. better procedures?
    By lilboy543 in forum OSR Help
    Replies: 3
    Last Post: 04-25-2007, 01:15 AM

Posting Permissions

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