Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
As for the mod version, it's really a big maybe. Currently I don't have time to work on any Arma stuff and after creating mod version of my beam script and partially of my cloak script it's a bit of a headache to manage two separate versions for each script.
TLDR: I want to but it might be a while
2) Will there still be a mod version of this coming out?
I have not tested this and it wasn't intended in the original script but you could try that.
i.e. if you had two lifeboats you would need to do
[lifeboat_1, 1000, true, true] spawn tts_fnc_lifeboat_initLifeboat;
[lifeboat_2, 1000, true, true] spawn tts_fnc_lifeboat_initLifeboat;
A quick way if you have lots of lifeboats is
_lifeboats = [lifeboat_1, lifeboat_2, lifeboat_3, etc...];
{
[_x, 1000, true, true] spawn tts_fnc_lifeboat_initLifeboat;
} forEach _lifeboats;