Code: Alles auswählen
OpenConsole()
ConsoleTitle ("Chatversuch in console")
ConsoleLocate (13,12)
Print ("Please enter your name: ")
name$=Input()
ClearConsole()
Print ("Chatversuch in console")
InitNetwork()
ConnectionID = OpenNetworkConnection("ip", port)
If ConnectionID=0
PrintN ("Verbindung wurde nicht hergestellt ")
Else
PrintN ("Verbindung wurde hergestellt ")
EndIf
PrintN ("Nachricht ")
message:
nachricht$=Input()
SendNetworkString(ConnectionID, nachricht$ )
Gosub message
return
CloseConsole()
End

