So here is the basic setup: I have a Python server, that when the command "curmap//" is sent, it sends back the coordinates of all players attached to the server. It does this in the main game loop, like so:
For some reason, in the updateMap() method, it freezes at print ReadLine(stream). Any idea why? I've checked, and the server is properly fulfilling the request...
Thanks!
foosh
While Not KeyDown(Key_ESCAPE) network.updateMap() Wend
For some reason, in the updateMap() method, it freezes at print ReadLine(stream). Any idea why? I've checked, and the server is properly fulfilling the request...
Method updateMap() Local dataSend:String Print "Requesting data..." dataSend = "curmap//" Print "Sending request..." WriteLine(stream,dataSend) Print "Retrieving data..." Print ReadLine(stream) End Method
Thanks!
foosh