Advertisement
niel_irc

Untitled

Sep 11th, 2013
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. #!/bin/bash
  2. #Mod lister 0.7.2
  3. #pastebin
  4. api_dev_key = '24cd4ce03eac5f56cd252af7abbfdb50';
  5.  
  6. #Configuration Change it to whatever you want
  7. MINECRAFT_VERISON=/home/niel/.minecraft/versions
  8. MINECRAFT_MODS=/home/niel/.minecraft/mods
  9.  
  10. #intro
  11. sleep 3
  12. echo --------------[]-+Minecraft Mod Printer+-[]--------------
  13. echo ---------------------made by niel------------------------
  14. ec=-ho
  15. sleep 3
  16.  
  17.  
  18. #Changes the directory to the minecraft versions
  19. cd $MINECRAFT_VERISON
  20. echo getting mods from $MINECRAFT_MODS
  21. #Prints the versions
  22. echo Minecraft Versions
  23. dir
  24.  
  25. sleep 3
  26. #Prints Minecraft Mods
  27. cd $MINECRAFT_MODS
  28. echo Minecraft Mods
  29. dir
  30.  
  31. exit 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement