Results 1 to 19 of 19

Thread: Help with click (Insert word here)

  1. #1
    Join Date
    Dec 2006
    Posts
    47
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Help with click (Insert word here)

    what is the script to tell it to click on a certain word(s)? i need to know!

  2. #2
    Join Date
    Jun 2006
    Location
    Tennessee, USA
    Posts
    2,603
    Mentioned
    1 Post(s)
    Quoted
    46 Post(s)

    Default

    what exactly do you mean?? like UpText or what?

  3. #3
    Join Date
    Dec 2006
    Posts
    47
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

  4. #4
    Join Date
    Jun 2006
    Location
    Tennessee, USA
    Posts
    2,603
    Mentioned
    1 Post(s)
    Quoted
    46 Post(s)

    Default

    oh ok thats better. so are you trying to make an account creator? if so then i made one and you can look at it if you want, just say so. well i used bitmaps. or you could use dtms. i dnno, is there any other way guys?

  5. #5
    Join Date
    Dec 2006
    Posts
    47
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

  6. #6
    Join Date
    Jun 2006
    Location
    Tennessee, USA
    Posts
    2,603
    Mentioned
    1 Post(s)
    Quoted
    46 Post(s)

    Default

    then use DTMs......or stop hating BitMaps. do you even know how to use BitMaps? is that why you hate them lol

  7. #7
    Join Date
    Dec 2006
    Posts
    47
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i know how to use but they are REALLY ANNOYING... but i guess i could use... idk i still wanna know my initial question!

  8. #8
    Join Date
    Jan 2007
    Location
    USA
    Posts
    1,782
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i had trouble using bitmaps at first, then i got ABC ( Advanced Batch Converter )
    (LmFaO that sounded like a comercial..)
    Its great

    Join the fastest growing merchanting clan on the the net!

  9. #9
    Join Date
    Jun 2006
    Location
    Tennessee, USA
    Posts
    2,603
    Mentioned
    1 Post(s)
    Quoted
    46 Post(s)

    Default

    well if you know how to use bitmaps or dtms really good then they arent really that annoying. only problems with bmps are if you have a crap computer, they will cause you to lag. and just look in the SRL manual for a procedure that does this

  10. #10
    Join Date
    Dec 2006
    Posts
    47
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

  11. #11
    Join Date
    Jan 2007
    Location
    USA
    Posts
    1,782
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    mjordan do you have a hotmail?

    Join the fastest growing merchanting clan on the the net!

  12. #12
    Join Date
    Jun 2006
    Location
    Tennessee, USA
    Posts
    2,603
    Mentioned
    1 Post(s)
    Quoted
    46 Post(s)

    Default

    Quote Originally Posted by pwnaz0r View Post
    mjordan do you have a hotmail?
    yes why?

  13. #13
    Join Date
    Dec 2006
    Posts
    47
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

  14. #14
    Join Date
    Dec 2006
    Posts
    47
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

  15. #15
    Join Date
    Jan 2007
    Location
    USA
    Posts
    1,782
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i needta talk to you hit me up pwnaz0r@hotmail.com

    Join the fastest growing merchanting clan on the the net!

  16. #16
    Join Date
    Jun 2006
    Location
    Tennessee, USA
    Posts
    2,603
    Mentioned
    1 Post(s)
    Quoted
    46 Post(s)

    Default

    Quote Originally Posted by wade11 View Post
    hey guys how do i make it click on a bmp?
    SCAR Code:
    if(FindBitmap(BitMapName, x, y)) then
    begin
    Mouse(mousex, mousey, ranx, rany: Integer; left: Boolean);

    something along the lines of that

  17. #17
    Join Date
    Dec 2006
    Posts
    47
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    here can you just give me a script that i would put in da bitmap and i could just use? thinkin of r.e.p.++

  18. #18
    Join Date
    Jan 2007
    Posts
    39
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by wade11 View Post
    here can you just give me a script that i would put in da bitmap and i could just use? thinkin of r.e.p.++
    You hate bitmaps yet hardly even know how to use it?

    As for your inital question, if it's not for runescape, then you wouldn't be able to find text without a bitmap or DTM. Since all the characters are loaded into scar (C:\SCAR\Charsrs2, etc..) it can only read them.

  19. #19
    Join Date
    Sep 2006
    Location
    New Jersey, USA
    Posts
    5,347
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    hey i remember making a script to click bmp's once...

    SCAR Code:
    program BitmapTester;
    var
    testbmp,x,y,xmax,ymax:integer;

    Procedure loadbmps;
    begin
        testbmp:= BitmapFromString(38, 42, 'z78DAEDD8B10D00200800C1959882' +
           'FD4732B1B2B41109B95F00AF81C4CCC9C52E19191919191919191' +
           '9191919191919191FCC3AAB79438D312E6264EC6F9CB1737EE926' +
           'ED34F7919191919191919191919191B1C32FC48C16B32B01CB');
    end;

    Procedure getres;
    begin
    xmax:=GetSelf.ClientWidth;
    ymax:=GetSelf.ClientHeight;
    end;

    begin
    loadbmps; //load the bitmaps
    getres;  //get the client's resolution
    FindBitmapToleranceIn(testbmp,x,y,0,0,xmax,ymax,5); //find the bitmap
    clickmouse(x,y,true);  //click the bitmap
    cleardebug;  //clear the debug
    writeln(inttostr(x)+':'+inttostr(y)); //display the coords that the
    end. //end                           //bitmap was found at
    Interested in C# and Electrical Engineering? This might interest you.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Insert cool Title Here
    By madman5809 in forum Who Are You ? Who ? Who ?
    Replies: 0
    Last Post: 03-13-2008, 03:45 AM
  2. How can i insert a ' into a string?
    By Da 0wner in forum OSR Help
    Replies: 3
    Last Post: 02-07-2008, 12:43 AM
  3. Find a Chest & Left Click,Right Click
    By yanix in forum OSR Help
    Replies: 3
    Last Post: 10-03-2007, 06:40 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
  •