Guest User

Untitled

a guest
Jun 24th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. local running = true
  2.  
  3. while running do
  4. print("What do you need help with? Also, to exit, hold ctrl T until the program is terminated.")
  5. input = read():lower()
  6. if input == "scripting" then print("I cannot help with specific codes, so please refer to the Minecraft Forum's search tool")
  7. elseif input == "no such program" then print ("That means that the program you wanted to open is not on this computer")
  8. elseif input == "what are your commands" then print ("You obviously didn't read all of the topic, please find the topic and read the Commands section")
  9. elseif input == "quit" then running = false
  10. else
  11. print ("Command not recognised. Accepted commands are Scripting, No such program, What are your commands and Quit.")
  12. end
  13. end
Add Comment
Please, Sign In to add comment