Advertisement
Guest User

Pokemon Level Up - Code

a guest
Dec 7th, 2019
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. ######################NECESSARY######################
  2.  
  3. #pip install pyautogui
  4. #pip install pynput
  5.  
  6. #####################################################
  7.  
  8. import time
  9. import pyautogui
  10. from pynput.keyboard import Key, Controller
  11.  
  12. keyboard = Controller()
  13.  
  14. pokemonlevelup = """
  15. ___ _ __ _
  16. / _ \___ | | _____ _ __ ___ ___ _ __ / / _____ _____| |/\ /\ _ __
  17. / /_)/ _ \| |/ / _ \ '_ ` _ \ / _ \| '_ \ / / / _ \ \ / / _ \ / / \ \ '_ \
  18. / ___/ (_) | < __/ | | | | | (_) | | | / /__| __/\ V / __/ \ \_/ / |_) |
  19. \/ \___/|_|\_\___|_| |_| |_|\___/|_| |_\____/\___| \_/ \___|_|\___/| .__/
  20. |_|
  21. ! Pokemon Level Up ! - Created by: © Shuk
  22. """
  23. print(pokemonlevelup)
  24. input('[Console] Press enter for Start PokemonLevelUp.')
  25. print('[Console] PokemonLevelUp will Start in 5 Seconds!')
  26. time.sleep(5)
  27. print('[Console] PokemonLevelUp Started!')
  28. msg = ('a')
  29. while 1:
  30. for word in msg:
  31. keyboard.press(word)
  32. keyboard.release(word)
  33.  
  34. pyautogui.press('enter')
  35. time.sleep(0.76)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement