Instalează Steam
conectare
|
limbă
简体中文 (chineză simplificată)
繁體中文 (chineză tradițională)
日本語 (japoneză)
한국어 (coreeană)
ไทย (thailandeză)
български (bulgară)
Čeština (cehă)
Dansk (daneză)
Deutsch (germană)
English (engleză)
Español - España (spaniolă - Spania)
Español - Latinoamérica (spaniolă - America Latină)
Ελληνικά (greacă)
Français (franceză)
Italiano (italiană)
Bahasa Indonesia (indoneziană)
Magyar (maghiară)
Nederlands (neerlandeză)
Norsk (norvegiană)
Polski (poloneză)
Português (portugheză - Portugalia)
Português - Brasil (portugheză - Brazilia)
Русский (rusă)
Suomi (finlandeză)
Svenska (suedeză)
Türkçe (turcă)
Tiếng Việt (vietnameză)
Українська (ucraineană)
Raportează o problemă de traducere






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