Installer Steam
log på
|
sprog
简体中文 (forenklet kinesisk)
繁體中文 (traditionelt kinesisk)
日本語 (japansk)
한국어 (koreansk)
ไทย (thai)
Български (bulgarsk)
Čeština (tjekkisk)
Deutsch (tysk)
English (engelsk)
Español – España (spansk – Spanien)
Español – Latinoamérica (spansk – Latinamerika)
Ελληνικά (græsk)
Français (fransk)
Italiano (italiensk)
Bahasa indonesia (indonesisk)
Magyar (ungarsk)
Nederlands (hollandsk)
Norsk
Polski (polsk)
Português (portugisisk – Portugal)
Português – Brasil (portugisisk – Brasilien)
Română (rumænsk)
Русский (russisk)
Suomi (finsk)
Svenska (svensk)
Türkçe (tyrkisk)
Tiếng Việt (Vietnamesisk)
Українська (ukrainsk)
Rapporter et oversættelsesproblem






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];
};