i'm having issues with this on my own server, and i found out what was causing it. whenever i ran these two functions, the file manifest load would freeze.
function RedGateDisappear(%time)
{
for(%i = 1; %i <= $BattleRotator::RedGateCount; %i++)
{
%obj = $BattleRotator::RedGate[%i];
%obj.disappear(%time);
}
}
function RedGateSound()
{
for(%i = 1; %i <= $BattleRotator::RedGateCount; %i++)
{
%obj = $BattleRotator::RedGate[%i];
%obj.playSound("AlarmSound");
}
}
i have no clue why this happens; it is possibly the strangest glitch i've ever seen in a game.
Do you have high latency to the server? Blockland always seems to mess up file downloads when it gets a bunch of out of order packets.
it could have something to do with this, but my server is pretty damn laggy sometimes and that doesn't seem to effect anyone.