Results 1 to 6 of 6

Thread: Please HELP A.S.A.P

  1. #1
    Join Date
    Nov 2006
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Please HELP A.S.A.P

    Hello everyone, I'm stumped

    I'm making a Fletching Scripts using Co-ords and when I try to enter in the number of Logs I want to fletch it doesnt enter in my number.

    Code:
    program Cutter;
    
    Procedure ClickLogs;
    begin
    movemouse(584, 228)
    wait(200)
    clickmouse( 584, 228,true)
    wait(200)
    movemouse(625, 231)
    wait(200)
    clickmouse( 625, 231,true)
    wait(200)
    end;
    
    procedure CorrectNumber;
    begin
    movemouse(265, 439)
    wait(200)
    clickmouse(265, 439,false)
    wait(200)
    movemouse(257, 428)
    wait(200)
    clickmouse(257, 428,true)
    end;
    
    procedure EnterNumber;
    begin
    movemouse(584, 228)
    wait(200)
    sendkeyssilent('99')  <------------------ [Whats the proper Function for putting numbers into
    end;                                                   the dialog box at the bottom of the RS screen                                                           after you click 'Make X' ]                    
    
    
    
    begin
    
    ClickLogs;
    wait(200)
    CorrectNumber;
    wait(200)
    EnterNumber;
    end.
    Where it says SendKeysSilent('99'+(chr(13)) What is the proper function to type to enter digits into the screen that comes up after you click 'Make X'?

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

    Default

    here?

    SCAR Code:
    program Cutter;

    Procedure ClickLogs;
    begin
    movemouse(584, 228)
    wait(200)
    clickmouse( 584, 228,true)
    wait(200)
    movemouse(625, 231)
    wait(200)
    clickmouse( 625, 231,true)
    wait(200)
    end;

    procedure CorrectNumber;
    begin
    movemouse(265, 439)
    wait(200)
    clickmouse(265, 439,false)
    wait(200)
    movemouse(257, 428)
    wait(200)
    clickmouse(257, 428,true)
    end;

    procedure EnterNumber;
    begin
    movemouse(584, 228)
    wait(200)
    sendkeys('99' + chr(13));
    end;



    begin

    ClickLogs;
    wait(200)
    CorrectNumber;
    wait(200)
    EnterNumber;
    end.

    also using all of that
    clickmouse
    movemouse

    will get you baned after about 1 movement
    movemosue doesn'tmove the mouse smoothly
    it just jumps to the pixels
    you should use SRL as an include and use its mouse procedures
    i wouldn't recommend using this script on any of your accounts
    try looking at some tuts to learn how to use srl

    also its very specific if you use cords meaning that it wont work for all people and it wont work for you all of the time
    thats why people use include
    to make scripting easier but still try to make some of their own procedures
    here i made it SRLed for you.
    i wont guaranteethat it will work, but it shouldn't get you baned.. as fast =p

    SCAR Code:
    program Cutter;
    {.include SRL\SRL.Scar}
    Procedure ClickLogs;
    begin
    Mouse(584, 228,4,4,true)
    wait(200+Random(100))
    Mouse( 625, 231,5,5true)
    wait(200+Random(100))
    end;

    procedure CorrectNumber;
    begin
    wait(200+Random(100))
    Mouse(265, 439,5,5false)
    wait(200+Random(100))
    wait(200+Random(100))
    Mouse(257, 428,5,5true)
    end;

    procedure EnterNumber;
    begin
    Mouse(584,228,5,5,true)
    wait(200)
    sendkeys('99' + chr(13));
    end;



    begin

    ClickLogs;
    wait(200)
    CorrectNumber;
    wait(200)
    EnterNumber;
    end.

    =) enjoy

  3. #3
    Join Date
    Nov 2006
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thanks

  4. #4
    Join Date
    Nov 2006
    Posts
    189
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Don't double post either. It's pointless, you will get an answer soon enough with only one post =]
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig

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

    Default

    I see no double posts here
    And btw about your sig...
    there is not pay script section here lolz

  6. #6
    Join Date
    Jun 2006
    Posts
    366
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    lol.. I'll check the pay section out... by the way, I think he meant don't make 2 topics..
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig (I did, so should u )

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
  •