Advertisement
poulton0

Untitled

Dec 12th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. @echo off
  2. set /a c=1
  3. set /a m=1
  4. set /a a=100
  5. :start
  6. @echo --------------Clicker-Game--------------
  7. @echo Click's: %c% Multiplyer: %m% price: %a%
  8. @echo ----------------By-Twig-----------------
  9. pause
  10. set /a c=%c%+1
  11. cls
  12. if %c% GEQ %a% goto upgrade
  13. if %m% GEQ 1 goto multi
  14. :multi
  15. set /a c=%c%+%m%
  16. goto start
  17. :upgrade
  18. set /a m=%m%+1
  19. set /a a=%a%*%a%/(%a%-(%a%/9))
  20. set /a c=%c%-%c%
  21. goto start
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement