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
This mod is compat with ACE3, you can use it (eat meals) through ace interation.
Some missions in We Stand Alone Together - The Men of Easy Company are utilizing this mod.
https://steamcommunity.com/sharedfiles/filedetails/?id=2681518176&tscn=1724139018
Can I play it along with the main campaign?
if so... how to..?
//initServer.sqf
{
[_x, "curatorUnitAssigned", {
params ["_curator", "_player"];
private _owner = owner _player;
missionNamespace setVariable ["KSS_progress_hunger", false, _owner];
missionNamespace setVariable ["KSS_progress_thirst", false, _owner];
}] call BIS_fnc_addScriptedEventHandler;
}forEach allCurators;
потому что у меня ACE?
Жаль что не все Сценарии с его использованием.
probably yes. https://github.com/Kurt212/KSS/blob/master/src/cfgWeapons.hpp
They all inherit from kss_itemcore and they all have subclass KSS.
Been reading your code, but since it's a mod it get's tricky to modify it without a reupload, so here's my problem and the question I have for you
The problem: Both hunger and thirst are only really available to the client, and writing a loop that runs every 10 seconds to do a setVariable to the unit is a cheap way of making these variables available for the server (and everyone else for that matter).
Question: Is it possible to tie these variables to units using setVariable without the need of a locally ran loop? Did I maybe miss some code that already makes these variables public? Thanks!