sikuli-driver team mailing list archive
-
sikuli-driver team
-
Mailing list archive
-
Message #45880
Re: [Question #664345]: CPU usage going through the roof when running script
Question #664345 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/664345
David Bachschmid posted a new comment:
Danke RaimMan ;)
Now sikuli has a problem with this line:
20 if Screen(1).exists(Pattern("rewards.png").similar(0.90)):click()
21 Screen(1).wait("rewards2.png", 6):click()
Error msg:
[error] script [ dd always restart ] stopped with error in line 21 at column 8
[error] SyntaxError ( "mismatched input '' expecting DEDENT", )
Everything is alright with the length of the tabs but I can't find the
error...
How do I implement "setWaitScanRate(rate)" in my code? Does including "simular" cost more CPU?
Here's what I have so far:
Settings.MoveMouseDelay = 0.1
running = True
def runHotkey(event):
global running
running = False
Env.addHotkey(Key.F1, KeyModifier.CTRL, runHotkey)
while running:
if Region(2927,567,639,340).exists("image1.png", 0):click()
if exists(image2.png):click()
if Region(3037,617,584,324).exists(Pattern("image3.png").similar(0.95), 0):click()
if Screen(1).exists("choosehero.png"):
Screen(1).click(Pattern("choosehero.png").targetOffset(-70,230)) //old code, will change it after posting this
if Screen(1).exists(Pattern("rewards.png").similar(0.90)):click()
Screen(1).wait("rewards2.png", 6):click()
--
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.