Results 1 to 2 of 2

Thread: some bot questions

  1. #1
    Join Date
    Jun 2012
    Posts
    66
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default some bot questions

    i need help doing something. im trying to make a bot run a color check (If GetColor(30,-73) = 343654) then move the mouse and click. however if the color returns false, wait 100MS and recheck and keep repeating until the color shows up. Once the color shows up check for a DTM of the login screen (not runescape so cant use smart) and keep repeating the login screen DTM until the page has loaded.

    how would i go about this?

  2. #2
    Join Date
    Mar 2012
    Location
    127.0.0.1
    Posts
    3,383
    Mentioned
    95 Post(s)
    Quoted
    717 Post(s)

    Default

    Simba Code:
    begin
       while(not(GetColor(30,-73)=343654)) do
          wait(100);
       if(FindDTM(x,x,x,x,x)) then
          //stuff here
    end.

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
  •