[MOD] Capital Ship Bridge

The place to discuss scripting and game modifications for X Rebirth.

Moderators: Scripting / Modding Moderators, Moderators for English X Forum

User avatar
alexalsp
Posts: 1820
Joined: Fri, 18. Jul 14, 05:28
x4

Post by alexalsp » Wed, 1. Feb 17, 18:25

Added adapting for bridges of ships (cwir and mm_shippack modes)

Thank you - Marvin Martian

Steam

Local - https://yadi.sk/d/DI3rTD1OrTXJK

User avatar
Lord Micha
Posts: 118
Joined: Fri, 24. Oct 08, 16:40
x4

Post by Lord Micha » Sun, 5. Feb 17, 19:20

Thank you very much for fixing! :)

Sparky Sparkycorp
Moderator (English)
Moderator (English)
Posts: 8074
Joined: Tue, 30. Mar 04, 12:28
x4

Post by Sparky Sparkycorp » Tue, 14. Mar 17, 15:46

alexalsp wrote:Added adapting for bridges of ships (cwir and mm_shippack modes)

Thank you - Marvin Martian

Steam

Local - https://yadi.sk/d/DI3rTD1OrTXJK
Hi Alex,

Is this the link I should add to page 1 so that people can find the most updated full version of this mod?

Thanks for supporting it.

Sparks

User avatar
alexalsp
Posts: 1820
Joined: Fri, 18. Jul 14, 05:28
x4

Post by alexalsp » Tue, 14. Mar 17, 16:28

Yes, you can add. Thank you.


:) :wink:

caysee[USC]
Posts: 5019
Joined: Sat, 7. Feb 04, 02:47
x4

Post by caysee[USC] » Tue, 14. Mar 17, 16:31

sorry, but my engliosh is not so good but

the undockplaces from the teladiships are to naer by the ship. i pump ever in the ship.
CPU Typ HexaCore Intel Core i5-8600, 3100 MHz ( Boost 43 x 100)
Grafikkarte XFX Radeon RX 580 8 GB GDDR5
Arbeitsspeicher 32614 MB (DDR4 SDRAM)
Motherboard Name Asus ROG Strix H370-F Gaming
Win 10 64 bit

KEINE MODS

Sparky Sparkycorp
Moderator (English)
Moderator (English)
Posts: 8074
Joined: Tue, 30. Mar 04, 12:28
x4

Post by Sparky Sparkycorp » Tue, 14. Mar 17, 17:06

alexalsp wrote:Yes, you can add. Thank you.


:) :wink:
Thanks - added! :)

Sparky Sparkycorp
Moderator (English)
Moderator (English)
Posts: 8074
Joined: Tue, 30. Mar 04, 12:28
x4

Post by Sparky Sparkycorp » Wed, 15. Mar 17, 21:01

Near to the top of the first post in this thread with the version history :)

User avatar
alexalsp
Posts: 1820
Joined: Fri, 18. Jul 14, 05:28
x4

Post by alexalsp » Thu, 16. Mar 17, 12:27

v.2.47

- Added a menu to the engineer left on the ship as a passenger - Repair Skunk. Now you can call the passenger engineer and ask to repair your Skunk.

Armodeus


Steam

Local - https://yadi.sk/d/DI3rTD1OrTXJK

User avatar
alexalsp
Posts: 1820
Joined: Fri, 18. Jul 14, 05:28
x4

Post by alexalsp » Sat, 18. Mar 17, 22:28

V.2.49
Last edited by alexalsp on Sun, 19. Mar 17, 20:08, edited 3 times in total.

User avatar
Observe
Posts: 5079
Joined: Fri, 30. Dec 05, 17:47
xr

Post by Observe » Sat, 18. Mar 17, 23:12

By the way, I must say, this is one amazing mod. Most excellent job! :)

User avatar
alexalsp
Posts: 1820
Joined: Fri, 18. Jul 14, 05:28
x4

Post by alexalsp » Sun, 19. Mar 17, 18:13

Minor fix

Fixed a display bug in unknown systems, message "Sector data not found". ( Armodeus )

Sparky Sparkycorp
Moderator (English)
Moderator (English)
Posts: 8074
Joined: Tue, 30. Mar 04, 12:28
x4

Post by Sparky Sparkycorp » Sun, 19. Mar 17, 18:18

alexalsp wrote:Minor fix

Fixed a display bug in unknown systems, message "Sector data not found". ( Armodeus )
Thank you. Is that part of the V.2.49 download?

User avatar
alexalsp
Posts: 1820
Joined: Fri, 18. Jul 14, 05:28
x4

Post by alexalsp » Sun, 19. Mar 17, 20:07

Sparky Sparkycorp wrote:
alexalsp wrote:Minor fix

Fixed a display bug in unknown systems, message "Sector data not found". ( Armodeus )
Thank you. Is that part of the V.2.49 download?
Yes. Links were not changed.

V.2.49

- Added German voice, text and maps displayed on the bridge of the ship. ( Thank you - SirFrancisDrake)

- Added Russian maps.

Minor fix

Fixed a display bug in unknown systems, message "Sector data not found". ( Armodeus )


Steam

Local - https://yadi.sk/d/DI3rTD1OrTXJK

Armodeus
Posts: 13
Joined: Sun, 31. Jan 16, 09:47

Post by Armodeus » Mon, 27. Mar 17, 12:43

Hey Alexalsp
I think it would be a good idea to be able to call the marine officers into the bridge, just like you call the others, using the "stay on this ship" option. I tested it already.

To do so, create the file: /md/NPC_Marine.XML
with the following inside:

Code: Select all

<?xml version="1.0" encoding="UTF-8"?>
<diff>

	<!-- add command 'Stay on this ship' into dialog -->
	<add sel='//cue[@name="OnBoardComm"]/actions' >
		<do_if value="@player.platform.container.isclass.ship and @player.platform.isplayerowned">
			<add_player_choice text="{88888,100}" section="cMarine_stayhere" position="top_right" comment="Stay on this ship"/>
		</do_if>
	</add>

	<!-- logic to put actor on the ship -->
	<add sel='//cue[@name="SectionHandler"]/actions/do_else' pos="before" >
		<do_elseif value="event.param == 'cMarine_stayhere'">
			<add_npc_line line="1012" view="facenormal" comment="Yes sir" />
            <set_value name="$container" exact="player.platform.container" />
            <signal_cue_instantly cue="md.NPC_Staff.LogAssignedToObject" param="[$actor, $container]" />				
			<add_actor_to_platform actor="$actor" dockingbay="player.platform" />
			<do_if value="player.primaryship.boardingnpc == $actor">
				<abort_scripts entity="$actor" />
				<do_if value="$actor.iscontrolentity">
					<dismiss_control_entity object="player.primaryship" actor="$actor" />
				</do_if>
			</do_if>
			<play_cutscene key="'LeavePlayerShip'">
				<param name="npcref" object="$actor" />
            </play_cutscene>
			<remove_value name="$container" />
		</do_elseif>			
	</add>

</diff>
Last edited by Armodeus on Tue, 28. Mar 17, 00:28, edited 1 time in total.

User avatar
alexalsp
Posts: 1820
Joined: Fri, 18. Jul 14, 05:28
x4

Post by alexalsp » Mon, 27. Mar 17, 17:41

minor updates

- added menu Stay on this ship, for marine officers. ( Armodeus )




Steam

Local - https://yadi.sk/d/DI3rTD1OrTXJK

Browser_ice
Posts: 485
Joined: Sun, 5. Feb 06, 17:15
x4

Post by Browser_ice » Tue, 28. Mar 17, 01:00

Hi, is it just me or do all NPC on any bridges have their keyboard position wrong ?

They are typing like a few inches in front the keyboard, in mid air.

Sometimes when they want to just lean on the equipment, they lean against mid air.

I know this is how the animation is done but the keyboard/desk is too far from their siting animations.
Steam X-Superbox, XR, playing X4
WIndows-10
Intel I7-3770
16Gb Memory
Nvgidia GTX-1060

User avatar
alexalsp
Posts: 1820
Joined: Fri, 18. Jul 14, 05:28
x4

Post by alexalsp » Sat, 29. Apr 17, 22:00

Capital Ship Bridge - addon pack - 2.50
Last edited by alexalsp on Sun, 30. Apr 17, 23:21, edited 2 times in total.

AntoineS
Posts: 34
Joined: Fri, 21. Oct 05, 14:15
x3tc

Post by AntoineS » Sun, 30. Apr 17, 11:10

Can someone please provide a link to a english site where i can donwload this mod for a gog installation.

Thanks in advance.

User avatar
alexalsp
Posts: 1820
Joined: Fri, 18. Jul 14, 05:28
x4

Post by alexalsp » Sun, 30. Apr 17, 12:50

AntoineS wrote:Can someone please provide a link to a english site where i can donwload this mod for a gog installation.

Thanks in advance.
Click the button СКАЧАТЬ

http://savepic.ru/13752934.jpg


https://drive.google.com/drive/folders/ ... sp=sharing

User avatar
alexalsp
Posts: 1820
Joined: Fri, 18. Jul 14, 05:28
x4

Post by alexalsp » Sun, 30. Apr 17, 23:48

Capital Ship Bridge - addon pack - 2.50


The material is provided by the pilot - SirFrancisDrake. Thank you very much for that.

Creating addons - alexalsp / Vanfim

This version, Capital Ship Bridge Mod (transcend and lost colony), is slightly modified for the use of addons.

Only a small code is added to the md script. Does not affect the work of the mod.

It can also be used, without any add-ons.


========================================

1) litauen_capital_ship_bridge_4.10_for_addons.rar - Compatibility with XRebirth 4.10

2) litauen_capital_ship_bridge_addon_lostsectors.rar - Maps - English, German, Russian

3) litauen_capital_ship_bridge_addon_transcend.rar - Maps - English, German, Russian

Addons for mods

If you do not use the mods from the list below, you do not need to download these files. The mode (capital ship bridge 2.50 ) itself does not contain any functional changes.

2) Transcend - No Highways

3) X Rebirth Lost Sectors

=========================================

https://drive.google.com/drive/folders/ ... sp=sharing

=========================================

Changes:

- Added Russian charts for addon lostsectors

Post Reply

Return to “X Rebirth - Scripts and Modding”