 |
|
BANNED
Join Date: Mar 2004
Location: Toronto, Canada
|

04-23-2005
, 21:53
|
#4
|
I've seen it mainly come from messages you send to HL via message_begin() ... message_end() statements.. I am guessing you are sending status text to the screen via StatusText message? Maybe post that bit of code?
I am also guessing you are using message_begin( MSG_ONE, ... ) as the message call? What you are telling HL is to put the message into the Reliable Message Stream which means that if the message fails to send, the HL engine crashes with the error you posted..
What you *should* do (I believe on all messages using MSG_ONE) is use MSG_ONE_UNRELIABLE which simply tells HL not to panic if the message couldn't be sent, and not to crash..
like: message_begin( MSG_ONE_UNRELIABLE, ... )
Also, maybe you are sending the messages too fast?
I hope that helps..
|
|
|
|