Reveal all HSAP without ‘modified’ tag

This is a log rather than a tutorial. It does one very specific thing, to reveal all HSAPs without getting 'modified' tag. Though I think the method of injecting/calling script without modified tag is worth sharing.

Senario

I have my HQ deployed at Unclaimed Sector behind Xenon Secot 524. So When I learned there could be a Unclaimed Sector beta but it's not in my game due to some game start randomness I try to bring it back without losing my game progress or getting a 'modified' tag.

Tools

Procedure

  • write a script z.cheat.mkmark.revealall.hsap.xml to reveal all HSAPs based on cycrow's revealall cheat script, and add a fake signiture
  • extract plugin.turbo.hotkey.xml from corresponding pck file, backup the pck, then replace the pck by a modified xml where z.cheat.mkmark.revealall.hsap are replaced by plugin.turbo.activate
  • follow the 'Unmodifier' instruction to launch a game
  • activate turbo boost in game

the plain script of z.cheat.mkmark.revealall.hsap.xml

$main.universe = get global variable: name='main.universe'
skip if $main.universe -> exists
  $main.universe = get sector from universe index: x=0, y=0
skip if $main.universe -> exists
  $main.universe = [PLAYERSHIP] -> get sector

$x = get max sectors in x direction
while $x
  $y = get max sectors in y direction
  dec $x =
  while $y
    dec $y =

    $sector = get sector from universe index: x=$x, y=$y
    skip if $sector -> exists
      continue

    $flags = [Find.ExcludeTerranGates] | [Find.ExcludeGates] | [Find.Hyperspeed]
    $hsap = find gate: flags=$flags, refobj=$sector, max dist=null, refpos=null
    if $hsap -> exists
      if $hsap ->is hyperspeed access point
        if not $hsap ->is hsap discoverable
          if is valid route between sectors $main.universe and $sector
            $hsap -> set hsap discoverable [TRUE]
          end
        end
      end
    end

  end
end
return null

Reference

X3FL – Board Q with 0 Casualty

Boarding a Xenon Q with 0 casualty was easy in TC since one can save load at each deck. Need a little more SL in AP, but was easier than P IIRC. Now it's very hard, but I finally made it after 717 attempts.

So I lower the Q's shield, launch 21 marines, initiate the jump sequence, keep shields low, and save right before boarding pods hit Q. After each reload, once the jump is completed, I open the property menu to watch the marine status, take a screenshot at the hacking stage, save the game, and copy the save to somewhere else.

I wrote a .ahk script to automate the above process, gathering a lot of saves and corresponding screenshots. The screenshots are later processed and clustered using python.

Of all the 793 scenarios recorded, 101 times Q launched a Firestorm Torpedo against me but ironically destroyed itself due to close-range detonation by my anti-missile system.

Of the remaining 692 scenarios, 447 times the marines did not survive till hacking the core. The other 245 (almost) successful scenarios have a distribution of remaining crews as follows at the hacking stage. Note there are occasions when less than 16 marines made it to this stage but were not eliminated.

Only in one scenario, at the 717th attempt, did all 21 crews survive the operation.

Project: X3-notoriety-hack

mkmark/X3-notoriety-hack

X3-notoriety-hack

These Cheat Engine scripts allow direct notoriety modification of all races in X3 including all major races, pirates, companies (in X3FL), Xenon and Kha'ak, without activating in-game script editor, thus leaving the game 'unmodified'.

Possible extended usage includes modifying relationship among races directly.

Usage

Install cheat engine, launch and enter game, launch script, wait a few seconds until notoriety values are shown, double click to modify.

Notoriety points - level conversion can be found here.

Limits

Tested on X3FL 1.2, X3AP 3.3. Expected to work on all versions, even X3TC. Will not work properly / will need modification if relationship among races is different from current status as in normal game start.

Motivation

Agents diplomacy exploit is fixed in X3FL 1.2. The dynamic relationship system, despite interesting, become too troublesome to deal with, and unrealistically strict compared to real life diplomacy such that it kills fun. Thus this script is written to save the trouble. Feel free to use or not, and at your own risk.

Mechanism

Inspired by X3TCX3APRanks_aob.CT by Schnitzelmaker. Had difficulty locating static pointers so AOB scan is used. Observation of relevant memory address shows that relationship among races are stored as 4 bytes signed integer separated by 0x01. AOB strategy optimized. Rewritten in Lua. Welcome to discuss.

Project: X3FL dynamic relationships

mkmark/X3FL-dynamic-relationships

X3FL dynamic relationships

Originally posted on forum.egosoft.com

The interactive tool is located at

X3FL-dynamic-relationships-tool.ipynb

Moreover, an interactive analysis report is located at

X3FL-dynamic-relationships.ipynb


This is NOT JUST a dynamic relationships stability checking tool. It gives you optimized strategy to achieve specific relationship, as well as its workload and efficiency.

For example, if you are to become friends with everyone but Yaki, Pirates, and Terran, the best strategy is to improve relationship with everyone but not Yaki, Pirates, Terran, AND TELADI, which is quite contrary to intuition.

The logic behind this strategy is that by improving the relationship with Teladi's ally, it would already make notoriety points of more than enough to achieve good relationship with Teladi, which is verified by the tool.


This is a feature not planned but discovered during the analysis. Instead of blazenclaw's strategy to recursively improving relationship with the race of worst relationship, this tool generates solutions in a more mathematical way that allows the strategy to be optimized.


I was really intrigued by the new dynamic relation system but could not find a source telling me what is actually happening behind all the notoriety shift, so when I found blazenclaw's work I was very excited.

blazenclaw has done a lot in researching the dynamic relationship, and gave several lists of enemy combo to choose from(see his latest progress here). I was not aware of what approach he was using at then this but I wanted to explore the problem myself so I write a tool to address this.

The result is slightly different from blazenclaw's work. Long story short,

  • A simple tool is developed that allows to generate best strategy to achieve desired relationships
  • All 283 possible combos are given with total workload and efficiency
  • The only two options to maintain at most 3 enemies (races, workload, efficiency)
    • Terran - Yaki - Paranid, 195.74987462921916, 0.06130272125450846
    • Pirates - Terran - Yaki, 162.4439368085863, 0.07387163987622415
  • 4 options to keep good relationship with all 6 major races with least enemies (5) are listed as below:
    • Atreus - Pirates - Duke's - Strong Arms - Yaki, 115.80946764695183, 0.08634872608589532
    • OTAS - Pirates - Duke's - Strong Arms - Yaki, 55.18972548571193, 0.18119314622409022
    • Atreus - TerraCorp - Pirates - Duke's - Yaki, 280.2498134147285, 0.03568245016171151
    • OTAS - Atreus - Pirates - Duke's - Yaki, 59.131288178803246, 0.16911520631449212

Credits to blazenclaw, Deianeira from forum.egosoft.com

X3 可利用BUG合集

Original post on deeptimes 以下内容均为本人凭记忆手打,如有出错遗漏欢迎各位大佬指出。 所有BUG基于原版(Vanilla),因为修改版(Modified)作弊可以直接用脚本编辑器调出,不需要利用卡BUG这种低阶方式。所有列出的BUG不会导致Modified Tag。 鉴于LZ本人只玩过TC2.5, AP3.3, 所以下文的适用版本号都是凭印象给的,基本准(cuo)确(wu)。当然如果你看到了Lv.6-7, 你会发现神马版本号都是浮云。