Jump to content

How do you refresh a function until it passes?


shea851
 Share

Recommended Posts

I want to call a function that checks for a pixel color indefinitly until it's not that color. How can I make a function "refresh" or go to the beginning of itself?

Func checkCast()
 If (PixelGetColor($x, $y) = $color) Then
  Sleep(500)
  checkCast();can a function call itself inside itself? i dont think so? how do i do this part?
 Else
  Sleep(10)
 EndIf
EndFunc
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...