Crash in Net_SvProcessPackets: MsgPlace+=1 when I try type something in the chat as client. The server can chat and the messages are vissible in the server and all client windows.

I can send simple var from client to server and it update on all clients, but only if I disable the chat on clientside for a moment.(i'm not advanced c-script):

Code:
var aNumber = 0; 
PANEL Show_The_Number
{
digits (500, 25, "aNumber = %.0f", _a4font, 1, aNumber);
flags = VISIBLE;
}
function AddNumber()
{
aNumber+=1;
Net_ClSendVar( "aNumber", 1 ); // 0 = send only to server 1 = send to server and all clients
}
on_n = AddNumber;




smile