home *** CD-ROM | disk | FTP | other *** search
/ PC Player 1997 February / PCP0297A.ISO / DEMOS / TOONSTRK / MISC / TOONSTRK.BAT < prev    next >
Encoding:
DOS Batch File  |  1996-11-22  |  538 b   |  27 lines

  1. @echo off
  2.  
  3. if %TEMP%!==! goto notemp1
  4. echo Toonstruck Running>%TEMP%\TOONSTRK.LCK
  5. goto start
  6. :notemp1
  7. if %TMP%!==! goto notmp1
  8. echo Toonstruck Running>%TMP%\TOONSTRK.LCK
  9. goto start
  10. :notmp1
  11. echo Toonstruck Running>C:\TOONSTRK.LCK
  12.  
  13. :start
  14. main toon jump22 %1 %2 %3 %4 %5
  15.  
  16. if %TEMP%!==! goto notemp2
  17. if exist %TEMP%\TOONSTRK.LCK del %TEMP%\TOONSTRK.LCK
  18. goto end
  19. :notemp2
  20. if %TMP%!==! goto notmp2
  21. if exist %TMP%\TOONSTRK.LCK del %TMP%\TOONSTRK.LCK
  22. goto end
  23. :notmp2
  24. if exist C:\TOONSTRK.LCK del C:\TOONSTRK.LCK
  25.  
  26. :end
  27.