Files modified between X:R 4.00 Beta 7 and Release (RC3)

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

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

w.evans
Posts: 2963
Joined: Tue, 18. Nov 14, 16:23
x4

Post by w.evans »

Files modified between X:R 3.50 RC2 and RC3:

assets\fx\gui\textures\factions\faction_heretic_vanguards.gz
assets\fx\gui\textures\factions\faction_sonra_energy.gz
assets\fx\gui\textures\factions\faction_sovereign_syndicate.gz
md\RML_Battle_Objectives.xml

aiscripts\engineer.ai.xml
libraries\aicompat.xml
libraries\icons.xml
md\GM_Collect_Crafted_Item.xml
md\GM_Destroy_Objects.xml
md\RML_Destroy_Components.xml
t\0001-L086.xml
t\0001-L088.xml

........
changelog:

• RC 3 Fixed engineers not repairing as fast as they should in some situations.
• RC 3 Fixed captured ships not being taken into account resulting in certain missions not being flagged as completed.
• RC 3 Fixed stuck crafting missions (only affected savegames saved since 3.50 RC1).
• RC 3 Fixed incorrect hull display in certain menus (problem existed before 3.50 but became more noticeable with 3.50).
  • Scripting

    Fixed <debug_text> non-error messages in <conditions> having no effect.
    Added new collision event 'event_object_collided' for detecting collisions between two objects.
    New script datatype "table" mapping arbitrary keys to values

    You can assign values to arbitrary keys, e.g. to $table.{1} or $table.{player.primaryship}
    You can assign values to variable-type keys, e.g. to $table.$foo (shortcut for $table.{'$foo'})
    Almost all values are allowed as table keys - exceptions:
    - Strings must start with '$' (bad: $table.foo, good: $table.$foo)
    - Lists, tables, groups and buildplans cannot be used as table keys
    - null cannot be used as table key (but the number 0 is valid)
    Example syntax for creating and initialising a table:
    - "table[]" (empty table)
    - "table[$foo = 42]" (a table that maps string '$foo' to 42)
    - "table[$bar = $bar, {10} = []]" (mapping '$bar' to the value of the variable $bar, and the number 10 to an empty list)
    - "table[{$baz} = null]" (mapping the value of $baz to null)
    Use <set_value> and <remove_value> to add/remove table entries, and "?" to check for existence of a key
    See scriptproperties documentation for available table properties

    MD/AI script operators "and" and "or" now have short-circuit semantics.

    Before 3.50, both operands were evaluated before calculating the boolean result
    "A and B": if A is false then B is not evaluated
    - Example: "$zone.isclass.highway and $zone.destination == $otherzone" (.destination is only evaluated if $zone is a highway)
    "A or B": if A is true then B is not evaluated
    - Example: "$list == null or $list.count == 0" (.count is not evaluated if $list is null)
    The operator results are true (1) or false (0), respectively, as before.

    Script param $Anchor removed for move.idle - the script always operates in the current zone of the ship
    New interfaces between Lua and MD/AI scripts: Script action <raise_lua_event> and Lua function SignalObject()
    <find_object_component> and <count_object_components> without the recursive flag do not find contained objects any more (e.g. docked ships or drones). If this is required, use the new attribute includeobjects.
    Improved object event conditions: Added optional check attribute to suppress errors, clarified documentation
    Support for conditional expressions ("inline if")

    Syntax: "if $A then $B else $C"
    - if $A is non-zero then $B is evaluated, otherwise $C is evaluated
    Syntax without else: "if $A then $B"
    - if the condition is false then the result is null
    There is no keyword to end the conditional expression, so use parentheses if you want to use if/then/else in a sub-expression
    - Example: "$object == (if $trade.buyer then $trade.buyer else $trade.seller) and $object.isplayerowned"


    Other


    New UI modding system: see this thread for details.
    New <production> section in wares.xml allows available production methods to be modified.
    Added several low attention combat parameters to parameters.xml.
    Fixed and improved multiple cases of error messages.
Last edited by w.evans on Thu, 2. Apr 15, 12:20, edited 1 time in total.
w.evans
Posts: 2963
Joined: Tue, 18. Nov 14, 16:23
x4

Post by w.evans »

Files modified between X:R 3.50 and 3.51 RC1

aiscripts\engineer.ai.xml
aiscripts\fight.attack.object.capital.xml

assets\units\size_l\Macros\units_size_l_canteran_miner_02_macro.xml
assets\units\size_l\Macros\units_size_l_dv_kit_new_bulk_01_macro.xml
assets\units\size_l\Macros\units_size_l_dv_kit_new_bulk_liquid_01_macro.xml
assets\units\size_l\Macros\units_size_l_dv_kit_new_container_01_macro.xml
assets\units\size_l\Macros\units_size_l_dv_kit_new_energy_01_macro.xml
assets\units\size_l\Macros\units_size_l_dv_kit_new_energy_container_01_macro.xml
assets\units\size_l\Macros\units_size_l_dv_kit_new_liquid_01_macro.xml
assets\units\size_l\Macros\units_size_l_dv_kit_old_bulk_01_macro.xml
assets\units\size_l\Macros\units_size_l_dv_kit_old_bulk_liquid_01_macro.xml
assets\units\size_l\Macros\units_size_l_dv_kit_old_container_01_macro.xml
assets\units\size_l\Macros\units_size_l_dv_kit_old_energy_01_macro.xml
assets\units\size_l\Macros\units_size_l_dv_kit_old_energy_container_01_macro.xml
assets\units\size_l\Macros\units_size_l_dv_kit_old_liquid_01_macro.xml
assets\units\size_l\Macros\units_size_l_kit_container_03_macro.xml
assets\units\size_l\Macros\units_size_l_kit_hybrid_01_macro.xml
assets\units\size_l\Macros\units_size_l_kit_hybrid_02_macro.xml
assets\units\size_l\Macros\units_size_l_liquid_freighter_macro.xml
assets\units\size_l\Macros\units_size_l_single_attack_ship_macro.xml
assets\units\size_l\units_size_l_single_attack_ship.xml
assets\units\size_xl\Macros\units_size_xl_red_destroyer_macro.xml
assets\units\size_xl\units_size_xl_red_destroyer.xml

libraries\aicompat.xml
libraries\common.xsd
libraries\targetpoints.xml

md\GM_Assassination_v2.xml
md\GM_Collect_Crafted_Item.xml
md\GM_Protection_Detail.xml
md\RML_Destroy_Components.xml
md\RML_Reveal_Object.xml

t\0001-L007.xml
t\0001-L033.xml
t\0001-L034.xml
t\0001-L039.xml
t\0001-L044.xml
t\0001-L049.xml
t\0001-L082.xml
t\0001-L086.xml
t\0001-L088.xml

assets\units\size_l\units_size_l_single_attack_ship_data\anim_poslights-collision.xmf
assets\units\size_l\units_size_l_single_attack_ship_data\anim_poslights-lod0.xmf
assets\units\size_l\units_size_l_single_attack_ship_data\assets_units_size_l_units_size_l_single_attack_ship-collision.xmf
assets\units\size_l\units_size_l_single_attack_ship_data\assets_units_size_l_units_size_l_single_attack_ship-lod0.xmf
assets\units\size_l\units_size_l_single_attack_ship_data\object01-collision.xmf
assets\units\size_l\units_size_l_single_attack_ship_data\object01-lod0.xmf
assets\units\size_l\units_size_l_single_attack_ship_data\part_main-collision.xmf
assets\units\size_l\units_size_l_single_attack_ship_data\part_main-lod0.xmf
assets\units\size_l\units_size_l_single_attack_ship_data\part_main-lod1.xmf
assets\units\size_l\units_size_l_single_attack_ship_data\part_main-lod2.xmf
assets\units\size_l\units_size_l_single_attack_ship_data\part_main-lod3.xmf
assets\units\size_l\units_size_l_single_attack_ship_data\part_main_wreck-collision.xmf
assets\units\size_l\units_size_l_single_attack_ship_data\part_main_wreck-lod0.xmf
assets\units\size_l\UNITS_SIZE_L_SINGLE_ATTACK_SHIP_DATA.ANI
assets\units\size_xl\units_size_xl_red_destroyer_data\assets_units_size_xl_units_size_xl_red_destroyer-collision.xmf
assets\units\size_xl\units_size_xl_red_destroyer_data\assets_units_size_xl_units_size_xl_red_destroyer-lod0.xmf
assets\units\size_xl\units_size_xl_red_destroyer_data\detail_s_docks-collision.xmf
assets\units\size_xl\units_size_xl_red_destroyer_data\detail_s_docks-lod0.xmf
assets\units\size_xl\units_size_xl_red_destroyer_data\detail_s_main-collision.xmf
assets\units\size_xl\units_size_xl_red_destroyer_data\detail_s_main-lod0.xmf
assets\units\size_xl\units_size_xl_red_destroyer_data\part_main-collision.xmf
assets\units\size_xl\units_size_xl_red_destroyer_data\part_main-lod0.xmf
assets\units\size_xl\units_size_xl_red_destroyer_data\part_main-lod1.xmf
assets\units\size_xl\units_size_xl_red_destroyer_data\part_main-lod2.xmf
assets\units\size_xl\units_size_xl_red_destroyer_data\part_main-lod3.xmf
assets\units\size_xl\units_size_xl_red_destroyer_data\part_main_wreck-collision.xmf
assets\units\size_xl\units_size_xl_red_destroyer_data\part_main_wreck-lod0.xmf

........
changelog:

• Collision shield damage now only applies to player ship, or drone when under player remote control.
• Improved balancing and accuracy of combat calculations when player is not present.
• Fixed missing drone docks on Sucellus and Balor.
• Fixed missing shield protection for drone bays on large Teladi ships (Teladi Outpost DLC only).
• Fixed player being thrown far into empty space when leaving super highway under autopilot.
• Fixed mass-traffic "clumping" after loading a savegame.
• Fixed problem with mapping buttons on certain joysticks.
• Fixed very rare case where a target might not be selected using gamepad controls.
• Fixed delay when launching mining drones from Teladi capital ship (Teladi Outpost DLC only).
• Fixed engineers not returning Construction URVs in some situations.
• Fixed incorrect maximum shield values during and after construction.
• Fixed repairing of station parts not correctly restoring surface elements.
• Fixed "free" upgrades on stations extended when the player is not present.
• Fixed scan station missions not completing.
w.evans
Posts: 2963
Joined: Tue, 18. Nov 14, 16:23
x4

Post by w.evans »

Files modified between X:R 3.51 RC2 and RC2 Hotfix

aiscripts\move.claim.xml

libraries\targetpoints.xml

md\notifications.xml

........
changelog:

• RC 2 Hotfix Fixed claimed ships not running commands after claim is complete.
• RC 2 Hotfix Fixed drones bumping while trying to dock on certain docks.

_____
Files modified between X:R 3.51 RC1 and RC2

aiscripts\lib.ammo.station.xml

assets\units\size_l\Macros\units_size_l_canteran_miner_01_macro.xml
assets\units\size_l\Macros\units_size_l_canteran_miner_02_macro.xml
assets\units\size_l\Macros\units_size_l_dv_kit_new_bulk_liquid_01_macro.xml
assets\units\size_l\Macros\units_size_l_dv_kit_new_energy_container_01_macro.xml

libraries\common.xsd

md\GM_Collect_Loot.xml
md\GM_Destroy_Matching_Objects.xml

........
changelog:

• RC 2 Fixed problem loading certain savegames while in the same zone as a station under repair (problem introduced in 3.51).
• RC 2 Fixed missing variation name on several ships.
• RC 2 Fixed "zombie" NPCs on certain stations who will not respond to attempts to talk.
• RC 2 Fixed capital ships not being able to boost if shields are too low.
• RC 2 Fixed crash loading certain very old savegames (problem introduced in 3.51).
w.evans
Posts: 2963
Joined: Tue, 18. Nov 14, 16:23
x4

Post by w.evans »

Files modified between X:R 3.51 and 3.52 RC1

md\Plot_Argon_Licence.xml
md\Plot_ep1_ch1.xml
md\Plot_ep1_ch2.xml
md\Plot_ep1_ch3.xml

........
changelog:

• Fixed a problem loading plot savegames made in versions created prior to 3.51 while player ship docked.
w.evans
Posts: 2963
Joined: Tue, 18. Nov 14, 16:23
x4

Post by w.evans »

Files modified between X:R 3.52 RC1 and RC2

t\0001-L007.xml
t\0001-L044.xml

ui\addons\ego_detailmonitor\menu_map.lua
ui\addons\ego_detailmonitor\menu_orders.lua
ui\core\Lua\widget_detailmonitor.lua
ui\core\Lua\widget_fullscreen.lua
ui\core\Lua\widget_fullscreen2.lua

ui\addons\ego_detailmonitor\menu_map.xpl
ui\addons\ego_detailmonitor\menu_orders.xpl
ui\core\Lua\widget_detailmonitor.xpl
ui\core\Lua\widget_fullscreen.xpl
ui\core\Lua\widget_fullscreen2.xpl

........
changelog:

• RC 2 Fixed default NPCs being able to board the playership and getting stuck.
• RC 2 Fixed being able to get more than five skill stars through employee training before skills are revealed.
• RC 2 Fixed ship animation issues when leaving the area and returning later.
• RC 2 Fixed some Russian localisation issues.
w.evans
Posts: 2963
Joined: Tue, 18. Nov 14, 16:23
x4

Post by w.evans »

Files modified between X:R 3.52 RC2 and 3.53 RC1

just the exe

........
changelog:

• Improved extension handling so that loading order of mods now follows defined dependencies.
• Fixed several of the most common remaining causes of crashes.

• Improved order in which extensions are processed: Dependencies are loaded and processed before the corresponding dependent extensions (for example The Teladi Outpost is loaded before any mods that depend on it).
• Extensions with circular dependencies are not allowed any more and cannot be loaded.
Last edited by w.evans on Thu, 2. Apr 15, 12:16, edited 1 time in total.
User avatar
NZ-Wanderer
Posts: 1627
Joined: Thu, 5. Aug 04, 01:57
x4

Post by NZ-Wanderer »

w.evans wrote:Files modified between X:R 3.52 RC2 and 3.53 RC1
just the exe
If just the EXE changed would I be safe in assuming I can update our list just by changing the 3.52 RC2 to 3.53 RC1??
Link to the list of Mods working in X4-Foundations and also Link to the list of Mods working in X-Rebirth

NOTE: I play with a modded game, so any reports I make outlining suggestions/problems/bugs/annoyances, are made with mods installed and running.
w.evans
Posts: 2963
Joined: Tue, 18. Nov 14, 16:23
x4

Post by w.evans »

Yup. Sorry, did I forget to tell you?

Probably safe to list everything as compatible with 3.53 RC2, but safest to keep the mods that are known to do things with the UI (YAT, Mission Computer, AEJ, etc.) to RC1 until they're verified to be compatible with RC2. I don't think that anyone modifies the UI files updated in RC2, but I'm not very familiar with the UI files, so I can't say for sure.
User avatar
NZ-Wanderer
Posts: 1627
Joined: Thu, 5. Aug 04, 01:57
x4

Post by NZ-Wanderer »

Meh, I will just update the lot, I am sure someone will tell me pretty quick if something not work.. - be easier to downgrade later :)
Link to the list of Mods working in X4-Foundations and also Link to the list of Mods working in X-Rebirth

NOTE: I play with a modded game, so any reports I make outlining suggestions/problems/bugs/annoyances, are made with mods installed and running.
w.evans
Posts: 2963
Joined: Tue, 18. Nov 14, 16:23
x4

Post by w.evans »

Files modified between X:R 3.53 RC1 and RC2

ui\addons\ego_detailmonitor\menu_build_select_upgrades.lua
ui\addons\ego_detailmonitor\menu_build_upgrades_slider.lua
ui\addons\ego_detailmonitor\menu_encyclopediaobject.lua
ui\addons\ego_detailmonitor\menu_missionmanagement.lua

ui\addons\ego_detailmonitor\menu_build_select_upgrades.xpl
ui\addons\ego_detailmonitor\menu_build_upgrades_slider.xpl
ui\addons\ego_detailmonitor\menu_encyclopediaobject.xpl
ui\addons\ego_detailmonitor\menu_missionmanagement.xpl

........
changelog:

• RC2 Fixed capital shield being unable to boost if they have no shields (fix in 3.51 did not work in all cases).
• RC2 Fixed broken buttons on player ship entry in encyclopedia.
• RC2 Fixed rounding error relating to upgrade counts.
• RC2 Fixed missing text truncation for objectives in Mission Manager.
Rubini
Posts: 452
Joined: Mon, 7. May 07, 05:17
xr

Post by Rubini »

Thanks w.evans! This is very useful!
w.evans
Posts: 2963
Joined: Tue, 18. Nov 14, 16:23
x4

Post by w.evans »

no problem. have to check for changes myself anyway. Then, it's just a matter of exporting, minor formatting, and posting it up. Glad that it helps!
UniTrader
Moderator (Script&Mod)
Moderator (Script&Mod)
Posts: 14571
Joined: Sun, 20. Nov 05, 22:45
x4

Post by UniTrader »

also the changes in the xsds may be of intrest, but not in this Version - just some minor changes and clarifications.
see here:
https://github.com/UniTrader/XRebirthMo ... efbe26b5a2

(i got Permission from Bernd to upload the xsd files of XR there and uploaded all released Versions i had at hand in order so we can see what has changed in this respect ;) i am planning to fill this Repo with Modding Information and tools over time when i am looking into stuff..)
if not stated otherwise everything i post is licensed under WTFPL

Ich mache keine S&M-Auftragsarbeiten, aber wenn es fragen gibt wie man etwas umsetzen kann helfe ich gerne weiter ;)

I wont do Script&Mod Request work, but if there are questions how to do something i will GLaDly help ;)
w.evans
Posts: 2963
Joined: Tue, 18. Nov 14, 16:23
x4

Post by w.evans »

That's useful. Thanks, Uni.

I'm confused, though. You mentioned that it's not for this version, but it's marked 3.60 Beta 1 in GitHub. Also, my aiscripts.xsd is dated 21.Feb.2011 -- from a much earlier version. Are the xsd changes you posted for an upcoming version?
UniTrader
Moderator (Script&Mod)
Moderator (Script&Mod)
Posts: 14571
Joined: Sun, 20. Nov 05, 22:45
x4

Post by UniTrader »

i meant the changes themselves are not really of intrest (nothing useful changed ;) ) - at least compared to 3.53

and no, this are the ones from the current Version, creation/modification Date could be more recent (today) because i extracted everything from the game files anew
if not stated otherwise everything i post is licensed under WTFPL

Ich mache keine S&M-Auftragsarbeiten, aber wenn es fragen gibt wie man etwas umsetzen kann helfe ich gerne weiter ;)

I wont do Script&Mod Request work, but if there are questions how to do something i will GLaDly help ;)
w.evans
Posts: 2963
Joined: Tue, 18. Nov 14, 16:23
x4

Post by w.evans »

Ah, now I understand! Thanks! And sorry. Exhausting day today.

Funny though, I didn't get any new xsd's. Could I have screwed up the list in OP somehow?

.......
Quark! They're in the list after all. Was looking in the wrong place.

Urgently need sleep. Good night, everyone.
w.evans
Posts: 2963
Joined: Tue, 18. Nov 14, 16:23
x4

Post by w.evans »

Files modified between X:R 3.53 and 3.60 Beta 1

new files:
assets\map\map_parts_template_data\part_dock_bar-collision.xmf
assets\map\map_parts_template_data\part_dock_bar-lod0.xmf
assets\map\map_parts_template_data\part_dock_triangle-collision.xmf
assets\map\map_parts_template_data\part_dock_triangle-lod0.xmf
assets\structures\Economy\collectors_water\unique\struct_econ_cw_ar_water_f_navmesh(2).xml
assets\structures\Economy\collectors_water\unique\struct_econ_cw_ar_water_g_navmesh(2).xml
assets\structures\Economy\collectors_water\unique\struct_econ_cw_ar_water_h_navmesh(2).xml
assets\units\size_drone\units_size_drone_rubble_collector_mk2_data\anim_main-lod3.xmf

changed files:
aiscripts\engineer.ai.xml
aiscripts\fight.attack.object.capital.xml
aiscripts\fight.attack.object.drone.leader.xml
aiscripts\masstraffic.watchdog.xml
aiscripts\trade.shipyard.xml

assets\map\map_parts_template.xml
assets\props\AdSigns\props_adsigns_bt_plasmacells_xl.xml
assets\props\WeaponSystems\macros\props_wps_wardrone_bomblauncher_macro.xml
assets\props\WeaponSystems\macros\turret_medium_sp_macro.xml
assets\structures\oldStations\macros\argon_m_solarpowerplant_macro.xml
assets\units\size_drone\units_size_drone_rubble_collector_mk2.xml

index\components.xml

libraries\aiscripts.xsd
libraries\common.xsd
libraries\contexts.xml
libraries\inputmap.xml
libraries\scriptproperties.xml
libraries\upgrade_defs.xml

md\GM_Clear_Explosives.xml
md\GM_Collect_Crafted_Item.xml
md\GM_Collect_Loot.xml
md\GM_Harvest_Resources.xml
md\Hints.xml
md\NPC_Engineer.xml
md\NPC_Marine.xml
md\RML_Battle_Objectives.xml
md\RML_Destroy_Summarised_Components.xml
md\RML_Sabotage_Object.xml
md\Showcases.xml
md\Upkeep.xml

t\0001-L007.xml
t\0001-L033.xml
t\0001-L034.xml
t\0001-L039.xml
t\0001-L044.xml
t\0001-L049.xml
t\0001-L082.xml
t\0001-L086.xml
t\0001-L088.xml

ui\addons\ego_debugLog\debuglog.lua
ui\addons\ego_detailmonitor\menu_map.lua
ui\addons\ego_detailmonitor\ui.xml
ui\addons\ego_detailmonitorHelper\helper.lua
ui\addons\ego_eventmonitor\eventmonitor.lua
ui\addons\ego_fullscreenHelper\helper.lua
ui\addons\ego_gameoptions\gameoptions.lua
ui\addons\ego_mainmenu\mainmenu.lua
ui\core\Lua\jit\bc.lua
ui\core\Lua\jit\bcsave.lua
ui\core\Lua\jit\dis_arm.lua
ui\core\Lua\jit\dis_mips.lua
ui\core\Lua\jit\dis_mipsel.lua
ui\core\Lua\jit\dis_ppc.lua
ui\core\Lua\jit\dis_x64.lua
ui\core\Lua\jit\dis_x86.lua
ui\core\Lua\jit\dump.lua
ui\core\Lua\jit\v.lua
ui\core\Lua\AbilityMenuHandling.lua
ui\core\Lua\Billboard.lua
ui\core\Lua\CockpitShipstatus.lua
ui\core\Lua\CrosshairHandling.lua
ui\core\Lua\dialogmenu.lua
ui\core\Lua\EventMonitor.lua
ui\core\Lua\firstperson_crosshair.lua
ui\core\Lua\hud_eventmonitor.lua
ui\core\Lua\missionobjective.lua
ui\core\Lua\targetsystem.lua
ui\core\Lua\widget_detailmonitor.lua
ui\core\Lua\widget_fullscreen.lua
ui\core\Lua\widget_fullscreen2.lua
ui\core\presentations\targetsystem\targetsystem.dae

.......
assets\fx\textures\ads\multi_production_01-small.gz
assets\fx\textures\ads\multi_production_01.gz
assets\map\map_parts_template_data\assets_map_map_parts_template-collision.xmf
assets\map\map_parts_template_data\assets_map_map_parts_template-lod0.xmf
assets\map\map_parts_template_data\part_bg_albion-collision.xmf
assets\map\map_parts_template_data\part_bg_albion-lod0.xmf
assets\map\map_parts_template_data\part_bg_defries-collision.xmf
assets\map\map_parts_template_data\part_bg_defries-lod0.xmf
assets\map\map_parts_template_data\part_bg_galmap-collision.xmf
assets\map\map_parts_template_data\part_bg_galmap-lod0.xmf
assets\map\map_parts_template_data\part_bg_maelstrom-collision.xmf
assets\map\map_parts_template_data\part_bg_maelstrom-lod0.xmf
assets\map\map_parts_template_data\part_bg_omicron-collision.xmf
assets\map\map_parts_template_data\part_bg_omicron-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_01-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_01-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_02-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_02-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_03-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_03-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_04-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_04-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_05-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_05-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_06-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_06-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_07-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_07-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_08-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_08-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_09-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_09-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_10-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_10-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_11-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_11-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_12-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_12-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_13-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_13-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_14-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_14-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_15-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_15-lod0.xmf
assets\map\map_parts_template_data\part_char_0-collision.xmf
assets\map\map_parts_template_data\part_char_0-lod0.xmf
assets\map\map_parts_template_data\part_char_1-collision.xmf
assets\map\map_parts_template_data\part_char_1-lod0.xmf
assets\map\map_parts_template_data\part_char_2-collision.xmf
assets\map\map_parts_template_data\part_char_2-lod0.xmf
assets\map\map_parts_template_data\part_char_3-collision.xmf
assets\map\map_parts_template_data\part_char_3-lod0.xmf
assets\map\map_parts_template_data\part_char_4-collision.xmf
assets\map\map_parts_template_data\part_char_4-lod0.xmf
assets\map\map_parts_template_data\part_char_5-collision.xmf
assets\map\map_parts_template_data\part_char_5-lod0.xmf
assets\map\map_parts_template_data\part_char_6-collision.xmf
assets\map\map_parts_template_data\part_char_6-lod0.xmf
assets\map\map_parts_template_data\part_char_7-collision.xmf
assets\map\map_parts_template_data\part_char_7-lod0.xmf
assets\map\map_parts_template_data\part_char_8-collision.xmf
assets\map\map_parts_template_data\part_char_8-lod0.xmf
assets\map\map_parts_template_data\part_char_9-collision.xmf
assets\map\map_parts_template_data\part_char_9-lod0.xmf
assets\map\map_parts_template_data\part_char_a-collision.xmf
assets\map\map_parts_template_data\part_char_a-lod0.xmf
assets\map\map_parts_template_data\part_char_b-collision.xmf
assets\map\map_parts_template_data\part_char_b-lod0.xmf
assets\map\map_parts_template_data\part_char_c-collision.xmf
assets\map\map_parts_template_data\part_char_c-lod0.xmf
assets\map\map_parts_template_data\part_char_d-collision.xmf
assets\map\map_parts_template_data\part_char_d-lod0.xmf
assets\map\map_parts_template_data\part_char_e-collision.xmf
assets\map\map_parts_template_data\part_char_e-lod0.xmf
assets\map\map_parts_template_data\part_char_f-collision.xmf
assets\map\map_parts_template_data\part_char_f-lod0.xmf
assets\map\map_parts_template_data\part_char_g-collision.xmf
assets\map\map_parts_template_data\part_char_g-lod0.xmf
assets\map\map_parts_template_data\part_char_h-collision.xmf
assets\map\map_parts_template_data\part_char_h-lod0.xmf
assets\map\map_parts_template_data\part_char_i-collision.xmf
assets\map\map_parts_template_data\part_char_i-lod0.xmf
assets\map\map_parts_template_data\part_char_j-collision.xmf
assets\map\map_parts_template_data\part_char_j-lod0.xmf
assets\map\map_parts_template_data\part_char_k-collision.xmf
assets\map\map_parts_template_data\part_char_k-lod0.xmf
assets\map\map_parts_template_data\part_char_l-collision.xmf
assets\map\map_parts_template_data\part_char_l-lod0.xmf
assets\map\map_parts_template_data\part_char_m-collision.xmf
assets\map\map_parts_template_data\part_char_m-lod0.xmf
assets\map\map_parts_template_data\part_char_n-collision.xmf
assets\map\map_parts_template_data\part_char_n-lod0.xmf
assets\map\map_parts_template_data\part_char_o-collision.xmf
assets\map\map_parts_template_data\part_char_o-lod0.xmf
assets\map\map_parts_template_data\part_char_p-collision.xmf
assets\map\map_parts_template_data\part_char_p-lod0.xmf
assets\map\map_parts_template_data\part_char_q-collision.xmf
assets\map\map_parts_template_data\part_char_q-lod0.xmf
assets\map\map_parts_template_data\part_char_r-collision.xmf
assets\map\map_parts_template_data\part_char_r-lod0.xmf
assets\map\map_parts_template_data\part_char_s-collision.xmf
assets\map\map_parts_template_data\part_char_s-lod0.xmf
assets\map\map_parts_template_data\part_char_t-collision.xmf
assets\map\map_parts_template_data\part_char_t-lod0.xmf
assets\map\map_parts_template_data\part_char_u-collision.xmf
assets\map\map_parts_template_data\part_char_u-lod0.xmf
assets\map\map_parts_template_data\part_char_v-collision.xmf
assets\map\map_parts_template_data\part_char_v-lod0.xmf
assets\map\map_parts_template_data\part_char_w-collision.xmf
assets\map\map_parts_template_data\part_char_w-lod0.xmf
assets\map\map_parts_template_data\part_char_x-collision.xmf
assets\map\map_parts_template_data\part_char_x-lod0.xmf
assets\map\map_parts_template_data\part_char_y-collision.xmf
assets\map\map_parts_template_data\part_char_y-lod0.xmf
assets\map\map_parts_template_data\part_char_z-collision.xmf
assets\map\map_parts_template_data\part_char_z-lod0.xmf
assets\map\map_parts_template_data\part_grid-collision.xmf
assets\map\map_parts_template_data\part_grid-lod0.xmf
assets\map\map_parts_template_data\part_icon_cluster-collision.xmf
assets\map\map_parts_template_data\part_icon_cluster-lod0.xmf
assets\map\map_parts_template_data\part_icon_drone-collision.xmf
assets\map\map_parts_template_data\part_icon_drone-lod0.xmf
assets\map\map_parts_template_data\part_icon_gate-collision.xmf
assets\map\map_parts_template_data\part_icon_gate-lod0.xmf
assets\map\map_parts_template_data\part_icon_jb-collision.xmf
assets\map\map_parts_template_data\part_icon_jb-lod0.xmf
assets\map\map_parts_template_data\part_icon_player-collision.xmf
assets\map\map_parts_template_data\part_icon_player-lod0.xmf
assets\map\map_parts_template_data\part_icon_sector-collision.xmf
assets\map\map_parts_template_data\part_icon_sector-lod0.xmf
assets\map\map_parts_template_data\part_icon_shipl-collision.xmf
assets\map\map_parts_template_data\part_icon_shipl-lod0.xmf
assets\map\map_parts_template_data\part_icon_shipm-collision.xmf
assets\map\map_parts_template_data\part_icon_shipm-lod0.xmf
assets\map\map_parts_template_data\part_icon_ships-collision.xmf
assets\map\map_parts_template_data\part_icon_ships-lod0.xmf
assets\map\map_parts_template_data\part_icon_shipxl-collision.xmf
assets\map\map_parts_template_data\part_icon_shipxl-lod0.xmf
assets\map\map_parts_template_data\part_icon_shipxs-collision.xmf
assets\map\map_parts_template_data\part_icon_shipxs-lod0.xmf
assets\map\map_parts_template_data\part_icon_superhighway-collision.xmf
assets\map\map_parts_template_data\part_icon_superhighway-lod0.xmf
assets\map\map_parts_template_data\part_icon_zone-collision.xmf
assets\map\map_parts_template_data\part_icon_zone-lod0.xmf
assets\map\map_parts_template_data\part_overlay-collision.xmf
assets\map\map_parts_template_data\part_overlay-lod0.xmf
assets\map\map_parts_template_data\part_positioncursor-collision.xmf
assets\map\map_parts_template_data\part_positioncursor-lod0.xmf
assets\map\map_parts_template_data\part_radargrid-collision.xmf
assets\map\map_parts_template_data\part_radargrid-lod0.xmf
assets\map\map_parts_template_data\part_seperator-collision.xmf
assets\map\map_parts_template_data\part_seperator-lod0.xmf
assets\map\map_parts_template_data\shipicon_builder_l-collision.xmf
assets\map\map_parts_template_data\shipicon_builder_l-lod0.xmf
assets\map\map_parts_template_data\shipicon_carrier_l-collision.xmf
assets\map\map_parts_template_data\shipicon_carrier_l-lod0.xmf
assets\map\map_parts_template_data\shipicon_carrier_xl-collision.xmf
assets\map\map_parts_template_data\shipicon_carrier_xl-lod0.xmf
assets\map\map_parts_template_data\shipicon_civilian_xs-collision.xmf
assets\map\map_parts_template_data\shipicon_civilian_xs-lod0.xmf
assets\map\map_parts_template_data\shipicon_destroyer_l-collision.xmf
assets\map\map_parts_template_data\shipicon_destroyer_l-lod0.xmf
assets\map\map_parts_template_data\shipicon_destroyer_xl-collision.xmf
assets\map\map_parts_template_data\shipicon_destroyer_xl-lod0.xmf
assets\map\map_parts_template_data\shipicon_drone_combat-collision.xmf
assets\map\map_parts_template_data\shipicon_drone_combat-lod0.xmf
assets\map\map_parts_template_data\shipicon_drone_transport-collision.xmf
assets\map\map_parts_template_data\shipicon_drone_transport-lod0.xmf
assets\map\map_parts_template_data\shipicon_drone_utility-collision.xmf
assets\map\map_parts_template_data\shipicon_drone_utility-lod0.xmf
assets\map\map_parts_template_data\shipicon_fighter_m-collision.xmf
assets\map\map_parts_template_data\shipicon_fighter_m-lod0.xmf
assets\map\map_parts_template_data\shipicon_fighter_s-collision.xmf
assets\map\map_parts_template_data\shipicon_fighter_s-lod0.xmf
assets\map\map_parts_template_data\shipicon_freighter_l-collision.xmf
assets\map\map_parts_template_data\shipicon_freighter_l-lod0.xmf
assets\map\map_parts_template_data\shipicon_freighter_m-collision.xmf
assets\map\map_parts_template_data\shipicon_freighter_m-lod0.xmf
assets\map\map_parts_template_data\shipicon_freighter_xl-collision.xmf
assets\map\map_parts_template_data\shipicon_freighter_xl-lod0.xmf
assets\map\map_parts_template_data\shipicon_frigate_l-collision.xmf
assets\map\map_parts_template_data\shipicon_frigate_l-lod0.xmf
assets\map\map_parts_template_data\shipicon_miner_gas_l-collision.xmf
assets\map\map_parts_template_data\shipicon_miner_gas_l-lod0.xmf
assets\map\map_parts_template_data\shipicon_miner_gas_m-collision.xmf
assets\map\map_parts_template_data\shipicon_miner_gas_m-lod0.xmf
assets\map\map_parts_template_data\shipicon_miner_gas_xl-collision.xmf
assets\map\map_parts_template_data\shipicon_miner_gas_xl-lod0.xmf
assets\map\map_parts_template_data\shipicon_miner_ore_l-collision.xmf
assets\map\map_parts_template_data\shipicon_miner_ore_l-lod0.xmf
assets\map\map_parts_template_data\shipicon_miner_ore_m-collision.xmf
assets\map\map_parts_template_data\shipicon_miner_ore_m-lod0.xmf
assets\map\map_parts_template_data\shipicon_miner_ore_xl-collision.xmf
assets\map\map_parts_template_data\shipicon_miner_ore_xl-lod0.xmf
assets\map\map_parts_template_data\shipicon_police_xs-collision.xmf
assets\map\map_parts_template_data\shipicon_police_xs-lod0.xmf
assets\props\AdSigns\props_adsigns_bt_plasmacells_xl_data\assets_props_adsigns_props_adsigns_bt_plasmacells_xl-collision.xmf
assets\props\AdSigns\props_adsigns_bt_plasmacells_xl_data\assets_props_adsigns_props_adsigns_bt_plasmacells_xl-lod0.xmf
assets\props\AdSigns\props_adsigns_bt_plasmacells_xl_data\fx_ad-collision.xmf
assets\props\AdSigns\props_adsigns_bt_plasmacells_xl_data\fx_ad-lod0.xmf
assets\props\AdSigns\props_adsigns_bt_plasmacells_xl_data\fx_light-collision.xmf
assets\props\AdSigns\props_adsigns_bt_plasmacells_xl_data\fx_light-lod0.xmf
assets\props\AdSigns\props_adsigns_bt_plasmacells_xl_data\part_main-collision.xmf
assets\props\AdSigns\props_adsigns_bt_plasmacells_xl_data\part_main-lod0.xmf
assets\props\AdSigns\props_adsigns_bt_plasmacells_xl_data\part_main-lod1.xmf
assets\props\AdSigns\props_adsigns_bt_plasmacells_xl_data\part_main-lod2.xmf
assets\props\AdSigns\props_adsigns_bt_plasmacells_xl_data\part_main_wreck-collision.xmf
assets\props\AdSigns\props_adsigns_bt_plasmacells_xl_data\part_main_wreck-lod0.xmf
assets\props\AdSigns\props_adsigns_bt_plasmacells_xl_data\textureanimation_noise-collision.xmf
assets\props\AdSigns\props_adsigns_bt_plasmacells_xl_data\textureanimation_noise-lod0.xmf
assets\props\AdSigns\PROPS_ADSIGNS_BT_PLASMACELLS_XL_DATA.ANI
assets\structures\Economy\production\STRUCT_ECON_PROD_SOY_DATA.ANI
assets\units\size_drone\units_size_drone_rubble_collector_mk2_data\anim_detail_s_rotator-collision.xmf
assets\units\size_drone\units_size_drone_rubble_collector_mk2_data\anim_detail_s_rotator-lod0.xmf
assets\units\size_drone\units_size_drone_rubble_collector_mk2_data\anim_main-collision.xmf
assets\units\size_drone\units_size_drone_rubble_collector_mk2_data\anim_main-lod0.xmf
assets\units\size_drone\units_size_drone_rubble_collector_mk2_data\anim_main-lod1.xmf
assets\units\size_drone\units_size_drone_rubble_collector_mk2_data\anim_main-lod2.xmf
assets\units\size_drone\units_size_drone_rubble_collector_mk2_data\anim_main_wreck-collision.xmf
assets\units\size_drone\units_size_drone_rubble_collector_mk2_data\anim_main_wreck-lod0.xmf
assets\units\size_drone\units_size_drone_rubble_collector_mk2_data\assets_units_size_drone_units_size_drone_rubble_collector_mk2-collision.xmf
assets\units\size_drone\units_size_drone_rubble_collector_mk2_data\assets_units_size_drone_units_size_drone_rubble_collector_mk2-lod0.xmf
assets\units\size_drone\units_size_drone_rubble_collector_mk2_data\detail_l_engines-collision.xmf
assets\units\size_drone\units_size_drone_rubble_collector_mk2_data\detail_l_engines-lod0.xmf
assets\units\size_drone\units_size_drone_rubble_collector_mk2_data\detail_s_arm01-collision.xmf
assets\units\size_drone\units_size_drone_rubble_collector_mk2_data\detail_s_arm01-lod0.xmf
assets\units\size_drone\units_size_drone_rubble_collector_mk2_data\detail_s_arm02-collision.xmf
assets\units\size_drone\units_size_drone_rubble_collector_mk2_data\detail_s_arm02-lod0.xmf
assets\units\size_drone\units_size_drone_rubble_collector_mk2_data\detail_s_details-collision.xmf
assets\units\size_drone\units_size_drone_rubble_collector_mk2_data\detail_s_details-lod0.xmf
assets\units\size_drone\units_size_drone_rubble_collector_mk2_data\detail_s_hand01-collision.xmf
assets\units\size_drone\units_size_drone_rubble_collector_mk2_data\detail_s_hand01-lod0.xmf
assets\units\size_drone\units_size_drone_rubble_collector_mk2_data\detail_s_hand02-collision.xmf
assets\units\size_drone\units_size_drone_rubble_collector_mk2_data\detail_s_hand02-lod0.xmf
assets\units\size_drone\units_size_drone_rubble_collector_mk2_data\detail_s_lower_arm01-collision.xmf
assets\units\size_drone\units_size_drone_rubble_collector_mk2_data\detail_s_lower_arm01-lod0.xmf
assets\units\size_drone\units_size_drone_rubble_collector_mk2_data\detail_s_lower_arm02-collision.xmf
assets\units\size_drone\units_size_drone_rubble_collector_mk2_data\detail_s_lower_arm02-lod0.xmf
assets\units\size_drone\units_size_drone_rubble_collector_mk2_data\part_forcefield02-collision.xmf
assets\units\size_drone\units_size_drone_rubble_collector_mk2_data\part_forcefield02-lod0.xmf
assets\units\size_drone\units_size_drone_rubble_collector_mk2_data\part_forcefield03-collision.xmf
assets\units\size_drone\units_size_drone_rubble_collector_mk2_data\part_forcefield03-lod0.xmf
assets\units\size_drone\UNITS_SIZE_DRONE_RUBBLE_COLLECTOR_MK2_DATA.ANI

ui\addons\ego_debug\debug.xpl
ui\addons\ego_debugLog\debuglog.xpl
ui\addons\ego_detailmonitor\menu_build_ammo_slider.xpl
ui\addons\ego_detailmonitor\menu_build_drones_slider.xpl
ui\addons\ego_detailmonitor\menu_build_select_ammo.xpl
ui\addons\ego_detailmonitor\menu_build_select_drones.xpl
ui\addons\ego_detailmonitor\menu_build_select_upgrades.xpl
ui\addons\ego_detailmonitor\menu_build_upgrades_slider.xpl
ui\addons\ego_detailmonitor\menu_buildcost.xpl
ui\addons\ego_detailmonitor\menu_buildermacros.xpl
ui\addons\ego_detailmonitor\menu_buildtree.xpl
ui\addons\ego_detailmonitor\menu_charprofile.xpl
ui\addons\ego_detailmonitor\menu_controlentities.xpl
ui\addons\ego_detailmonitor\menu_crew.xpl
ui\addons\ego_detailmonitor\menu_dropslider.xpl
ui\addons\ego_detailmonitor\menu_encyclopediabuildcost.xpl
ui\addons\ego_detailmonitor\menu_encyclopediabuildplan.xpl
ui\addons\ego_detailmonitor\menu_encyclopediacharacter.xpl
ui\addons\ego_detailmonitor\menu_encyclopediaclusters.xpl
ui\addons\ego_detailmonitor\menu_encyclopediafaction.xpl
ui\addons\ego_detailmonitor\menu_encyclopediafactions.xpl
ui\addons\ego_detailmonitor\menu_encyclopedialicence.xpl
ui\addons\ego_detailmonitor\menu_encyclopediamain.xpl
ui\addons\ego_detailmonitor\menu_encyclopediaobject.xpl
ui\addons\ego_detailmonitor\menu_encyclopediaobjects.xpl
ui\addons\ego_detailmonitor\menu_encyclopediapeople.xpl
ui\addons\ego_detailmonitor\menu_encyclopediaproductionmethod.xpl
ui\addons\ego_detailmonitor\menu_encyclopediashipcategories.xpl
ui\addons\ego_detailmonitor\menu_encyclopediaspace.xpl
ui\addons\ego_detailmonitor\menu_encyclopediastationcategories.xpl
ui\addons\ego_detailmonitor\menu_encyclopediaware.xpl
ui\addons\ego_detailmonitor\menu_encyclopediawarecategories.xpl
ui\addons\ego_detailmonitor\menu_encyclopediawares.xpl
ui\addons\ego_detailmonitor\menu_encyclopediaweapon.xpl
ui\addons\ego_detailmonitor\menu_encyclopediaweaponcategories.xpl
ui\addons\ego_detailmonitor\menu_encyclopediaweapons.xpl
ui\addons\ego_detailmonitor\menu_hire.xpl
ui\addons\ego_detailmonitor\menu_inventory.xpl
ui\addons\ego_detailmonitor\menu_logbook.xpl
ui\addons\ego_detailmonitor\menu_map.xpl
ui\addons\ego_detailmonitor\menu_missionbriefing.xpl
ui\addons\ego_detailmonitor\menu_missionmanagement.xpl
ui\addons\ego_detailmonitor\menu_moneytransfer.xpl
ui\addons\ego_detailmonitor\menu_object.xpl
ui\addons\ego_detailmonitor\menu_orders.xpl
ui\addons\ego_detailmonitor\menu_platforms.xpl
ui\addons\ego_detailmonitor\menu_player.xpl
ui\addons\ego_detailmonitor\menu_priceoverrides.xpl
ui\addons\ego_detailmonitor\menu_priceoverrides_slider.xpl
ui\addons\ego_detailmonitor\menu_production.xpl
ui\addons\ego_detailmonitor\menu_productsales.xpl
ui\addons\ego_detailmonitor\menu_productsales_slider.xpl
ui\addons\ego_detailmonitor\menu_property.xpl
ui\addons\ego_detailmonitor\menu_refuelbudget.xpl
ui\addons\ego_detailmonitor\menu_remotenpcs.xpl
ui\addons\ego_detailmonitor\menu_rename.xpl
ui\addons\ego_detailmonitor\menu_repair.xpl
ui\addons\ego_detailmonitor\menu_repair_onboard.xpl
ui\addons\ego_detailmonitor\menu_repairslider.xpl
ui\addons\ego_detailmonitor\menu_selectship.xpl
ui\addons\ego_detailmonitor\menu_setmoneylimit.xpl
ui\addons\ego_detailmonitor\menu_ships.xpl
ui\addons\ego_detailmonitor\menu_smallshiptrader_drones.xpl
ui\addons\ego_detailmonitor\menu_smallshiptrader_drones_slider.xpl
ui\addons\ego_detailmonitor\menu_stats.xpl
ui\addons\ego_detailmonitor\menu_storage.xpl
ui\addons\ego_detailmonitor\menu_trader.xpl
ui\addons\ego_detailmonitor\menu_trader_cockpits.xpl
ui\addons\ego_detailmonitor\menu_trader_licences.xpl
ui\addons\ego_detailmonitor\menu_trader_transfer.xpl
ui\addons\ego_detailmonitor\menu_trader_transfer_cockpits.xpl
ui\addons\ego_detailmonitor\menu_trader_transfer_licences.xpl
ui\addons\ego_detailmonitor\menu_trader_transfer_upgrades_normal.xpl
ui\addons\ego_detailmonitor\menu_trader_transfer_upgrades_slider.xpl
ui\addons\ego_detailmonitor\menu_trader_upgrades.xpl
ui\addons\ego_detailmonitor\menu_traderestrictions.xpl
ui\addons\ego_detailmonitor\menu_trading_details.xpl
ui\addons\ego_detailmonitor\menu_trading_offers.xpl
ui\addons\ego_detailmonitor\menu_trading_transaction.xpl
ui\addons\ego_detailmonitorHelper\helper.xpl
ui\addons\ego_eventmonitor\eventmonitor.xpl
ui\addons\ego_fullscreenHelper\helper.xpl
ui\addons\ego_gameoptions\gameoptions.xpl
ui\addons\ego_helpText\helptext.xpl
ui\addons\ego_mainmenu\mainmenu.xpl
ui\core\Lua\jit\bc.xpl
ui\core\Lua\jit\bcsave.xpl
ui\core\Lua\jit\dis_arm.xpl
ui\core\Lua\jit\dis_mips.xpl
ui\core\Lua\jit\dis_mipsel.xpl
ui\core\Lua\jit\dis_ppc.xpl
ui\core\Lua\jit\dis_x64.xpl
ui\core\Lua\jit\dis_x86.xpl
ui\core\Lua\jit\dump.xpl
ui\core\Lua\jit\v.xpl
ui\core\Lua\jit\vmdef.xpl
ui\core\Lua\AbilityMenuHandling.xpl
ui\core\Lua\Billboard.xpl
ui\core\Lua\CockpitPrimarypanel.xpl
ui\core\Lua\CockpitSecondarypanel.xpl
ui\core\Lua\CockpitShipstatus.xpl
ui\core\Lua\CockpitSpeedbar.xpl
ui\core\Lua\CounteractRotation.xpl
ui\core\Lua\CrosshairHandling.xpl
ui\core\Lua\debugbar.xpl
ui\core\Lua\debugline.xpl
ui\core\Lua\dialogmenu.xpl
ui\core\Lua\DroneHUDHandling.xpl
ui\core\Lua\EventMonitor.xpl
ui\core\Lua\firstperson_crosshair.xpl
ui\core\Lua\gameover.xpl
ui\core\Lua\hud_eventmonitor.xpl
ui\core\Lua\infobar.xpl
ui\core\Lua\infobar2.xpl
ui\core\Lua\loading.xpl
ui\core\Lua\missionobjective.xpl
ui\core\Lua\missionsystem.xpl
ui\core\Lua\PropagateAttribute.xpl
ui\core\Lua\subchannelbar.xpl
ui\core\Lua\targetsystem.xpl
ui\core\Lua\unittests.xpl
ui\core\Lua\widget_detailmonitor.xpl
ui\core\Lua\widget_fullscreen.xpl
ui\core\Lua\widget_fullscreen2.xpl
ui\core\Lua\WriteText.xpl
ui\core\presentations\targetsystem\targetsystem\ak105-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak105-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak112-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak112-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak119-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak119-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak126-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak126-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak134-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak134-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak141-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak141-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak148-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak148-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak155-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak155-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak163-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak163-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak170-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak170-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak178-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak178-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak18-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak18-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak187-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak187-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak202-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak202-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak209-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak209-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak217-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak217-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak224-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak224-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak238-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak238-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak244-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak244-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak25-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak25-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak266-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak266-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak32-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak32-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak371-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak371-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak379-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak379-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak388-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak388-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak39-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak39-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak395-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak395-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak47-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak47-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak54-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak54-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak61-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak61-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak68-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak68-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak76-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak76-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak83-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak83-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak9-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak9-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak90-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak90-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak97-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak97-lod0.xmf
ui\core\presentations\targetsystem\targetsystem.amw
ui\core\presentations\targetsystem\targetsystem.bgf

........
changelog:

• New Feature: Target can now be set directly from within the holomap.
• Added winner of video competition onto in-game advertising sign.
• Improved behaviour of acceleration/deceleration controls when crossing zero speed boundary.
• Improved text-readability of distance and destination texts at target elements.
• Improved performance and responsiveness of UI.
• Improved accuracy of mouse click/pick detection.
• Fixed memory leak in upkeep missions causing large savegames and long game shutdown times.
• Fixed player falling through floor of ship if walking around while in super-highway.
• Fixed broken player movement after certain multi-stage conversations.
• Fixed mouse cursor being stuck hidden and confined when loading a savegame while on a platform.
• Fixed police not picking up all dropped illegal containers from player when scanned.
• Fixed engineer repairing hull too slowly if there are no other damaged elements.
• Fixed shipyards potentially starting to build when something is docking/undocking.
• Fixed ships/stations still shooting at objects when they shouldn't in certain cases.
• Fixed some cases where small ships and drones were dragged by capital ships instead of flying to the correct destination.
• Fixed combat drones not using evade manoeuvers in several cases.
• Fixed missing weapons in playership encyclopedia entry.
• Fixed several issues with crafting mission.
• Fixed several issues with text and localisations.
• Fixed several more causes of crashes.
• Several small performance and memory optimisations
UniTrader
Moderator (Script&Mod)
Moderator (Script&Mod)
Posts: 14571
Joined: Sun, 20. Nov 05, 22:45
x4

Post by UniTrader »

no changes in the XSD files from Beta1 to Beta2.
if not stated otherwise everything i post is licensed under WTFPL

Ich mache keine S&M-Auftragsarbeiten, aber wenn es fragen gibt wie man etwas umsetzen kann helfe ich gerne weiter ;)

I wont do Script&Mod Request work, but if there are questions how to do something i will GLaDly help ;)
w.evans
Posts: 2963
Joined: Tue, 18. Nov 14, 16:23
x4

Post by w.evans »

Files modified between X:R 3.60 Beta 1 and Beta 2

new files:
assets\map\map_parts_template_data\part_targetbracket-collision.xmf
assets\map\map_parts_template_data\part_targetbracket-lod0.xmf
assets\map\map_parts_template_data\waregroup_agricultural-collision.xmf
assets\map\map_parts_template_data\waregroup_agricultural-lod0.xmf
assets\map\map_parts_template_data\waregroup_surfaceel-collision.xmf
assets\map\map_parts_template_data\waregroup_surfaceel-lod0.xmf

changed files:
aiscripts\interrupt.stoporder.xml
aiscripts\player.default.xml

assets\map\map_parts_template.xml
assets\structures\Economy\Agriculture\struct_econ_agri_ar_pmc_s_water_a.xml
assets\structures\Economy\production\struct_econ_prod_wheat.xml
assets\units\size_s\units_size_s_ship_ar_military_07.xml

libraries\aicompat.xml
libraries\contexts.xml
libraries\controlschemes_default.xml
libraries\parameters.xml

md\GM_Patrol.xml
md\NPC_Itemtrader.xml
md\NPC_Upgradetrader.xml
md\Plot_ep1_ch2.xml
md\RML_Battle_Objectives.xml
md\RML_Build_Object.xml
md\Upkeep.xml

t\0001-L007.xml
t\0001-L033.xml
t\0001-L034.xml
t\0001-L039.xml
t\0001-L044.xml
t\0001-L049.xml
t\0001-L082.xml
t\0001-L086.xml
t\0001-L088.xml

ui\addons\ego_detailmonitor\menu_map.lua
ui\addons\ego_gameoptions\gameoptions.lua

.......
assets\map\map_parts_template_data\assets_map_map_parts_template-collision.xmf
assets\map\map_parts_template_data\assets_map_map_parts_template-lod0.xmf
assets\map\map_parts_template_data\part_bg_albion-collision.xmf
assets\map\map_parts_template_data\part_bg_albion-lod0.xmf
assets\map\map_parts_template_data\part_bg_defries-collision.xmf
assets\map\map_parts_template_data\part_bg_defries-lod0.xmf
assets\map\map_parts_template_data\part_bg_galmap-collision.xmf
assets\map\map_parts_template_data\part_bg_galmap-lod0.xmf
assets\map\map_parts_template_data\part_bg_maelstrom-collision.xmf
assets\map\map_parts_template_data\part_bg_maelstrom-lod0.xmf
assets\map\map_parts_template_data\part_bg_omicron-collision.xmf
assets\map\map_parts_template_data\part_bg_omicron-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_01-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_01-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_02-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_02-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_03-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_03-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_04-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_04-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_05-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_05-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_06-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_06-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_07-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_07-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_08-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_08-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_09-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_09-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_10-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_10-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_11-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_11-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_12-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_12-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_13-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_13-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_14-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_14-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_15-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_15-lod0.xmf
assets\map\map_parts_template_data\part_char_0-collision.xmf
assets\map\map_parts_template_data\part_char_0-lod0.xmf
assets\map\map_parts_template_data\part_char_1-collision.xmf
assets\map\map_parts_template_data\part_char_1-lod0.xmf
assets\map\map_parts_template_data\part_char_2-collision.xmf
assets\map\map_parts_template_data\part_char_2-lod0.xmf
assets\map\map_parts_template_data\part_char_3-collision.xmf
assets\map\map_parts_template_data\part_char_3-lod0.xmf
assets\map\map_parts_template_data\part_char_4-collision.xmf
assets\map\map_parts_template_data\part_char_4-lod0.xmf
assets\map\map_parts_template_data\part_char_5-collision.xmf
assets\map\map_parts_template_data\part_char_5-lod0.xmf
assets\map\map_parts_template_data\part_char_6-collision.xmf
assets\map\map_parts_template_data\part_char_6-lod0.xmf
assets\map\map_parts_template_data\part_char_7-collision.xmf
assets\map\map_parts_template_data\part_char_7-lod0.xmf
assets\map\map_parts_template_data\part_char_8-collision.xmf
assets\map\map_parts_template_data\part_char_8-lod0.xmf
assets\map\map_parts_template_data\part_char_9-collision.xmf
assets\map\map_parts_template_data\part_char_9-lod0.xmf
assets\map\map_parts_template_data\part_char_a-collision.xmf
assets\map\map_parts_template_data\part_char_a-lod0.xmf
assets\map\map_parts_template_data\part_char_b-collision.xmf
assets\map\map_parts_template_data\part_char_b-lod0.xmf
assets\map\map_parts_template_data\part_char_c-collision.xmf
assets\map\map_parts_template_data\part_char_c-lod0.xmf
assets\map\map_parts_template_data\part_char_d-collision.xmf
assets\map\map_parts_template_data\part_char_d-lod0.xmf
assets\map\map_parts_template_data\part_char_e-collision.xmf
assets\map\map_parts_template_data\part_char_e-lod0.xmf
assets\map\map_parts_template_data\part_char_f-collision.xmf
assets\map\map_parts_template_data\part_char_f-lod0.xmf
assets\map\map_parts_template_data\part_char_g-collision.xmf
assets\map\map_parts_template_data\part_char_g-lod0.xmf
assets\map\map_parts_template_data\part_char_h-collision.xmf
assets\map\map_parts_template_data\part_char_h-lod0.xmf
assets\map\map_parts_template_data\part_char_i-collision.xmf
assets\map\map_parts_template_data\part_char_i-lod0.xmf
assets\map\map_parts_template_data\part_char_j-collision.xmf
assets\map\map_parts_template_data\part_char_j-lod0.xmf
assets\map\map_parts_template_data\part_char_k-collision.xmf
assets\map\map_parts_template_data\part_char_k-lod0.xmf
assets\map\map_parts_template_data\part_char_l-collision.xmf
assets\map\map_parts_template_data\part_char_l-lod0.xmf
assets\map\map_parts_template_data\part_char_m-collision.xmf
assets\map\map_parts_template_data\part_char_m-lod0.xmf
assets\map\map_parts_template_data\part_char_n-collision.xmf
assets\map\map_parts_template_data\part_char_n-lod0.xmf
assets\map\map_parts_template_data\part_char_o-collision.xmf
assets\map\map_parts_template_data\part_char_o-lod0.xmf
assets\map\map_parts_template_data\part_char_p-collision.xmf
assets\map\map_parts_template_data\part_char_p-lod0.xmf
assets\map\map_parts_template_data\part_char_q-collision.xmf
assets\map\map_parts_template_data\part_char_q-lod0.xmf
assets\map\map_parts_template_data\part_char_r-collision.xmf
assets\map\map_parts_template_data\part_char_r-lod0.xmf
assets\map\map_parts_template_data\part_char_s-collision.xmf
assets\map\map_parts_template_data\part_char_s-lod0.xmf
assets\map\map_parts_template_data\part_char_t-collision.xmf
assets\map\map_parts_template_data\part_char_t-lod0.xmf
assets\map\map_parts_template_data\part_char_u-collision.xmf
assets\map\map_parts_template_data\part_char_u-lod0.xmf
assets\map\map_parts_template_data\part_char_v-collision.xmf
assets\map\map_parts_template_data\part_char_v-lod0.xmf
assets\map\map_parts_template_data\part_char_w-collision.xmf
assets\map\map_parts_template_data\part_char_w-lod0.xmf
assets\map\map_parts_template_data\part_char_x-collision.xmf
assets\map\map_parts_template_data\part_char_x-lod0.xmf
assets\map\map_parts_template_data\part_char_y-collision.xmf
assets\map\map_parts_template_data\part_char_y-lod0.xmf
assets\map\map_parts_template_data\part_char_z-collision.xmf
assets\map\map_parts_template_data\part_char_z-lod0.xmf
assets\map\map_parts_template_data\part_grid-collision.xmf
assets\map\map_parts_template_data\part_grid-lod0.xmf
assets\map\map_parts_template_data\part_icon_cluster-collision.xmf
assets\map\map_parts_template_data\part_icon_cluster-lod0.xmf
assets\map\map_parts_template_data\part_icon_drone-collision.xmf
assets\map\map_parts_template_data\part_icon_drone-lod0.xmf
assets\map\map_parts_template_data\part_icon_gate-collision.xmf
assets\map\map_parts_template_data\part_icon_gate-lod0.xmf
assets\map\map_parts_template_data\part_icon_jb-collision.xmf
assets\map\map_parts_template_data\part_icon_jb-lod0.xmf
assets\map\map_parts_template_data\part_icon_player-collision.xmf
assets\map\map_parts_template_data\part_icon_player-lod0.xmf
assets\map\map_parts_template_data\part_icon_sector-collision.xmf
assets\map\map_parts_template_data\part_icon_sector-lod0.xmf
assets\map\map_parts_template_data\part_icon_shipl-collision.xmf
assets\map\map_parts_template_data\part_icon_shipl-lod0.xmf
assets\map\map_parts_template_data\part_icon_shipm-collision.xmf
assets\map\map_parts_template_data\part_icon_shipm-lod0.xmf
assets\map\map_parts_template_data\part_icon_ships-collision.xmf
assets\map\map_parts_template_data\part_icon_ships-lod0.xmf
assets\map\map_parts_template_data\part_icon_shipxl-collision.xmf
assets\map\map_parts_template_data\part_icon_shipxl-lod0.xmf
assets\map\map_parts_template_data\part_icon_shipxs-collision.xmf
assets\map\map_parts_template_data\part_icon_shipxs-lod0.xmf
assets\map\map_parts_template_data\part_icon_superhighway-collision.xmf
assets\map\map_parts_template_data\part_icon_superhighway-lod0.xmf
assets\map\map_parts_template_data\part_icon_zone-collision.xmf
assets\map\map_parts_template_data\part_icon_zone-lod0.xmf
assets\map\map_parts_template_data\part_overlay-collision.xmf
assets\map\map_parts_template_data\part_overlay-lod0.xmf
assets\map\map_parts_template_data\part_positioncursor-collision.xmf
assets\map\map_parts_template_data\part_positioncursor-lod0.xmf
assets\map\map_parts_template_data\part_radargrid-collision.xmf
assets\map\map_parts_template_data\part_radargrid-lod0.xmf
assets\map\map_parts_template_data\part_seperator-collision.xmf
assets\map\map_parts_template_data\part_seperator-lod0.xmf
assets\map\map_parts_template_data\shipicon_builder_l-collision.xmf
assets\map\map_parts_template_data\shipicon_builder_l-lod0.xmf
assets\map\map_parts_template_data\shipicon_carrier_l-collision.xmf
assets\map\map_parts_template_data\shipicon_carrier_l-lod0.xmf
assets\map\map_parts_template_data\shipicon_carrier_xl-collision.xmf
assets\map\map_parts_template_data\shipicon_carrier_xl-lod0.xmf
assets\map\map_parts_template_data\shipicon_civilian_xs-collision.xmf
assets\map\map_parts_template_data\shipicon_civilian_xs-lod0.xmf
assets\map\map_parts_template_data\shipicon_destroyer_l-collision.xmf
assets\map\map_parts_template_data\shipicon_destroyer_l-lod0.xmf
assets\map\map_parts_template_data\shipicon_destroyer_xl-collision.xmf
assets\map\map_parts_template_data\shipicon_destroyer_xl-lod0.xmf
assets\map\map_parts_template_data\shipicon_drone_combat-collision.xmf
assets\map\map_parts_template_data\shipicon_drone_combat-lod0.xmf
assets\map\map_parts_template_data\shipicon_drone_transport-collision.xmf
assets\map\map_parts_template_data\shipicon_drone_transport-lod0.xmf
assets\map\map_parts_template_data\shipicon_drone_utility-collision.xmf
assets\map\map_parts_template_data\shipicon_drone_utility-lod0.xmf
assets\map\map_parts_template_data\shipicon_fighter_m-collision.xmf
assets\map\map_parts_template_data\shipicon_fighter_m-lod0.xmf
assets\map\map_parts_template_data\shipicon_fighter_s-collision.xmf
assets\map\map_parts_template_data\shipicon_fighter_s-lod0.xmf
assets\map\map_parts_template_data\shipicon_freighter_l-collision.xmf
assets\map\map_parts_template_data\shipicon_freighter_l-lod0.xmf
assets\map\map_parts_template_data\shipicon_freighter_m-collision.xmf
assets\map\map_parts_template_data\shipicon_freighter_m-lod0.xmf
assets\map\map_parts_template_data\shipicon_freighter_xl-collision.xmf
assets\map\map_parts_template_data\shipicon_freighter_xl-lod0.xmf
assets\map\map_parts_template_data\shipicon_frigate_l-collision.xmf
assets\map\map_parts_template_data\shipicon_frigate_l-lod0.xmf
assets\map\map_parts_template_data\shipicon_miner_gas_l-collision.xmf
assets\map\map_parts_template_data\shipicon_miner_gas_l-lod0.xmf
assets\map\map_parts_template_data\shipicon_miner_gas_m-collision.xmf
assets\map\map_parts_template_data\shipicon_miner_gas_m-lod0.xmf
assets\map\map_parts_template_data\shipicon_miner_gas_xl-collision.xmf
assets\map\map_parts_template_data\shipicon_miner_gas_xl-lod0.xmf
assets\map\map_parts_template_data\shipicon_miner_ore_l-collision.xmf
assets\map\map_parts_template_data\shipicon_miner_ore_l-lod0.xmf
assets\map\map_parts_template_data\shipicon_miner_ore_m-collision.xmf
assets\map\map_parts_template_data\shipicon_miner_ore_m-lod0.xmf
assets\map\map_parts_template_data\shipicon_miner_ore_xl-collision.xmf
assets\map\map_parts_template_data\shipicon_miner_ore_xl-lod0.xmf
assets\map\map_parts_template_data\shipicon_police_xs-collision.xmf
assets\map\map_parts_template_data\shipicon_police_xs-lod0.xmf
assets\map\map_parts_template_data\waregroup_energy-collision.xmf
assets\map\map_parts_template_data\waregroup_energy-lod0.xmf
assets\map\map_parts_template_data\waregroup_food-collision.xmf
assets\map\map_parts_template_data\waregroup_food-lod0.xmf
assets\map\map_parts_template_data\waregroup_fuel-collision.xmf
assets\map\map_parts_template_data\waregroup_fuel-lod0.xmf
assets\map\map_parts_template_data\waregroup_gases-collision.xmf
assets\map\map_parts_template_data\waregroup_gases-lod0.xmf
assets\map\map_parts_template_data\waregroup_hightech-collision.xmf
assets\map\map_parts_template_data\waregroup_hightech-lod0.xmf
assets\map\map_parts_template_data\waregroup_ice-collision.xmf
assets\map\map_parts_template_data\waregroup_ice-lod0.xmf
assets\map\map_parts_template_data\waregroup_minerals-collision.xmf
assets\map\map_parts_template_data\waregroup_minerals-lod0.xmf
assets\map\map_parts_template_data\waregroup_missiles-collision.xmf
assets\map\map_parts_template_data\waregroup_missiles-lod0.xmf
assets\map\map_parts_template_data\waregroup_pharmaceutical-collision.xmf
assets\map\map_parts_template_data\waregroup_pharmaceutical-lod0.xmf
assets\map\map_parts_template_data\waregroup_refined-collision.xmf
assets\map\map_parts_template_data\waregroup_refined-lod0.xmf
assets\map\map_parts_template_data\waregroup_shiptech-collision.xmf
assets\map\map_parts_template_data\waregroup_shiptech-lod0.xmf
assets\map\map_parts_template_data\waregroup_upgrades-collision.xmf
assets\map\map_parts_template_data\waregroup_upgrades-lod0.xmf
assets\map\map_parts_template_data\waregroup_water-collision.xmf
assets\map\map_parts_template_data\waregroup_water-lod0.xmf
assets\map\map_parts_template_data\waregroup_weapontech-collision.xmf
assets\map\map_parts_template_data\waregroup_weapontech-lod0.xmf
assets\structures\Economy\Agriculture\struct_econ_agri_ar_pmc_s_water_a_data\assets_structures_economy_agriculture_struct_econ_agri_ar_pmc_s_water_a-collision.xmf
assets\structures\Economy\Agriculture\struct_econ_agri_ar_pmc_s_water_a_data\assets_structures_economy_agriculture_struct_econ_agri_ar_pmc_s_water_a-lod0.xmf
assets\structures\Economy\Agriculture\struct_econ_agri_ar_pmc_s_water_a_data\detail_l_main-collision.xmf
assets\structures\Economy\Agriculture\struct_econ_agri_ar_pmc_s_water_a_data\detail_l_main-lod0.xmf
assets\structures\Economy\Agriculture\struct_econ_agri_ar_pmc_s_water_a_data\fx_shield-collision.xmf
assets\structures\Economy\Agriculture\struct_econ_agri_ar_pmc_s_water_a_data\fx_shield-lod0.xmf
assets\structures\Economy\Agriculture\struct_econ_agri_ar_pmc_s_water_a_data\part_main-collision.xmf
assets\structures\Economy\Agriculture\struct_econ_agri_ar_pmc_s_water_a_data\part_main-lod0.xmf
assets\structures\Economy\Agriculture\struct_econ_agri_ar_pmc_s_water_a_data\part_main-lod1.xmf
assets\structures\Economy\Agriculture\struct_econ_agri_ar_pmc_s_water_a_data\part_main-lod2.xmf
assets\structures\Economy\Agriculture\struct_econ_agri_ar_pmc_s_water_a_data\part_main-lod3.xmf
assets\structures\Economy\Agriculture\struct_econ_agri_ar_pmc_s_water_a_data\part_main_wreck-collision.xmf
assets\structures\Economy\Agriculture\struct_econ_agri_ar_pmc_s_water_a_data\part_main_wreck-lod0.xmf
assets\structures\Economy\Agriculture\struct_econ_agri_ar_pmc_s_water_a_data\part_water-collision.xmf
assets\structures\Economy\Agriculture\struct_econ_agri_ar_pmc_s_water_a_data\part_water-lod0.xmf
assets\structures\Economy\Agriculture\struct_econ_agri_ar_pmc_s_water_a_data\part_water-lod1.xmf
assets\structures\Economy\Agriculture\struct_econ_agri_ar_pmc_s_water_a_data\part_water-lod2.xmf
assets\structures\Economy\Agriculture\STRUCT_ECON_AGRI_AR_PMC_S_WATER_A_DATA.ANI
assets\structures\Economy\production\struct_econ_prod_wheat_data\anim_arm-collision.xmf
assets\structures\Economy\production\struct_econ_prod_wheat_data\anim_arm-lod0.xmf
assets\structures\Economy\production\struct_econ_prod_wheat_data\anim_crane_holder-collision.xmf
assets\structures\Economy\production\struct_econ_prod_wheat_data\anim_crane_holder-lod0.xmf
assets\structures\Economy\production\struct_econ_prod_wheat_data\anim_main-collision.xmf
assets\structures\Economy\production\struct_econ_prod_wheat_data\anim_main-lod0.xmf
assets\structures\Economy\production\struct_econ_prod_wheat_data\anim_main-lod1.xmf
assets\structures\Economy\production\struct_econ_prod_wheat_data\anim_main-lod2.xmf
assets\structures\Economy\production\struct_econ_prod_wheat_data\anim_main-lod3.xmf
assets\structures\Economy\production\struct_econ_prod_wheat_data\anim_main_wreck-collision.xmf
assets\structures\Economy\production\struct_econ_prod_wheat_data\anim_main_wreck-lod0.xmf
assets\structures\Economy\production\struct_econ_prod_wheat_data\anim_vent-collision.xmf
assets\structures\Economy\production\struct_econ_prod_wheat_data\anim_vent-lod0.xmf
assets\structures\Economy\production\struct_econ_prod_wheat_data\assets_structures_economy_production_struct_econ_prod_wheat-collision.xmf
assets\structures\Economy\production\struct_econ_prod_wheat_data\assets_structures_economy_production_struct_econ_prod_wheat-lod0.xmf
assets\structures\Economy\production\struct_econ_prod_wheat_data\detail_l_alpha-collision.xmf
assets\structures\Economy\production\struct_econ_prod_wheat_data\detail_l_alpha-lod0.xmf
assets\structures\Economy\production\struct_econ_prod_wheat_data\detail_l_main-collision.xmf
assets\structures\Economy\production\struct_econ_prod_wheat_data\detail_l_main-lod0.xmf
assets\structures\Economy\production\struct_econ_prod_wheat_data\detail_m_main-collision.xmf
assets\structures\Economy\production\struct_econ_prod_wheat_data\detail_m_main-lod0.xmf
assets\structures\Economy\production\struct_econ_prod_wheat_data\fx_light-collision.xmf
assets\structures\Economy\production\struct_econ_prod_wheat_data\fx_light-lod0.xmf
assets\structures\Economy\production\struct_econ_prod_wheat_data\fx_shield-collision.xmf
assets\structures\Economy\production\struct_econ_prod_wheat_data\fx_shield-lod0.xmf
assets\structures\Economy\production\struct_econ_prod_wheat_data\part_water-collision.xmf
assets\structures\Economy\production\struct_econ_prod_wheat_data\part_water-lod0.xmf
assets\structures\Economy\production\struct_econ_prod_wheat_data\part_water-lod1.xmf
assets\structures\Economy\production\struct_econ_prod_wheat_data\part_water-lod2.xmf
assets\structures\Economy\production\STRUCT_ECON_PROD_WHEAT_DATA.ANI
assets\units\size_s\units_size_s_ship_ar_military_07_data\assets_units_size_s_units_size_s_ship_ar_military_07-collision.xmf
assets\units\size_s\units_size_s_ship_ar_military_07_data\assets_units_size_s_units_size_s_ship_ar_military_07-lod0.xmf
assets\units\size_s\units_size_s_ship_ar_military_07_data\part_main-collision.xmf
assets\units\size_s\units_size_s_ship_ar_military_07_data\part_main-lod0.xmf
assets\units\size_s\units_size_s_ship_ar_military_07_data\part_main-lod1.xmf
assets\units\size_s\units_size_s_ship_ar_military_07_data\part_main-lod2.xmf
assets\units\size_s\units_size_s_ship_ar_military_07_data\part_main-lod3.xmf
assets\units\size_s\units_size_s_ship_ar_military_07_data\part_main_wreck-collision.xmf
assets\units\size_s\units_size_s_ship_ar_military_07_data\part_main_wreck-lod0.xmf

shaderfx\high_spec\XU_effects_fogging_unlit4_dark.FBPC

ui\addons\ego_detailmonitor\menu_map.xpl
ui\addons\ego_gameoptions\gameoptions.xpl

.......
changelog:

• Beta 2 New Feature: Target can now be set directly from within the holomap (improved feature added in 3.60).
• Beta 2 New Feature: Flight assist mode can now be disabled (experimental feature, feedback welcome).
• Beta 2 Fixed memory leak in upkeep missions causing large savegames and long game shutdown times (improves fix in 3.60).
• Beta 2 Fixed several issues with text and localisations (localisations now included).
• Beta 2 Fixed several issues with the Twilight Sentinel plot battle.
• Beta 2 Fixed Plutarch Overwatch station repairing itself after being destroyed.
• Beta 2 Fixed engine rotation of the Eterscel Raider.
• Beta 2 Fixed trade reservation clean up when canceling trade plans on player-owned ships.
• Beta 2 Fixed issues with drone capacity after a drone launch pad is destroyed.
• Beta 2 Fixed not being able to steer after loading certain savegames.
• Beta 2 Fixed several bugs related to launching and docking remote controlled drones.
• Beta 2 Fixed collecting ammo crates adding one more unit of ammo than was in the crate (problem introduced in 3.60).
• Beta 2 Fixed several more causes of crashes.
• Beta 2 Several small performance and memory optimisations.
w.evans
Posts: 2963
Joined: Tue, 18. Nov 14, 16:23
x4

Post by w.evans »

Files modified between X:R 3.60 Beta 2 and Beta 3

aiscripts\lib.ammo.station.xml
aiscripts\trade.performplayertraderun.xml

assets\cutscenecore\startmenu.xml
assets\map\map_parts_template.xml

libraries\aicompat.xml
libraries\controlschemes_default.xml
libraries\parameters.xml
libraries\scriptproperties.xml

md\Conversations.xml
md\LIB_Generic.xml
md\NPC_Staff.xml
md\Plot_ep1_ch2.xml
md\Upkeep.xml
md\Upkeep_Management.xml

t\0001-L007.xml
t\0001-L033.xml
t\0001-L034.xml
t\0001-L039.xml
t\0001-L044.xml
t\0001-L049.xml
t\0001-L082.xml
t\0001-L086.xml
t\0001-L088.xml

ui\addons\ego_detailmonitor\menu_map.lua
ui\addons\ego_detailmonitor\menu_moneytransfer.lua
ui\addons\ego_detailmonitor\menu_object.lua
ui\addons\ego_detailmonitor\menu_orders.lua
ui\addons\ego_detailmonitor\menu_setmoneylimit.lua
ui\addons\ego_detailmonitor\menu_trading_details.lua
ui\addons\ego_detailmonitor\menu_trading_offers.lua
ui\addons\ego_detailmonitorHelper\helper.lua
ui\core\Lua\AbilityMenuHandling.lua
ui\core\Lua\CrosshairHandling.lua
ui\core\Lua\DroneHUDHandling.lua
ui\core\Lua\EventMonitor.lua
ui\core\Lua\hud_eventmonitor.lua
ui\core\Lua\loading.lua
ui\core\Lua\targetsystem.lua
ui\core\Lua\widget_detailmonitor.lua
ui\core\Lua\widget_fullscreen.lua
ui\core\Lua\widget_fullscreen2.lua
ui\core\presentations\targetsystem\targetsystem.dae

.......
assets\fx\gui\textures\mainmenu\mm_fg.gz
assets\fx\gui\textures\options_menu\menue_fg.gz
assets\map\map_parts_template_data\assets_map_map_parts_template-collision.xmf
assets\map\map_parts_template_data\assets_map_map_parts_template-lod0.xmf
assets\map\map_parts_template_data\part_bg_albion-collision.xmf
assets\map\map_parts_template_data\part_bg_albion-lod0.xmf
assets\map\map_parts_template_data\part_bg_defries-collision.xmf
assets\map\map_parts_template_data\part_bg_defries-lod0.xmf
assets\map\map_parts_template_data\part_bg_galmap-collision.xmf
assets\map\map_parts_template_data\part_bg_galmap-lod0.xmf
assets\map\map_parts_template_data\part_bg_maelstrom-collision.xmf
assets\map\map_parts_template_data\part_bg_maelstrom-lod0.xmf
assets\map\map_parts_template_data\part_bg_omicron-collision.xmf
assets\map\map_parts_template_data\part_bg_omicron-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_01-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_01-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_02-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_02-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_03-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_03-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_04-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_04-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_05-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_05-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_06-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_06-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_07-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_07-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_08-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_08-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_09-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_09-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_10-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_10-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_11-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_11-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_12-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_12-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_13-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_13-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_14-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_14-lod0.xmf
assets\map\map_parts_template_data\part_bg_sec_15-collision.xmf
assets\map\map_parts_template_data\part_bg_sec_15-lod0.xmf
assets\map\map_parts_template_data\part_char_0-collision.xmf
assets\map\map_parts_template_data\part_char_0-lod0.xmf
assets\map\map_parts_template_data\part_char_1-collision.xmf
assets\map\map_parts_template_data\part_char_1-lod0.xmf
assets\map\map_parts_template_data\part_char_2-collision.xmf
assets\map\map_parts_template_data\part_char_2-lod0.xmf
assets\map\map_parts_template_data\part_char_3-collision.xmf
assets\map\map_parts_template_data\part_char_3-lod0.xmf
assets\map\map_parts_template_data\part_char_4-collision.xmf
assets\map\map_parts_template_data\part_char_4-lod0.xmf
assets\map\map_parts_template_data\part_char_5-collision.xmf
assets\map\map_parts_template_data\part_char_5-lod0.xmf
assets\map\map_parts_template_data\part_char_6-collision.xmf
assets\map\map_parts_template_data\part_char_6-lod0.xmf
assets\map\map_parts_template_data\part_char_7-collision.xmf
assets\map\map_parts_template_data\part_char_7-lod0.xmf
assets\map\map_parts_template_data\part_char_8-collision.xmf
assets\map\map_parts_template_data\part_char_8-lod0.xmf
assets\map\map_parts_template_data\part_char_9-collision.xmf
assets\map\map_parts_template_data\part_char_9-lod0.xmf
assets\map\map_parts_template_data\part_char_a-collision.xmf
assets\map\map_parts_template_data\part_char_a-lod0.xmf
assets\map\map_parts_template_data\part_char_b-collision.xmf
assets\map\map_parts_template_data\part_char_b-lod0.xmf
assets\map\map_parts_template_data\part_char_c-collision.xmf
assets\map\map_parts_template_data\part_char_c-lod0.xmf
assets\map\map_parts_template_data\part_char_d-collision.xmf
assets\map\map_parts_template_data\part_char_d-lod0.xmf
assets\map\map_parts_template_data\part_char_e-collision.xmf
assets\map\map_parts_template_data\part_char_e-lod0.xmf
assets\map\map_parts_template_data\part_char_f-collision.xmf
assets\map\map_parts_template_data\part_char_f-lod0.xmf
assets\map\map_parts_template_data\part_char_g-collision.xmf
assets\map\map_parts_template_data\part_char_g-lod0.xmf
assets\map\map_parts_template_data\part_char_h-collision.xmf
assets\map\map_parts_template_data\part_char_h-lod0.xmf
assets\map\map_parts_template_data\part_char_i-collision.xmf
assets\map\map_parts_template_data\part_char_i-lod0.xmf
assets\map\map_parts_template_data\part_char_j-collision.xmf
assets\map\map_parts_template_data\part_char_j-lod0.xmf
assets\map\map_parts_template_data\part_char_k-collision.xmf
assets\map\map_parts_template_data\part_char_k-lod0.xmf
assets\map\map_parts_template_data\part_char_l-collision.xmf
assets\map\map_parts_template_data\part_char_l-lod0.xmf
assets\map\map_parts_template_data\part_char_m-collision.xmf
assets\map\map_parts_template_data\part_char_m-lod0.xmf
assets\map\map_parts_template_data\part_char_n-collision.xmf
assets\map\map_parts_template_data\part_char_n-lod0.xmf
assets\map\map_parts_template_data\part_char_o-collision.xmf
assets\map\map_parts_template_data\part_char_o-lod0.xmf
assets\map\map_parts_template_data\part_char_p-collision.xmf
assets\map\map_parts_template_data\part_char_p-lod0.xmf
assets\map\map_parts_template_data\part_char_q-collision.xmf
assets\map\map_parts_template_data\part_char_q-lod0.xmf
assets\map\map_parts_template_data\part_char_r-collision.xmf
assets\map\map_parts_template_data\part_char_r-lod0.xmf
assets\map\map_parts_template_data\part_char_s-collision.xmf
assets\map\map_parts_template_data\part_char_s-lod0.xmf
assets\map\map_parts_template_data\part_char_t-collision.xmf
assets\map\map_parts_template_data\part_char_t-lod0.xmf
assets\map\map_parts_template_data\part_char_u-collision.xmf
assets\map\map_parts_template_data\part_char_u-lod0.xmf
assets\map\map_parts_template_data\part_char_v-collision.xmf
assets\map\map_parts_template_data\part_char_v-lod0.xmf
assets\map\map_parts_template_data\part_char_w-collision.xmf
assets\map\map_parts_template_data\part_char_w-lod0.xmf
assets\map\map_parts_template_data\part_char_x-collision.xmf
assets\map\map_parts_template_data\part_char_x-lod0.xmf
assets\map\map_parts_template_data\part_char_y-collision.xmf
assets\map\map_parts_template_data\part_char_y-lod0.xmf
assets\map\map_parts_template_data\part_char_z-collision.xmf
assets\map\map_parts_template_data\part_char_z-lod0.xmf
assets\map\map_parts_template_data\part_grid-collision.xmf
assets\map\map_parts_template_data\part_grid-lod0.xmf
assets\map\map_parts_template_data\part_icon_cluster-collision.xmf
assets\map\map_parts_template_data\part_icon_cluster-lod0.xmf
assets\map\map_parts_template_data\part_icon_drone-collision.xmf
assets\map\map_parts_template_data\part_icon_drone-lod0.xmf
assets\map\map_parts_template_data\part_icon_gate-collision.xmf
assets\map\map_parts_template_data\part_icon_gate-lod0.xmf
assets\map\map_parts_template_data\part_icon_jb-collision.xmf
assets\map\map_parts_template_data\part_icon_jb-lod0.xmf
assets\map\map_parts_template_data\part_icon_player-collision.xmf
assets\map\map_parts_template_data\part_icon_player-lod0.xmf
assets\map\map_parts_template_data\part_icon_sector-collision.xmf
assets\map\map_parts_template_data\part_icon_sector-lod0.xmf
assets\map\map_parts_template_data\part_icon_shipl-collision.xmf
assets\map\map_parts_template_data\part_icon_shipl-lod0.xmf
assets\map\map_parts_template_data\part_icon_shipm-collision.xmf
assets\map\map_parts_template_data\part_icon_shipm-lod0.xmf
assets\map\map_parts_template_data\part_icon_ships-collision.xmf
assets\map\map_parts_template_data\part_icon_ships-lod0.xmf
assets\map\map_parts_template_data\part_icon_shipxl-collision.xmf
assets\map\map_parts_template_data\part_icon_shipxl-lod0.xmf
assets\map\map_parts_template_data\part_icon_shipxs-collision.xmf
assets\map\map_parts_template_data\part_icon_shipxs-lod0.xmf
assets\map\map_parts_template_data\part_icon_superhighway-collision.xmf
assets\map\map_parts_template_data\part_icon_superhighway-lod0.xmf
assets\map\map_parts_template_data\part_icon_zone-collision.xmf
assets\map\map_parts_template_data\part_icon_zone-lod0.xmf
assets\map\map_parts_template_data\part_overlay-collision.xmf
assets\map\map_parts_template_data\part_overlay-lod0.xmf
assets\map\map_parts_template_data\part_positioncursor-collision.xmf
assets\map\map_parts_template_data\part_positioncursor-lod0.xmf
assets\map\map_parts_template_data\part_radargrid-collision.xmf
assets\map\map_parts_template_data\part_radargrid-lod0.xmf
assets\map\map_parts_template_data\part_seperator-collision.xmf
assets\map\map_parts_template_data\part_seperator-lod0.xmf
assets\map\map_parts_template_data\part_targetbracket-collision.xmf
assets\map\map_parts_template_data\part_targetbracket-lod0.xmf
assets\map\map_parts_template_data\shipicon_builder_l-collision.xmf
assets\map\map_parts_template_data\shipicon_builder_l-lod0.xmf
assets\map\map_parts_template_data\shipicon_carrier_l-collision.xmf
assets\map\map_parts_template_data\shipicon_carrier_l-lod0.xmf
assets\map\map_parts_template_data\shipicon_carrier_xl-collision.xmf
assets\map\map_parts_template_data\shipicon_carrier_xl-lod0.xmf
assets\map\map_parts_template_data\shipicon_civilian_xs-collision.xmf
assets\map\map_parts_template_data\shipicon_civilian_xs-lod0.xmf
assets\map\map_parts_template_data\shipicon_destroyer_l-collision.xmf
assets\map\map_parts_template_data\shipicon_destroyer_l-lod0.xmf
assets\map\map_parts_template_data\shipicon_destroyer_xl-collision.xmf
assets\map\map_parts_template_data\shipicon_destroyer_xl-lod0.xmf
assets\map\map_parts_template_data\shipicon_drone_combat-collision.xmf
assets\map\map_parts_template_data\shipicon_drone_combat-lod0.xmf
assets\map\map_parts_template_data\shipicon_drone_transport-collision.xmf
assets\map\map_parts_template_data\shipicon_drone_transport-lod0.xmf
assets\map\map_parts_template_data\shipicon_drone_utility-collision.xmf
assets\map\map_parts_template_data\shipicon_drone_utility-lod0.xmf
assets\map\map_parts_template_data\shipicon_fighter_m-collision.xmf
assets\map\map_parts_template_data\shipicon_fighter_m-lod0.xmf
assets\map\map_parts_template_data\shipicon_fighter_s-collision.xmf
assets\map\map_parts_template_data\shipicon_fighter_s-lod0.xmf
assets\map\map_parts_template_data\shipicon_freighter_l-collision.xmf
assets\map\map_parts_template_data\shipicon_freighter_l-lod0.xmf
assets\map\map_parts_template_data\shipicon_freighter_m-collision.xmf
assets\map\map_parts_template_data\shipicon_freighter_m-lod0.xmf
assets\map\map_parts_template_data\shipicon_freighter_xl-collision.xmf
assets\map\map_parts_template_data\shipicon_freighter_xl-lod0.xmf
assets\map\map_parts_template_data\shipicon_frigate_l-collision.xmf
assets\map\map_parts_template_data\shipicon_frigate_l-lod0.xmf
assets\map\map_parts_template_data\shipicon_miner_gas_l-collision.xmf
assets\map\map_parts_template_data\shipicon_miner_gas_l-lod0.xmf
assets\map\map_parts_template_data\shipicon_miner_gas_m-collision.xmf
assets\map\map_parts_template_data\shipicon_miner_gas_m-lod0.xmf
assets\map\map_parts_template_data\shipicon_miner_gas_xl-collision.xmf
assets\map\map_parts_template_data\shipicon_miner_gas_xl-lod0.xmf
assets\map\map_parts_template_data\shipicon_miner_ore_l-collision.xmf
assets\map\map_parts_template_data\shipicon_miner_ore_l-lod0.xmf
assets\map\map_parts_template_data\shipicon_miner_ore_m-collision.xmf
assets\map\map_parts_template_data\shipicon_miner_ore_m-lod0.xmf
assets\map\map_parts_template_data\shipicon_miner_ore_xl-collision.xmf
assets\map\map_parts_template_data\shipicon_miner_ore_xl-lod0.xmf
assets\map\map_parts_template_data\shipicon_police_xs-collision.xmf
assets\map\map_parts_template_data\shipicon_police_xs-lod0.xmf
assets\map\map_parts_template_data\waregroup_agricultural-collision.xmf
assets\map\map_parts_template_data\waregroup_agricultural-lod0.xmf
assets\map\map_parts_template_data\waregroup_energy-collision.xmf
assets\map\map_parts_template_data\waregroup_energy-lod0.xmf
assets\map\map_parts_template_data\waregroup_food-collision.xmf
assets\map\map_parts_template_data\waregroup_food-lod0.xmf
assets\map\map_parts_template_data\waregroup_fuel-collision.xmf
assets\map\map_parts_template_data\waregroup_fuel-lod0.xmf
assets\map\map_parts_template_data\waregroup_gases-collision.xmf
assets\map\map_parts_template_data\waregroup_gases-lod0.xmf
assets\map\map_parts_template_data\waregroup_hightech-collision.xmf
assets\map\map_parts_template_data\waregroup_hightech-lod0.xmf
assets\map\map_parts_template_data\waregroup_ice-collision.xmf
assets\map\map_parts_template_data\waregroup_ice-lod0.xmf
assets\map\map_parts_template_data\waregroup_minerals-collision.xmf
assets\map\map_parts_template_data\waregroup_minerals-lod0.xmf
assets\map\map_parts_template_data\waregroup_missiles-collision.xmf
assets\map\map_parts_template_data\waregroup_missiles-lod0.xmf
assets\map\map_parts_template_data\waregroup_pharmaceutical-collision.xmf
assets\map\map_parts_template_data\waregroup_pharmaceutical-lod0.xmf
assets\map\map_parts_template_data\waregroup_refined-collision.xmf
assets\map\map_parts_template_data\waregroup_refined-lod0.xmf
assets\map\map_parts_template_data\waregroup_shiptech-collision.xmf
assets\map\map_parts_template_data\waregroup_shiptech-lod0.xmf
assets\map\map_parts_template_data\waregroup_surfaceel-collision.xmf
assets\map\map_parts_template_data\waregroup_surfaceel-lod0.xmf
assets\map\map_parts_template_data\waregroup_upgrades-collision.xmf
assets\map\map_parts_template_data\waregroup_upgrades-lod0.xmf
assets\map\map_parts_template_data\waregroup_water-collision.xmf
assets\map\map_parts_template_data\waregroup_water-lod0.xmf
assets\map\map_parts_template_data\waregroup_weapontech-collision.xmf
assets\map\map_parts_template_data\waregroup_weapontech-lod0.xmf

ui\addons\ego_detailmonitor\menu_map.xpl
ui\addons\ego_detailmonitor\menu_moneytransfer.xpl
ui\addons\ego_detailmonitor\menu_object.xpl
ui\addons\ego_detailmonitor\menu_orders.xpl
ui\addons\ego_detailmonitor\menu_setmoneylimit.xpl
ui\addons\ego_detailmonitor\menu_trading_details.xpl
ui\addons\ego_detailmonitor\menu_trading_offers.xpl
ui\addons\ego_detailmonitorHelper\helper.xpl
ui\core\Lua\AbilityMenuHandling.xpl
ui\core\Lua\CrosshairHandling.xpl
ui\core\Lua\DroneHUDHandling.xpl
ui\core\Lua\EventMonitor.xpl
ui\core\Lua\hud_eventmonitor.xpl
ui\core\Lua\loading.xpl
ui\core\Lua\targetsystem.xpl
ui\core\Lua\widget_detailmonitor.xpl
ui\core\Lua\widget_fullscreen.xpl
ui\core\Lua\widget_fullscreen2.xpl
ui\core\presentations\targetsystem\targetsystem\ak105-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak105-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak112-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak112-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak119-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak119-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak126-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak126-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak134-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak134-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak141-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak141-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak148-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak148-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak155-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak155-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak163-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak163-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak170-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak170-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak178-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak178-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak18-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak18-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak187-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak187-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak202-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak202-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak209-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak209-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak217-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak217-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak224-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak224-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak238-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak238-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak244-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak244-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak25-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak25-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak266-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak266-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak32-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak32-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak371-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak371-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak379-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak379-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak388-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak388-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak39-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak39-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak395-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak395-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak47-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak47-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak54-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak54-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak61-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak61-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak68-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak68-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak76-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak76-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak83-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak83-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak9-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak9-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak90-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak90-lod0.xmf
ui\core\presentations\targetsystem\targetsystem\ak97-collision.xmf
ui\core\presentations\targetsystem\targetsystem\ak97-lod0.xmf
ui\core\presentations\targetsystem\targetsystem.amw
ui\core\presentations\targetsystem\targetsystem.bgf
ui\core\presentations\targetsystem\targetsystem.bsg

.......
changelog:

• Beta 3 New Feature: Target can now be set directly from within the holomap (improved feature added in 3.60, feedback welcome).
• Beta 3 New Feature: Flight assist mode can now be disabled (improved experimental feature, feedback welcome).
• Beta 3 Improved readability of start menu, options menu and sidebar by removing "scan lines".
• Beta 3 Improved accuracy of out-of-sector trade lane calculations resulting in faster trades via Cargolifters URVs.
• Beta 3 Fixed some cases where mouse-picking positions on menus were incorrect.
• Beta 3 Fixed distance text at target elements not being centered.
• Beta 3 Fixed details menu for ships under construction.
• Beta 3 Fixed some incorrect speed values in menus.
• Beta 3 Fixed problem highlighting station modules by clicking on them in the map.
• Beta 3 Fixed incorrect part positions in holomap detail view.
• Beta 3 Fixed accuracy issues with trade prices in savegames.
• Beta 3 Fixed ships stopping shooting at targets while they shouldn't (problem introduced in 3.60 Beta 2).
• Beta 3 Fixed rare cases of turrets trying to shoot through other objects which are in line-of-sight of their actual target.
• Beta 3 Fixed rare cases of sound-effects coming from the wrong positions in the cockpit or during remote control.
• Beta 3 Fixed several causes for managers reporting incorrect recommended budget and transferring too much money to player account.
• Beta 3 Fixed NPC built stations in the plot from sometimes never being completed by allowing a new builder ship to be ordered.
• Beta 3 Fixed issue causing excessive stalls when quitting a game session.
• Beta 3 Fixed several more causes of crashes.
• Beta 3 Fixed issue causing performance to degrade slowly over a long game session.
• Beta 3 Several small performance and memory optimisations.

Return to “X Rebirth - Scripts and Modding”