[MOD] Unoffical Patch : V1.3.15 : 2024-03-31

The place to discuss scripting and game modifications for X³: Farnham's Legacy

Moderators: Moderators for English X Forum, Scripting / Modding Moderators, Moderators for the X3:FL Forums

Post Reply
User avatar
ubuntufreakdragon
Posts: 5198
Joined: Thu, 23. Jun 11, 14:57
x4

Re: [MOD] Unoffical Patch : V1.3.7 : 2023-05-01

Post by ubuntufreakdragon » Tue, 2. May 23, 20:47

looked up the included turretfixes, there is one mistake in line 706

Code: Select all

  * Don't shoot civilians
    if [THIS] -> is of class Big Ship
      if $Target -> is of class Astronaut
  *$Dummy1 = [THIS] -> get attack target
  *if not $Target == $Dummy1
        $Dummy1 = [THIS] -> get incoming marines
        skip if is datatype[ $Dummy1 ] == DATATYPE_ARRAY
          continue
        skip if find $Target in array: $Dummy1
          continue
  *end
      end
    end
should be

Code: Select all

  * Don't shoot civilians
  if $Target -> is of class Astronaut
    skip if [THIS] -> is of class Big Ship
      continue
  *$Dummy1 = [THIS] -> get attack target
  *if not $Target == $Dummy1
      $Dummy1 = [THIS] -> get incoming marines
      skip if is datatype[ $Dummy1 ] == DATATYPE_ARRAY
        continue
      skip if find $Target in array: $Dummy1
        continue
  *end
    end
 
The point of the code is to exclude civil space suits as targets.

Also should check SS_LASER_PD again, 2600 is not dividable by 3 my number was 2520, I bet the player station will produce batches of size 3 Plasma Burst Generators. The next larger working number should be 2640.
My X3 Mods

XRebirth, things left to patch:
In General; On Firing NPC's; In De Vries; Out Of Zone; And the Antiwishlist


Cycrow
Moderator (Script&Mod)
Moderator (Script&Mod)
Posts: 22227
Joined: Sun, 14. Nov 04, 23:26
x4

Re: [MOD] Unoffical Patch : V1.3.7 : 2023-05-01

Post by Cycrow » Wed, 3. May 23, 20:07

German and Russian texts have been included

Jimmy C
Posts: 1131
Joined: Tue, 17. Jul 12, 02:50
x3tc

Re: [MOD] Unoffical Patch : V1.3.7 : 2023-05-01

Post by Jimmy C » Sun, 7. May 23, 20:03

Request for fix. HSAPs should have a 10km exclusion zone around them where asteroids will not be spawned, to avoid this problem. It'd be nice if it can fix existing saves as well as preventing the problem at game starts.

EDIT: Adding to my post. Every asteroid spawn in a HSAP should have a 10km exclusion zone where no other asteroids will spawn. I have a cluster of six rocks so close together that putting a mine on any two of them will cause overlap.

User avatar
Joubarbe
Posts: 4796
Joined: Tue, 31. Oct 06, 12:11
xr

Re: [MOD] Unoffical Patch : V1.3.7 : 2023-05-01

Post by Joubarbe » Sat, 13. May 23, 13:41

Bug: the Phased Repeater Gun has no context menu. Cannot hit "i" neither.

Cycrow
Moderator (Script&Mod)
Moderator (Script&Mod)
Posts: 22227
Joined: Sun, 14. Nov 04, 23:26
x4

Re: [MOD] Unoffical Patch : V1.3.7 : 2023-05-01

Post by Cycrow » Sat, 13. May 23, 18:08

It seems to work fine for me. Make sure its been unlocked in the encyclopaedia. If it hasn't, then it wont open the page to it

User avatar
Joubarbe
Posts: 4796
Joined: Tue, 31. Oct 06, 12:11
xr

Re: [MOD] Unoffical Patch : V1.3.7 : 2023-05-01

Post by Joubarbe » Sat, 13. May 23, 18:32

Well, I've just reloaded and now it works :)

Cycrow
Moderator (Script&Mod)
Moderator (Script&Mod)
Posts: 22227
Joined: Sun, 14. Nov 04, 23:26
x4

Re: [MOD] Unoffical Patch : V1.3.8 : 2023-05-15

Post by Cycrow » Mon, 15. May 23, 22:37

New Update: 1.3.8:
  • Fixed Autopilot: Collect on astronauts
  • Fixed Argon stations in Split space
  • Fixed blank message in station building service
  • Fixed readtext error in station building service
  • Fixed plot mission givers being hidden
  • Added Plot Assistance (Plot Guide for new players)
  • Added Custom option selections (add options to gameplay options menu)
  • Added object info menu overrides
  • Added additional help items to Encyclopedia
  • Added switch tab hotkey (default: Tab)
  • Added key id to register hotkey commands (for fixed position hotkeys)
  • Added Buy/sell/equip filter to trade menu in Docks
  • Added custom start file selection when loading

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

Re: [MOD] Unoffical Patch : V1.3.8 : 2023-05-15

Post by alexalsp » Tue, 16. May 23, 16:03


Cycrow
Moderator (Script&Mod)
Moderator (Script&Mod)
Posts: 22227
Joined: Sun, 14. Nov 04, 23:26
x4

Re: [MOD] Unoffical Patch : V1.3.8 : 2023-05-15

Post by Cycrow » Tue, 16. May 23, 20:47

Russian Text included

User avatar
weralxet
Posts: 16
Joined: Sat, 13. May 23, 22:11
x3fl

Re: [MOD] Unoffical Patch : V1.3.8 : 2023-05-15

Post by weralxet » Wed, 17. May 23, 23:02

I know it most likelly were mentioned.

When i run the patch - it asks for REUNION directory.

And in Steam - FL is in TC directory, separated from REUNION.

Any hints for some person who dont want to be John Week of Information Technologies?

Cycrow
Moderator (Script&Mod)
Moderator (Script&Mod)
Posts: 22227
Joined: Sun, 14. Nov 04, 23:26
x4

Re: [MOD] Unoffical Patch : V1.3.8 : 2023-05-15

Post by Cycrow » Wed, 17. May 23, 23:49

It sounds like you habe the plugin manager from Reunion installed.

Make sure you are using the current plugin manager, 1.63

Betelgeuse97
Posts: 287
Joined: Sat, 20. Aug 11, 17:27
x4

Re: [MOD] Unoffical Patch : V1.3.4 : 2022-11-06

Post by Betelgeuse97 » Thu, 18. May 23, 07:23

Cycrow wrote:
Sat, 12. Nov 22, 12:29
Do you have any other mods ?

The buster is the default ship if the selected ship is missing/invalid. Which would suggest its not in the TShips file.
have you checked in game to see if the Thor Prototype is in game, ie via the Cheat Menu?
Sorry for the very late reply; I just got back into X3FL after a long hiatus.

1. Yes, I'm playing with FLXRM (latest release as of April 23) and TC/AP plots mod. I'm also on the latest version for the unofficial patch.
2. No, I've not checked that yet. How do I open and check it via the cheat menu?

-XeNoN-
Posts: 373
Joined: Tue, 6. Mar 12, 12:04
x4

Re: [MOD] Unoffical Patch : V1.3.4 : 2022-11-06

Post by -XeNoN- » Thu, 18. May 23, 10:31

Betelgeuse97 wrote:
Thu, 18. May 23, 07:23
Cycrow wrote:
Sat, 12. Nov 22, 12:29
Do you have any other mods ?

The buster is the default ship if the selected ship is missing/invalid. Which would suggest its not in the TShips file.
have you checked in game to see if the Thor Prototype is in game, ie via the Cheat Menu?
Sorry for the very late reply; I just got back into X3FL after a long hiatus.

1. Yes, I'm playing with FLXRM (latest release as of April 23) and TC/AP plots mod. I'm also on the latest version for the unofficial patch.
2. No, I've not checked that yet. How do I open and check it via the cheat menu?
That should be fixed in the upcoming 1.3.8 patch of FLXRM

olsch
Posts: 60
Joined: Mon, 24. May 21, 19:37
x3ap

Re: [MOD] Unoffical Patch : V1.3.8 : 2023-05-15

Post by olsch » Thu, 18. May 23, 22:52

Just a little nitpick here: I've got version 1.3.8 installed, but the button in the Plugin Manager still says "Run: X3 ... V1.3.7"
(German Version)

User avatar
N8M4R3
Moderator (Script&Mod)
Moderator (Script&Mod)
Posts: 401
Joined: Fri, 24. Nov 06, 15:48
x4

Re: [MOD] Unoffical Patch : V1.3.8 : 2023-05-15

Post by N8M4R3 » Thu, 18. May 23, 23:14

olsch wrote:
Thu, 18. May 23, 22:52
Just a little nitpick here: I've got version 1.3.8 installed, but the button in the Plugin Manager still says "Run: X3 ... V1.3.7"
(German Version)
This hints that new german Texts for 1.3.8 are not yet included and there can be ReadText errors in game. I'm on that translation and it will be available soon. When the german toppic from Unoffical Patch gets updated or it is mentioned here, it will be available.
Neue Erweiterung für X3 verfügbar: Farnham's Legacy | +Optional: weitere Verbesserungen im inoffiziellen Patch v1.3.14 *** Modified*** :khaak: :thumb_up:
Diese Woche im Angebot: HUD-GUI-Mix (FL) | Text-DB 0001-L049 (FL) | Textkorrekturen & Verbesserungen (FL)
Weitere Veröffentlichungen hier: N8workX
Nützliches Tool für nicht mehr vorhandene Downloads: web.archive.org
Externes Archiv für MOD/SCR Ressourcen: xdownloads.co.uk | code.google.com/archive/p/x3tcscripts/

olsch
Posts: 60
Joined: Mon, 24. May 21, 19:37
x3ap

Re: [MOD] Unoffical Patch : V1.3.8 : 2023-05-15

Post by olsch » Thu, 18. May 23, 23:56

Thanks for the info. And yes, I have a few read-text errors here and there.

draffutt
Posts: 4292
Joined: Wed, 21. Feb 07, 17:46
x4

Re: [MOD] Unoffical Patch : V1.3.8 : 2023-05-15

Post by draffutt » Sun, 21. May 23, 15:16

Hello;

Since this patch is adding/improving/fixing base game stuff is there any plans to restore cut content?
For example: there appears to be the makings of 2 additional side missions which weren’t implemented in the final game.
In the mission director directory

Capture Passengers:
L2M128 is listed in the rotation file but it is disabled.
0.28 Library is available.
2.128 ‘execute’ file is missing to actually run this mission

Deploy Laser Tower and/or Mines:
0.24 Deploy objects library is available.
2.124 ‘execute’ file is missing
L2M024 is missing from rotation
None of us is as smart as all of us. ~Ken Blanchard

TC player bug fixes
Reunion player bug fixes

Raptor_EG
Posts: 2
Joined: Tue, 30. May 23, 11:03

Re: [MOD] Unoffical Patch : V1.3.8 : 2023-05-15

Post by Raptor_EG » Tue, 30. May 23, 11:12

Cycrow wrote:
Sat, 6. Aug 22, 17:13

[*]Improved consuming of dock and secondary wares
patch 1.3.8
All trading stations and docks after a few days are filled with goods that are not consumed (microchips, quantum tube, crystals, computers etc. )
How to increase the speed of consumption of goods at trading stations and docks?

Cycrow
Moderator (Script&Mod)
Moderator (Script&Mod)
Posts: 22227
Joined: Sun, 14. Nov 04, 23:26
x4

Re: [MOD] Unoffical Patch : V1.3.8 : 2023-05-15

Post by Cycrow » Wed, 31. May 23, 20:38

draffutt wrote:
Sun, 21. May 23, 15:16
Hello;

Since this patch is adding/improving/fixing base game stuff is there any plans to restore cut content?
For example: there appears to be the makings of 2 additional side missions which weren’t implemented in the final game.
In the mission director directory

Capture Passengers:
L2M128 is listed in the rotation file but it is disabled.
0.28 Library is available.
2.128 ‘execute’ file is missing to actually run this mission

Deploy Laser Tower and/or Mines:
0.24 Deploy objects library is available.
2.124 ‘execute’ file is missing
L2M024 is missing from rotation
im assuming the capture passengers mission was disabled as it doesn't work (but i havn't tried)
I do plan to look into improving some of the missions at some point however.

the Deploy laser tower was actually created for the AP plot, which is why the library exists as its used by the plot missions

Post Reply

Return to “X³: Farnham's Legacy - Scripts and Modding”