-- general configuration data config = {} config.port = 5000 -- port for incoming connections config.min_password_length = 5 -- password must be at least this long config.max_password_tries = 3 -- how many times they can guess the password config.max_output = 1000 -- maximum to send to client at one time config.player_dir = "./players/" config.mudname = "LuaMUD" config.unknown_command = "Huh? Try typing 'help'." -- to create player subdirectories: -- mkdir A B C D E F G H I J K L M N O P Q R S T U V W X Y Z -- messages we want to send messages = {} messages.welcome = "Welcome to Nick's Lua MUD!\n"