The simple file storage is good as I don't have to store a lot of data.
I looked at the Asteroid Blast code and it looks straight forward enough.
The "Server" you talk about, can this simply be any server that is listening on a port?
e.g If I create a simple server in C++ or C# that listens on 192.169.200.100 port 5000 then can I simply use:
JoinNetwork("192.169.200.100", 5000, c$)
//blah blah
msg = CreateNetworkMessage()
AddNetworkMessageString(msg, optInitials$)
SendNetworkMessage(iNetID, sid, msg)
(Or something similar to this)
To send the data to this server???
If, so this would be great.