Posted 20 November 2014 - 02:05 AM
I've started work on a simple chat system for my faction in Tekkit. I am trying to set-up a system where you login with any nickname you chose then it enters you to a live chat hosted on a network system (A couple computers in a back room).
Is it possible to enter a name variable between text being printed?
Also I'd love to hear any ideas for how to fluently run the login server for the wireless chat
Is it possible to enter a name variable between text being printed?
print("Welcome to the chat server!")
print("Please enter your nickname ")
name = read()
print("Connecting "..name" to the chat server")
I'm having errors thrown at me once I add extra quoted text after the ..name variable.Also I'd love to hear any ideas for how to fluently run the login server for the wireless chat