Results 1 to 7 of 7

Thread: ok i know how to create dtms, now to the clicking

  1. #1
    Join Date
    Nov 2006
    Location
    Bel Air, Maryland, USA
    Posts
    207
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default ok i know how to create dtms, now to the clicking

    ok ive created a dtm, now how do i move the mouse humanly like to my dtm and make it click it?

  2. #2
    Join Date
    Feb 2006
    Location
    Locked in RAM's closet !
    Posts
    2,001
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Code:
    if(finddtm(DTM,x, y, x1, y1, x2, y2)then
    Mouse(x, y, 2, 2, true)
    no problem.
    Darky has stopped by to say hello :).
    10-21-2010
    Updated-
    10-09-2012

  3. #3
    Join Date
    Nov 2006
    Location
    Bel Air, Maryland, USA
    Posts
    207
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    what about this?
    SCAR Code:
    MMouse(xt, yt, 0, 0);
           Wait(100+Random(50));
           GetMousePos(xt, yt);
           Wait(100+Random(50));
           Mouse(xt, yt, 5, 5, True);

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

    Default

    thats what
    Mouse(x,y,4,4,true) does
    your just making it longer =p

    (how did you learn DTMS? My tut? )

  5. #5
    Join Date
    Nov 2006
    Location
    Bel Air, Maryland, USA
    Posts
    207
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    yea your tut, look at this dude, i just got done an autologin script using dtm's

    SCAR Code:
    program New;
    {.include srl/srl.scar}
    var login1,login2,clickhere:integer;

    const
    username = 'username goes here'

    password = 'password goes here'
    procedure login;
    begin
         login1 := DTMFromString('78DA633CCDC8C0A00CC468E03F108344FF0301E372204B1D530D03540D985E0164C91150F303C85222A0E61B11765D05B2B4F1AB01004D8F0ACD');
         if FindDtm(login1, x, y, 0, 0, 750, 480) then
         mouse(x, y, 20, 9, true);
         Wait(1000+Random(500));
         typesend(username);
         Wait(1000+Random(500));
         typesend(password);
         Wait(2000+Random(500));
         login2 := DTMFromString('78DA63D467646070046234F01F8841A2FF81805101C8B2C554C3005503A6416A5C08A85101B2DC08A83127428D3D90E5845F0D00D3C107AD');
         if FindDtm(login2, x, y, 0, 0, 750, 480) then
         mouse(x, y, 20, 5, true);
         Wait(6000+Random(1000));
         clickhere := DTMFromString('78DA639CCCC8C01000C468801F8841A2FF818' +
           '0910FC852C654C3005503A6416AEA08A8F942A41A4276B513A166' +
           '3E61BB007E440A18');
         if FindDtm(clickhere, x, y, 266, 287, 500, 382) then
         mouse(x, y, 20, 5, true);
         end;
    begin
    setupsrl
    login
    end.

    is it good?

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

    Default

    yes but some comps take a long time to load the 2nd login scren
    make it do something like
    repeat
    Wait(4000)
    I:=I+1
    Until(FindDTM(Clickhere) or (I>10)
    if (I>10) then
    Beign
    Writeln('ERROR')
    end;

    Try looking at some of the SRL login procedure code =)prety good though

  7. #7
    Join Date
    Oct 2006
    Location
    MI USA
    Posts
    3,166
    Mentioned
    6 Post(s)
    Quoted
    11 Post(s)

    Default

    yohojo8, what about.....
    function ClickMSDTM(DTM: Integer): Boolean;
    By: WT-Fakawi
    Description:
    Clicks DTM in main screen.
    although, i tried useing it, and couldn't get it to work.....

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. How to Create an Army *how to auto
    By TViYH in forum General Botting Help
    Replies: 5
    Last Post: 01-26-2011, 06:46 PM
  2. Anyone willing to help me create an Autoresponder?
    By Sandstorm in forum News and General
    Replies: 59
    Last Post: 12-19-2008, 10:16 PM
  3. Can't create a good banking DTM!
    By pianoman933 in forum OSR Help
    Replies: 6
    Last Post: 09-29-2008, 07:20 PM
  4. For all that want to create a first script
    By Spiritualowl in forum OSR Help
    Replies: 3
    Last Post: 03-16-2008, 02:49 AM
  5. Someone help me create first script?
    By Immortal_DemiGod in forum OSR Help
    Replies: 13
    Last Post: 12-23-2007, 03:22 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
  •