Total Members Voted: 152
Abandoned hotel, structure only for nowFor thoses who know: заброшенная гостиница "Парус"[img]snip/img]I decided to cut the Y a bit, because 1, it didnt look good in bl, 2, it was too big for the city itself, made in 4 hours[img]snip/img]
Testing a few things on heed's server with ~40 players. What we've done:1) Change size of blobchunkevent from 450 to 400 (edited exe, link here if someone else wants to test);2) Run a script to periodically un-stuck clients with the missing packet bug (this is only a hack and you need to find the actual problem)function fastPacketFixLoop(%bool){ cancel($FastPacketFixSchedule); $Pref::Net::FastPackets = %bool; if(%bool) $FastPacketFixSchedule = schedule(8000, 0, fastPacketFixLoop, !%bool); else $FastPacketFixSchedule = schedule(600, 0, fastPacketFixLoop, !%bool);}fastPacketFixLoop(true);So far1) people have stopped complaining about loading freezes2) the server has stopped crashing with runtime errorsThis might be getting somewhere ?!
function fastPacketFixLoop(%bool){ cancel($FastPacketFixSchedule); $Pref::Net::FastPackets = %bool; if(%bool) $FastPacketFixSchedule = schedule(8000, 0, fastPacketFixLoop, !%bool); else $FastPacketFixSchedule = schedule(600, 0, fastPacketFixLoop, !%bool);}fastPacketFixLoop(true);
You can do it like this:1) Download the modified Blockland.exe and overwrite the current one2) Right click it, go to properties and set it as read-only (to bypass launcher)3) Copy the script4) Paste it in config/main.cs (if the file exists, just paste it after what is already in it)