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
If there is enough demand and the author not willing to fix I can release a fixed mod to the workshop for people to use.
You need to add these to the config.bin file. The Cfgslots is present in the config file but needs to be edited. CfgNonAiVehicles section was not even present in config file so it must be added.
You will also need to change the model = "TACSAT_Radio\data\RADIO\TACSAT_Battery.p3d" line to match your new folder path
class CfgSlots
{
class Slot_TACSATBattery
{
name="TACSATBattery";
displayName="TACSAT Battery";
//selection="TACSATBattery"; <---------- comment this line
ghostIcon="missing";
// stackMax=1; <----------- comment this one too
};
};
class CfgNonAIVehicles
{
class ProxyTACSATBattery: ProxyAttachment
{
scope = 2;
inventorySlot[] = {"TACSATBattery"};
model = "TACSAT_Radio\data\RADIO\TACSAT_Battery.p3d";
};
};