import_code("/root/deadlockbuild/libs/chat.src")
import_code("/root/deadlockbuild/libs/chatform.src")
ChatForm.chat = new Chat
ChatForm.chat.init()
while true
clear_screen
message = user_input(ChatForm.user["name"] + " > ")
if message.replace(" ", "") == 0 then continue
ChatForm.send_message(message.trim)
end while