Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.40 KB | None | 0 0
  1. notes_array = []
  2.  
  3. for i in range(5):#500 notes will be drawn
  4.     dev.tap(1953,1324) #no ID on draw bnt to make sure notes will be drawn
  5.     print Notes.RandomTap(340,2400,400,1100).tap(dev)
  6.     notes_array.append(Notes.RandomTap(340,2400,400,1100))#PR area
  7.     dev.sleep(500)#need th
  8.     print notes_array[0]
  9. dev.tap(1753,1324)
  10. notes_array[0].tap(dev)#PR area
  11. dev.sleep(500)
  12. print notes_array[0]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement