[MOD] Rise of the Ossian Raider v2.0 and ashipmod
Moderators: Moderators for English X Forum, Scripting / Modding Moderators
-
- Posts: 318
- Joined: Sun, 5. Nov 06, 16:07
Re: [Mod] a ship mod
I'm already on a Taranis. Though the ship was build before 2.2.
Die Nacht ist nur so dunkel, damit man sie besser sieht.
-
- Posts: 116
- Joined: Fri, 21. Feb 14, 21:20
Re: [Mod] a ship mod
You will have to rebuild it, changes to a ship do not apply to ships built before the change. I can confirm a fresh built ship on 2.2 does have the additional stuff.
Looks amazing sco, awesome job!
Looks amazing sco, awesome job!
-
- Posts: 1896
- Joined: Fri, 18. Jul 14, 05:28
Re: [Mod] a ship mod
for update ships, try this code
md/shipmodpatch.xml
md/shipmodpatch.xml
Code: Select all
<mdscript xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="patch_trn" xsi:noNamespaceSchemaLocation="md.xsd">
<cues>
<cue name="patch_shipmod">
<conditions>
<event_game_loaded/>
</conditions>
<actions>
<set_value name="$ship_macros" exact="[
macro.units_size_xl_capital_destroyer_1_macro
macro.units_size_xl_capital_destroyer_2_macro
macro.units_size_xl_red_destroyer_macro
]"/>
<set_value name="$ship_count" exact="0"/>
<set_value name="$patch_count" exact="0"/>
<set_value name="$patching_ships" exact="[]"/>
<do_all exact="$ship_macros.count" counter="$sm">
<find_ship name="$ships" macro="$ship_macros.{$sm}" multiple="true" space="player.galaxy"/>
<set_value name="$ship_count" exact="$ships.count" operation="add"/>
<do_all exact="$ships.count" counter="$s">
<append_to_list name="$patching_ships" exact="$ships.{$s}"/>
<find_object_component name="$components" class="[class.engine, class.weapon, class.turret, class.shieldgenerator]" object="$ships.{$s}" multiple="true"/>
<set_value name="$patch_count" exact="$components.count" operation="add"/>
<do_all exact="$components.count" counter="$c">
<destroy_object object="$components.{$c}" explosion="false"/>
<!-- <debug_text filter="general" text="'Уничтожен модуль %1 на корабле %2 в зоне %3'.[$components.{$c}.knownname, $ships.{$s}.knownname, $ships.{$s}.zone.knownname]"/> -->
</do_all>
</do_all>
</do_all>
<!-- <debug_text filter="general" text="'Уничтожено двигателей: %1 \nПропатчено кораблей %2.'.[$patch_count, $ship_count]"/> -->
</actions>
<cues>
<cue name="Patch_ship_Macro">
<delay exact="5s"/>
<actions>
<do_all exact="$patching_ships.count" counter="$s">
<set_value name="$ship" exact="$patching_ships.{$s}"/>
<!-- <debug_text text="'Пропатчено кораблей - %1 ...'.[$ship.knownname]"/> -->
<patch_macro object="$ship"/>
</do_all>
</actions>
</cue>
</cues>
</cue>
</cues>
</mdscript>
-
- Posts: 318
- Joined: Sun, 5. Nov 06, 16:07
Re: [Mod] a ship mod
Buying a new ship indeed fixed the missing LODs.
Now take your time with the mod, if you somehow manage to get the engines fixed the ship will look even better.
Now take your time with the mod, if you somehow manage to get the engines fixed the ship will look even better.
Die Nacht ist nur so dunkel, damit man sie besser sieht.
-
- Posts: 116
- Joined: Fri, 21. Feb 14, 21:20
Re: [Mod] a ship mod
Did you ever try having the two top L turrets up closer to the superstructure on the balanced version, where the V Launchers normally sit in Rebirth? Thought about adjusting them myself so they are a bit more useful, wasn't sure though if you tried it and they had issues shooting the ship like the underside one did.
-
- Posts: 282
- Joined: Fri, 14. Sep 18, 14:47
Re: [Mod] a ship mod
Thank you for the script, will include it within the next version.alexalsp wrote: ↑Tue, 25. Dec 18, 12:24 for update ships, try this code
md/shipmodpatch.xml
Code: Select all
<mdscript xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="patch_trn" xsi:noNamespaceSchemaLocation="md.xsd"> <cues> <cue name="patch_shipmod"> <conditions> <event_game_loaded/> </conditions> <actions> <set_value name="$ship_macros" exact="[ macro.units_size_xl_capital_destroyer_1_macro macro.units_size_xl_capital_destroyer_2_macro macro.units_size_xl_red_destroyer_macro ]"/> <set_value name="$ship_count" exact="0"/> <set_value name="$patch_count" exact="0"/> <set_value name="$patching_ships" exact="[]"/> <do_all exact="$ship_macros.count" counter="$sm"> <find_ship name="$ships" macro="$ship_macros.{$sm}" multiple="true" space="player.galaxy"/> <set_value name="$ship_count" exact="$ships.count" operation="add"/> <do_all exact="$ships.count" counter="$s"> <append_to_list name="$patching_ships" exact="$ships.{$s}"/> <find_object_component name="$components" class="[class.engine, class.weapon, class.turret, class.shieldgenerator]" object="$ships.{$s}" multiple="true"/> <set_value name="$patch_count" exact="$components.count" operation="add"/> <do_all exact="$components.count" counter="$c"> <destroy_object object="$components.{$c}" explosion="false"/> <!-- <debug_text filter="general" text="'Уничтожен модуль %1 на корабле %2 в зоне %3'.[$components.{$c}.knownname, $ships.{$s}.knownname, $ships.{$s}.zone.knownname]"/> --> </do_all> </do_all> </do_all> <!-- <debug_text filter="general" text="'Уничтожено двигателей: %1 \nПропатчено кораблей %2.'.[$patch_count, $ship_count]"/> --> </actions> <cues> <cue name="Patch_ship_Macro"> <delay exact="5s"/> <actions> <do_all exact="$patching_ships.count" counter="$s"> <set_value name="$ship" exact="$patching_ships.{$s}"/> <!-- <debug_text text="'Пропатчено кораблей - %1 ...'.[$ship.knownname]"/> --> <patch_macro object="$ship"/> </do_all> </actions> </cue> </cues> </cue> </cues> </mdscript>
-
- Posts: 282
- Joined: Fri, 14. Sep 18, 14:47
Re: [Mod] a ship mod
Never tried, do you have a picture of the position you mentioned?unit757 wrote: ↑Wed, 26. Dec 18, 20:22 Did you ever try having the two top L turrets up closer to the superstructure on the balanced version, where the V Launchers normally sit in Rebirth? Thought about adjusting them myself so they are a bit more useful, wasn't sure though if you tried it and they had issues shooting the ship like the underside one did.
Aren't they useful at the current position?
-
- Posts: 116
- Joined: Fri, 21. Feb 14, 21:20
Re: [Mod] a ship mod
Not overly, no. They are sunk to far down to engage anything infront of the ship, so they're limited to broadside and rear targets. My battery of small plasmas at the front usually end up doing the majority of the work.
https://i.imgur.com/yaVOsYx.jpg
The area I'm aiming at, large flat area on both sides at the back of the rear superstructure. Looks big enough to fit the large gun model, Rebirth has a pair of astrobee launchers (not V launchers, sorry) placed there. Provided it doesn't try and shoot itself that spot would give them better coverage.
https://i.imgur.com/yaVOsYx.jpg
The area I'm aiming at, large flat area on both sides at the back of the rear superstructure. Looks big enough to fit the large gun model, Rebirth has a pair of astrobee launchers (not V launchers, sorry) placed there. Provided it doesn't try and shoot itself that spot would give them better coverage.
-
- Posts: 282
- Joined: Fri, 14. Sep 18, 14:47
Re: [Mod] a ship mod
Ah ok, in the battleship variant, there are turrents on this position. Under certain circumstances they will shoot through the hull, but it is to a lesser degree.unit757 wrote: ↑Thu, 27. Dec 18, 23:05 Not overly, no. They are sunk to far down to engage anything infront of the ship, so they're limited to broadside and rear targets. My battery of small plasmas at the front usually end up doing the majority of the work.
https://i.imgur.com/yaVOsYx.jpg
The area I'm aiming at, large flat area on both sides at the back of the rear superstructure. Looks big enough to fit the large gun model, Rebirth has a pair of astrobee launchers (not V launchers, sorry) placed there. Provided it doesn't try and shoot itself that spot would give them better coverage.
-
- Posts: 282
- Joined: Fri, 14. Sep 18, 14:47
Re: [Mod] a ship mod
Version 3.0 with some bug fixes and the Arawn is released.
I am testing with new engines and got a problem, see in this thread viewtopic.php?f=181&t=411370.
Maybe someone has a clue?
I am testing with new engines and got a problem, see in this thread viewtopic.php?f=181&t=411370.
Maybe someone has a clue?
-
- Posts: 318
- Joined: Sun, 5. Nov 06, 16:07
Re: [Mod] a ship mod
Is it intentional that Arawn uses the Paranid XL Bridge?
Die Nacht ist nur so dunkel, damit man sie besser sieht.
-
- Posts: 282
- Joined: Fri, 14. Sep 18, 14:47
-
- Posts: 116
- Joined: Fri, 21. Feb 14, 21:20
Re: [Mod] a ship mod
A bit of a shame, but bridge choice can easily be fixed on the users end.
Little bug on the Arawn, the aft radar behind the bridge is on it's side, looks kinda funny.
https://i.imgur.com/kGjOMSC.jpg
Good job on the ship though! Looks the best of the 3 IMO, the ships larger size helps hide the oversized engines better.
Little bug on the Arawn, the aft radar behind the bridge is on it's side, looks kinda funny.
https://i.imgur.com/kGjOMSC.jpg
Good job on the ship though! Looks the best of the 3 IMO, the ships larger size helps hide the oversized engines better.
-
- Posts: 318
- Joined: Sun, 5. Nov 06, 16:07
Re: [Mod] a ship mod
Ok just one request - DON'T add more weapons to the ship, lol.
Also, is it possible to change the base speed of the ship? Because 200+ m/s feels kinda akward, considering in previous games capital ships would not go faster than 50-80 m/s.
Die Nacht ist nur so dunkel, damit man sie besser sieht.
-
- Posts: 282
- Joined: Fri, 14. Sep 18, 14:47
Re: [Mod] a ship mod
I changed both things in 3.1 and will flight with paranid cockpit on my own version.unit757 wrote: ↑Sun, 30. Dec 18, 21:56 A bit of a shame, but bridge choice can easily be fixed on the users end.
Little bug on the Arawn, the aft radar behind the bridge is on it's side, looks kinda funny.
https://i.imgur.com/kGjOMSC.jpg
Good job on the ship though! Looks the best of the 3 IMO, the ships larger size helps hide the oversized engines better.

-
- Posts: 24
- Joined: Tue, 23. Mar 10, 17:37
Re: [Mod] a ship mod
I think the paranid bridge was a good choice for the more rounded arawn.
Here is my bit about the layout.
The docks in the Arawn are bad.... AI will not be able to use them.
At the top of the internal Docks i was able to clip into the model very easily
please do not group turrets and engines together. bad karma
Here is my bit about the layout.
The docks in the Arawn are bad.... AI will not be able to use them.
At the top of the internal Docks i was able to clip into the model very easily
please do not group turrets and engines together. bad karma
-
- Posts: 282
- Joined: Fri, 14. Sep 18, 14:47
Re: [Mod] a ship mod
Yeah i saw it, but it was a workaround for the hole in the ship.Takei wrote: ↑Sun, 30. Dec 18, 22:47 I think the paranid bridge was a good choice for the more rounded arawn.
Here is my bit about the layout.
The docks in the Arawn are bad.... AI will not be able to use them.
At the top of the internal Docks i was able to clip into the model very easily
please do not group turrets and engines together. bad karma
Why not group turrets and engines? So i save some shield placements.
-
- Posts: 2
- Joined: Sun, 4. Apr 10, 07:06
Re: [Mod] a ship mod
I'm having difficulty getting this mod to work. I have the GOG version of X4. I unpacked the mod files in the extensions directory in my documents folder, and the ships do not load. I then placed it in the extensions folder I created in the Root\game directory and still the ships do not load. Any advise?
-
- Posts: 1896
- Joined: Fri, 18. Jul 14, 05:28
Re: [Mod] a ship mod
X4 Foundations\extensions
-
- Posts: 282
- Joined: Fri, 14. Sep 18, 14:47
Re: [Mod] a ship mod
it should looks like:Vince_K wrote: ↑Mon, 31. Dec 18, 03:17 I'm having difficulty getting this mod to work. I have the GOG version of X4. I unpacked the mod files in the extensions directory in my documents folder, and the ships do not load. I then placed it in the extensions folder I created in the Root\game directory and still the ships do not load. Any advise?
Gamedirectory\extensions\ashipmod\ext_01.cat, ext_01.dat and content.xml