Fixes Host_Error crashes that started after the Scout update.
Das Addon String Table Blocker behebt das Problem mit dem Host_Error
-Absturz, der seit dem Scout-Update vorkommt. Es handelt sich um ein Valve Server Plugin
. Es wird kein Metamod: Source benötigt. Es handelt sich um die erste Version und es ist noch mit Fehlern zu rechnen. Es gab aber schon ein paar positive Rückmeldungen in der HLDS-Mailing-List.
Quelle: mail-archive.com
It works by removing a bunch of stuff from the string tables. The goal of this
is to remove enough stuff so that a client can connect without causing an
overflow when the server tries to send the client all of the string tables. By
default, it will remove almost all scene (vcd) files and defer all of them from
being added until use. The taunt scenes will be removed which will break taunts.
This can be controlled by one of the CVARs. Adding taunts back in may or may not
cause an overflow message and hasn't been thoroughly tested.
Update: Mittlerweile hat Valve ein Update herausgebracht, was diesen Bug beseitigen soll.
Nach dem Entpacken von sop_stb_1.zip
muss die Datei sop_stb.vdf
und das Verzeichnis sop_stb
nach ./tf/addons/
auf den Server hoch geladen werden. Der Linux-Server benötigt die Datei sop_stb_i486.so
und der Windows-Server benötigt die Datei sop_stb.dll
.
Nach dem Neustart sollte das Plugin geladen werden. Dies kann mittels plugin_print
überprüft werden. Das Addon kann aber auch zur Laufzeit mit folgendem Befehl geladen werden:
plugin_load ../tf/addons/sop_stb/bin/sop_stb
Nach einem Mapchange ist das Plugin dann aktiv.
Um das Plugin zu steuern, gibt es ein paar Befehle und Konsolen-Variablen.
Konsolen-Variable | Erläuterung |
---|---|
stb_blocktaunts | Blocks taunts from being processed. (defaults to on) |
stb_blockunused | Blocks unused table entries. Should always be enabled. (defaults to on) |
stb_cutspy | Blocks spy scene table entries. (defaults to on) |
stb_cutvoicemenu | Blocks all vcd related to voice menu and responses. (defaults to on) |
stb_deferallscenes | Doesn't enter scene table entries until use. (defaults to on) |
stb_verbose | Displays messages to console when action is taken. (defaults to off) |