Guest User

Untitled

a guest
Jun 23rd, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. print("Welcome to InterChat v1!")
  2. print("Please specify the side to which")
  3. print("you hooked up your bundled cable.")
  4. print("Possible front, left, right, top")
  5. print(", bottom, and back.")
  6. x=read()
  7. term.write("Side:")
  8. rednet.open(x)
  9. term.clear()
  10. print("What would you like to do? Listen or broadcast?")
  11. print("-OPTIONS-")
  12. print("listen")
  13. print("broadcast")
  14. if read()=="listen"
  15. then rednet.receive(5)
  16. elseif read()=="broadcast"
  17. then <I need to put something there that will yeild the program to allow me to input the message I
  18. want to broadcast>
  19. else print("Invalid option")
  20. repeat until read()=="exit"
  21. end
Add Comment
Please, Sign In to add comment