Advertisement
niel_irc

Untitled

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