Advertisement
Guest User

Untitled

a guest
Jul 29th, 2016
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1. @echo off
  2.  
  3. set PATH_TO_CONFIGS=C:\bot\3.3\Configs\
  4. set PATH_TO_BOT1=C:\bot\3.3\Release
  5.  
  6.  
  7. :start
  8. cls
  9. color a
  10. echo Choose what bot have to do:
  11. echo 1. EXPING
  12. echo 2. SNIPING DRATINIS
  13. echo 3. SNIPING MAGIKARPS
  14. echo CHOICE:
  15. CHOICE /C:123 /N
  16. IF ERRORLEVEL 3 GOTO loop3
  17. IF ERRORLEVEL 2 GOTO loop2
  18. IF ERRORLEVEL 1 GOTO loop1
  19.  
  20.  
  21. :loop1
  22. cd "%PATH_TO_CONFIGS%"
  23. copy /y config.json_massXP "%PATH_TO_BOT1%\Config\config.json"
  24.  
  25.  
  26. cls
  27. color b
  28. echo EXPING
  29. cd "%PATH_TO_BOT1%"
  30. start NecroBot.exe
  31.  
  32.  
  33. TIMEOUT /T 1800
  34.  
  35. taskkill /f /im NecroBot.exe
  36.  
  37. cd "%PATH_TO_CONFIGS%"
  38.  
  39. copy /y config.json_massBALLS "%PATH_TO_BOT1%\Config\config.json"
  40.  
  41. cls
  42. color b
  43. echo FARMING POKEBALLS
  44. cd "%PATH_TO_BOT1%"
  45. start NecroBot.exe
  46.  
  47.  
  48. TIMEOUT /T 900
  49.  
  50. taskkill /f /im NecroBot.exe
  51.  
  52. goto loop1
  53.  
  54.  
  55. :loop2
  56. cd "%PATH_TO_CONFIGS%"
  57. copy /y config.json_dratini "%PATH_TO_BOT1%\Config\config.json"
  58. copy /y /f DRATINI.GPX "%PATH_TO_BOT1%\DRATINI.GPX"
  59.  
  60. cls
  61. color b
  62. echo SNIPING DRATINIS
  63. cd "%PATH_TO_BOT1%"
  64. start NecroBot.exe
  65.  
  66.  
  67. TIMEOUT /T 900
  68.  
  69. taskkill /f /im NecroBot.exe
  70.  
  71. cd "%PATH_TO_CONFIGS%"
  72.  
  73. copy /y config.json_massBALLS "%PATH_TO_BOT1%\Config\config.json"
  74.  
  75. cls
  76. color b
  77. echo FARMING POKEBALLS
  78. cd "%PATH_TO_BOT1%"
  79. start NecroBot.exe
  80.  
  81. TIMEOUT /T 300
  82.  
  83. taskkill /f /im NecroBot.exe
  84.  
  85. goto loop2
  86.  
  87. :loop3
  88. cd "%PATH_TO_CONFIGS%"
  89. copy /y config.json_magikarp "%PATH_TO_BOT1%\Config\config.json"
  90. copy /y MAGIKARP.GPX "%PATH_TO_BOT1%\MAGIKARP.GPX"
  91.  
  92. cls
  93. color b
  94. echo SNIPING MAGIKARPS
  95. cd "%PATH_TO_BOT1%"
  96. start NecroBot.exe
  97.  
  98.  
  99. TIMEOUT /T 900
  100.  
  101. taskkill /f /im NecroBot.exe
  102.  
  103. cd "%PATH_TO_CONFIGS%"
  104.  
  105. copy /y config.json_massBALLS "%PATH_TO_BOT1%\Config\config.json"
  106.  
  107. cls
  108. color b
  109. echo FARMING POKEBALLS
  110. cd "%PATH_TO_BOT1%"
  111. start NecroBot.exe
  112.  
  113.  
  114. TIMEOUT /T 300
  115.  
  116. taskkill /f /im NecroBot.exe
  117.  
  118. goto loop3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement