Results 1 to 3 of 3

Thread: Help a noob please!

  1. #1
    Join Date
    Mar 2012
    Posts
    58
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default Help a noob please!

    Ok guys heres what i need help with,

    I want to repeat this:

    AdjustMouseSpeed(1, 5, 6);
    MouseBox( 658, 304, 673, 317, 1);
    MouseBox( 652, 431, 673, 457, 1);

    27 times, Can someone please tell me how to do it?

    Thanks!

  2. #2
    Join Date
    Feb 2012
    Location
    DON'T PM ME ASKING FOR STUFF
    Posts
    2,170
    Mentioned
    38 Post(s)
    Quoted
    423 Post(s)

    Default

    Quote Originally Posted by Darcy_Oner View Post
    Ok guys heres what i need help with,

    I want to repeat this:

    AdjustMouseSpeed(1, 5, 6);
    MouseBox( 658, 304, 673, 317, 1);
    MouseBox( 652, 431, 673, 457, 1);

    27 times, Can someone please tell me how to do it?

    Thanks!
    You need to use an integer and increase it's value over time

    Simba Code:
    var
    R: Integer;

    repeat
        AdjustMouseSpeed(1, 5, 6);
        MouseBox( 658, 304, 673, 317, 1);
        MouseBox( 652, 431, 673, 457, 1);
    inc(R);
    Until (R = 27);

  3. #3
    Join Date
    Mar 2012
    Posts
    58
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Thanks heaps!

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
  •