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
Your choice of mods doesn't seem problematic to me in that sense.
I have a dream. To test and collect all the ships and stations from Steam and Nexus for 7.60. I'm collecting little by little. Thank you for your help!
it seems like the game could not find the file "ship_spl_s_fighter_02_sent_macro" of this mod. Perhaps this mod is not installed correctly or another mod is overwriting it. Which mods have you installed? Have you changed anything in this mod?
It also appears as though you had installed the Charon mod and then removed it again.
Have you checked your game files for errors?
This is a link to my debug file
https://drive.google.com/file/d/1JrnYc5_p242Gn2E-jy-tU2N-fEvPZxoV/view?usp=sharing
Since this topic is getting bigger and is not really related to this mod, please continue it in the following discussion: https://gtm.steamproxy.vip/workshop/filedetails/discussion/3314332441/4434443737396409858/
I am trying to upgun the early teladi ships because I adore their design, I was thinking of adding gunmounts but that is a lot of work for someone like who barely started modding so I just replaced the s weapon with an M an it kind of works but... I wonder how difficult it would be to setup like 4 guns in the nose of the kestrel and guillermot instead of the one ?
Because they have a big ass nose that the small weapon dont fill at all, it looks stupid. How easy do you think it would be ?
Have a look at the ship_tel_s_scout_01.xml file where you find the weapon-connection as following:
<connection name="con_weapon_01" tags="weapon small standard missile platformcollision combat ">
<offset>
<position x="0" y="-1.55986" z="10.35549"/>
</offset>
</connection>
To rotate the weapon 90°, you need e.g.
<quaternion qw="-0.707107" qx="-0.0" qy="0.0" qz="-0.707107"/>
-->
<connection name="con_weapon_01" tags="weapon small standard missile platformcollision combat ">
<offset>
<position x="0" y="-1.55986" z="10.35549"/>
<quaternion qw="-0.707107" qx="-0.0" qy="0.0" qz="-0.707107"/>
</offset>
</connection>
To rotate 90° in the opposite direction it would be:
<quaternion qw="-0.707107" qx="0.0" qy="-0.0" qz="0.707107"/>