Guest User

Untitled

a guest
Feb 19th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. TITLE RSBuddy Scripts
  2.  
  3. SET cc=javac
  4. SET scripts=Scripts
  5.  
  6. CALL FindJDK.bat
  7.  
  8. IF NOT EXIST %scripts%\*.java (
  9. ECHO No .java script source files found.
  10. GOTO end
  11. )
  12.  
  13. ECHO Compiling scripts
  14. ECHO. > "%scripts%\.class"
  15. DEL /F /Q "%scripts%\*.class" > NUL
  16. "%cc%" -cp RSBuddy.jar %scripts%\*.java
  17.  
  18. :end
  19. PAUSE
  20. EXIT
  21.  
  22.  
  23. TITLE RSBuddy -dev
  24. java -cp RSBuddy.jar com.rsbuddy.RSBuddy -dev
  25. EXIT
Add Comment
Please, Sign In to add comment