Author Topic: What would happen...  (Read 851 times)

Code: [Select]
function serverCmdLOL(%client)
{
commandToClient(%client, 'LOL');
}

Code: [Select]
function clientCmdLOL()
{
commandToServer('LOL');
}

Would either end crash? Would it even do anything?

i think that the obstacle of having to transfer between the two would prevent an infinite loop crash but i've never tried it

Nothing would happen unless you were to use a tiny packet size in which case things would slow down slightly.

This is exactly how "pinging" works.  Nothing special would happen.

It would just raise your network usage by a tiny amount. Nothing special.