Advertisement
Guest User

Pokemap

a guest
Jul 23rd, 2016
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 1.55 KB | None | 0 0
  1. @echo off
  2. title Pokemap
  3. color 0f
  4.  
  5. set username=shrey150
  6. set password=Racecar1
  7.  
  8. :home
  9. cls
  10. echo.
  11. echo """""""""""""""""""""""""""""""""""""""""""""""
  12. echo "  _____      _                               "
  13. echo " |  __ \    | |                              "
  14. echo " | |__) |__ | | _____ _ __ ___   __ _ _ __   "
  15. echo " |  ___/ _ \| |/ / _ \ '_ ` _ \ / _` | '_ \  "
  16. echo " | |  | (_) |   <  __/ | | | | | (_| | |_) | "
  17. echo " |_|   \___/|_|\_\___|_| |_| |_|\__,_| .__/  "
  18. echo "                                     | |     "
  19. echo "                                     |_|     "
  20. echo "                                             "
  21. echo """""""""""""""""""""""""""""""""""""""""""""""
  22. echo.
  23. echo Batch Script by Shrey Pandya
  24. echo http://www.youtube.com/c/ShreyPandya150
  25. echo http://www.twitter.com/shrey150
  26. echo.
  27. echo.
  28. set /p location=Enter location:
  29. set /p range=Enter range:
  30. set /p gymInput=Display Gyms? (Y/N)
  31. if %gymInput% == Y set displayGyms=-dg
  32. if %gymInput% == y set displayGyms=-dg
  33. if %gymInput% == N set displayGyms=
  34. if %gymInput% == n set displayGyms=
  35. set /p stopInput=Display PokeStops? (Y/N)
  36. if %stopInput% == Y set displayStops=-dp
  37. if %stopInput% == y set displayStops=-dp
  38. if %stopInput% == N set displayStops=
  39. if %stopInput% == n set displayStops=
  40. C:\Python27\python example.py -a ptc -u %username% -p %password% -l "%location%" -st %range% -ar 5 %displayGyms% %displayStops%
  41. set /p input=Do you want to search again? (Y/N)
  42. if %input% == Y goto home
  43. if %input% == y goto home
  44. if %input% == N goto exit
  45. if %input% == n goto exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement