Instalar Steam
iniciar sesión
|
idioma
简体中文 (chino simplificado)
繁體中文 (chino tradicional)
日本語 (japonés)
한국어 (coreano)
ไทย (tailandés)
Български (búlgaro)
Čeština (checo)
Dansk (danés)
Deutsch (alemán)
English (inglés)
Español de Hispanoamérica
Ελληνικά (griego)
Français (francés)
Italiano
Bahasa Indonesia (indonesio)
Magyar (húngaro)
Nederlands (holandés)
Norsk (noruego)
Polski (polaco)
Português (Portugués de Portugal)
Português-Brasil (portugués de Brasil)
Română (rumano)
Русский (ruso)
Suomi (finés)
Svenska (sueco)
Türkçe (turco)
Tiếng Việt (vietnamita)
Українська (ucraniano)
Comunicar un error de traducción






In ZISHC\functions\curator\sendHeadless.sqf, you would need to change line 4 which is the following.
[CODE] if (_obj isKindOf "LandVehicle" || _obj isKindOf "Air" || _obj isKindOf "Ship") then { [/code]
This checks if the object is a vehicle that should be sent across for processing (basically excludes things like editor objects). Naturally, if you dont want planes, do this instead
[CODE] if (_obj isKindOf "LandVehicle" || _obj isKindOf "Ship") then { [/code]
Yes, all need to run the mod to take full advantage of the features within ZISHC. It is not mandatory of course. If you want to run bare minimum, you can run the mod only on the Server, HC, and curator (Zeus) users computers. If you run it this way, the feature to have newly spawn players added to the visibilty of the curators (Zeus) will not function as intended.
To be clear about this, there should be no performance loss or gain by not running the mod on regular users computers. All of the code is designed to not impact the client computers even in regard to network traffic. The only time a client will run a script is when they respawn (exception being if they are a curator (Zeus) which naturally has to run scripts to send info to the server)
if (!hasInterface) then
{
_count = {local _x} count allUnits;
format["%1: %2", profileName, _count] remoteExec ["systemChat", 0];
};