Jump to content

Runescape smart-autominer help..


Cadeon
 Share

Recommended Posts

Well I've made a couple of smart-autoers *fighting & firemaking*, now I'm making one for rune essence. It can succesfully walk back and forth between the bank and the essence, find the portal, get the teleport, etc. Problem is that when I teleport to the mine, I've got my script placing my mouse in the middle of the screen and rotating the camera until it finds the cyan text on the corner of the rs screen. I don't know why, but it never finds the colour, I've tried high and low rs settings, but neither work.

Is there something I'm missing?

Here's the code of the findEss() function:

func findEss()
    compassToNorth()
    $camDown = 0
    Do
        Send("{down}")
        $camDown = $camDown + 1
    Until $camDown > 200
    MouseMove(813,294)
    $foundRune = PixelSearch(461,121,973,454,0x01C0C0) 
    While 1
        send("{left}")
        $foundRune = PixelSearch(461,121,973,454,0x01C0C0)
        if IsArray($foundRune) = 1 Then
            MouseClick('left',813,294,1,0)
            exitloop 1
        EndIf
    WEnd
EndFunc
Edited by Cadeon
Link to comment
Share on other sites

Well I found out that PixelSearch() only finds the pixel that the cursor hovers over (at least as far as I've used it), plus, the cya colour constantly changes due to the shading of the essence. I'm working on rightclicking for the cyan colour so I guess this thread is solved....

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...