SpaceTown-Developers / Lemon-Gate

Expression Advanced a Lua sub language.
Other
15 stars 5 forks source link

Client overflowed reliable channel. #216

Closed guillaume-dorczynski closed 10 years ago

guillaume-dorczynski commented 10 years ago

Tried to write a for loop like this:

for ( number I = 1; I < 200; I++ )
{
    for ( number J = 1; J < 200; J++ )
    {
        print( I, J )
    }
}

Kicked me from server with this error:

Dropped Ganja Farmer from server (Client 0 overflowed reliable channel.)
Rusketh commented 10 years ago

Every print sends a message from the server to the client using the source engines way of doing things. What your doing is queuing up so much data to be sent that the server and the client can not Handel it. This is not a bug, this is just your code overflowing the reliable channel.

guillaume-dorczynski commented 10 years ago

Ok, well I think I will stay away from lemongate for a while...

adamnejm commented 10 years ago

I'm moving to Starfall now :-1: