Author Topic: Проблема в скрипте  (Read 1253 times)

0 Members and 2 Guests are viewing this topic.

Gorishniy

  • Зашел в гости
  • *
  • Posts: 16
    • View Profile
Проблема в скрипте
« on: January 28, 2018, 02:51:21 PM »
Помогите пожалуйста, работает некорректно ..

Code: [Select]
thread(thr1) 
getscreen
if_picture_in(250,780,907,1032,"1.bmp",-1,90)
wait(2)
keypress(74)   
waitms(750)   
keypress(48)
wait(14)
end_if
end_thread

thread(thr2)       
a:
wait(10)
getscreen
if_picture_in(250,780,907,1032,"2.bmp",-1,90)
keypress(76)
else
goto(a)
end_if
end_thread

dramster

  • Герой форума
  • *****
  • Posts: 1134
    • View Profile
Re: Проблема в скрипте
« Reply #1 on: January 28, 2018, 05:38:40 PM »
если это весь код, то
Code: (clickermann) [Select]
thread(thr1)
   getscreen
   if_picture_in(250,780,907,1032,"1.bmp",-1,90)
      wait(2)
      keypress(74)
      waitms(750)
      keypress(48)
      wait(14)  //14 СЕКУНД!!!
   end_if
   waitms(100)
end_thread


wait(10)    //10 СЕКУНД!!!
getscreen
if_picture_in(250,780,907,1032,"2.bmp",-1,90)
   keypress(76)
end_if