Advertisement
StudiomanRussian

NMT Nightly Build

Dec 21st, 2015
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.75 KB | None | 0 0
  1. -- NMTerminal Nightly Build 1.0-dev.2
  2. -- ;P
  3.  
  4. local argum = {...}
  5.  
  6. version = "1.0-dev.2"
  7. name = "NMTerminal Nightly Build"
  8. namemini = "NMT NB"
  9. codername = "Studioman; in the forum: Doge"
  10. officialcoder = "NeonMedia"
  11. dateofthelatestver = "22/12/2015"
  12. timeofthelatestver = "20:00"
  13.  
  14. function startup()
  15.   term.setTextColor(colors.white)
  16.   term.setBackgroundColor(colors.black)
  17.   term.setCursorPos(1,1)
  18.   term.clear()
  19.   term.setBackgroundColor(colors.blue)
  20.   term.clearLine()
  21.   term.setCursorPos(2,1)
  22.   print(name)
  23.   term.setBackgroundColor(colors.black)
  24.   term.setCursorPos(1,19)
  25.   term.setTextColor(colors.yellow)
  26.   write(shell.dir().."> ")
  27.   term.setTextColor(colors.white)
  28.   cmdline = read()
  29.   settings()
  30. end
  31.  
  32. function settings()
  33.   if cmdline == "cls" then
  34.     term.clear()
  35.     consolerestart()
  36.   elseif cmdline == "help" then
  37.     exec()
  38.     print("cls  help  help craftos  shutdown  ver  exit")
  39.     consolerestart()
  40.   elseif cmdline == "help craftos" then
  41.     exec()
  42.     shell.run("help")
  43.     consolerestart()
  44.   elseif cmdline == "ver" then
  45.     exec()
  46.     print(name.." "..version)
  47.     print("Built in "..dateofthelatestver.." (DD/MM/YYYY) "..timeofthelatestver.." (UTC+7) by "..officialcoder.." ("..codername..")")
  48.     consolerestart()
  49.   elseif cmdline == "shutdown" then
  50.     exec()
  51.     print("Goodbye!")
  52.     sleep(1)
  53.     os.shutdown()
  54.   elseif cmdline == "shutdown /?" then
  55.     exec()
  56.     print("Shutdown 1.0")
  57.     print("All commands:")
  58.     print("/R - restart the computer")
  59.     print("/S, or simply without the key - to turn off the computer")
  60.     consolerestart()
  61.   elseif cmdline == "shutdown /H" then
  62.     exec()
  63.     print("Shutdown 1.0")
  64.     print("All commands:")
  65.     print("/R - restart the computer")
  66.     print("/S, or simply without the key - to turn off the computer")
  67.     consolerestart()
  68.   elseif cmdline == "shutdown /h" then
  69.     exec()
  70.     print("Shutdown 1.0")
  71.     print("All commands:")
  72.     print("/R - restart the computer")
  73.     print("/S, or simply without the key - to turn off the computer")
  74.     consolerestart()
  75.   elseif cmdline == "shutdown /R" then
  76.     exec()
  77.     print("Goodbye!")
  78.     sleep(1)
  79.     os.reboot()
  80.   elseif cmdline == "shutdown /r" then
  81.     exec()
  82.     print("Goodbye!")
  83.     sleep(1)
  84.     os.reboot()
  85.   elseif cmdline == "shutdown /S" then
  86.     exec()
  87.     print("Goodbye!")
  88.     sleep(1)
  89.     os.shutdown()
  90.   elseif cmdline == "shutdown /s" then
  91.     exec()
  92.     print("Goodbye!")
  93.     sleep(1)
  94.     os.shutdown()
  95.   elseif cmdline == "exit" then
  96.     exit()
  97.   elseif cmdline == "die" then
  98.     exec()
  99.     die()
  100.   else
  101.     exec()
  102.     shell.run(cmdline)
  103.     consolerestart()
  104.   end
  105. end
  106.  
  107. function consolerestart()
  108.   term.setCursorPos(1,1)
  109.   term.setBackgroundColor(colors.blue)
  110.   term.clearLine()
  111.   term.setCursorPos(2,1)
  112.   print(name)
  113.   term.setBackgroundColor(colors.black)
  114.   term.setCursorPos(1,19)
  115.   term.setTextColor(colors.yellow)
  116.   write(shell.dir().."> ")
  117.   term.setTextColor(colors.white)
  118.   cmdline = read()
  119.   settings()
  120. end
  121.  
  122. function exec()
  123.   term.setCursorPos(1,18)
  124.   term.setTextColor(colors.green)
  125.   print(shell.dir()..">")
  126.   term.setTextColor(colors.white)
  127. end
  128.  
  129. function die()
  130.   die1()
  131.   sleep(0.1)
  132.   die2()
  133.   sleep(0.1)
  134.   die3()
  135.   sleep(0.1)
  136.   die()
  137. end
  138.  
  139. function die1()
  140.   print("DIE POTATO!")
  141. end
  142.  
  143. function die2()
  144.   print("Who ever wrote the command 'die'?")
  145. end
  146.  
  147. function die3()
  148.   print("Lol.")
  149. end
  150.  
  151. function exit()
  152.   term.clear()
  153.   term.setCursorPos(1,1)
  154. end
  155.  
  156. function colortest()
  157.   if not term.isColor() then
  158.     term.clear()
  159.     term.setCursorPos(1,1)
  160.     print("Oops... Unfortunately you are using a standard PC, to run the "..name.." you need to have an advanced or command computer.")
  161.   else
  162.     startup()
  163.   end
  164. end
  165.  
  166. colortest()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement