Page 5 of 9

Re: Please Report Missing and/or Placeholder Text

Posted: Sat Sep 30, 2017 8:02 pm
by sven
nweismuller wrote:1) The description for the Cybernetic Organisms technology is just a offhand reference, neither providing lore nor game effects for the technology.


Yes, I blanked on this one. Arioch was going to write something for me to put in there before anyone saw that placeholder text. But, it looks like that got out into the wild before we fixed it. :oops:

Re: Please Report Missing and/or Placeholder Text

Posted: Sat Sep 30, 2017 9:02 pm
by Arioch
There is going to be a lot of missing or placeholder text before I have a chance to go in and write proper replacements. I wouldn't worry too much about that until we get close to having a release candidate.

Re: Please Report Missing and/or Placeholder Text

Posted: Tue Oct 03, 2017 1:05 am
by nweismuller
Arioch wrote:There is going to be a lot of missing or placeholder text before I have a chance to go in and write proper replacements. I wouldn't worry too much about that until we get close to having a release candidate.


Not really 'placeholder' so much as default, but in that process you should likely consider replacements for the default trade charter diplomatic text for them. I sincerely doubt the Tinkers are 'excited' by 'exotic Phidi goods', heh.

Re: Please Report Missing and/or Placeholder Text

Posted: Tue Oct 03, 2017 1:41 am
by Arioch
nweismuller wrote:
Arioch wrote:There is going to be a lot of missing or placeholder text before I have a chance to go in and write proper replacements. I wouldn't worry too much about that until we get close to having a release candidate.


Not really 'placeholder' so much as default, but in that process you should likely consider replacements for the default trade charter diplomatic text for them. I sincerely doubt the Tinkers are 'excited' by 'exotic Phidi goods', heh.

Of course.

Re: Please Report Missing and/or Placeholder Text

Posted: Thu Oct 19, 2017 4:22 pm
by Chasm
Dreadstar superheavy mount no longer has an info link, and breaks weapon type rules for siege weapons. Super-dreadnought one does work properly, however as do the 2 Orthin siege capable ships. Looks like the dreadstar got missed when the weapon type got changed.

Re: Please Report Missing and/or Placeholder Text

Posted: Thu Oct 19, 2017 7:14 pm
by nweismuller
Following the 'Harmonized' link from the 'Disconnected' help text leads to <missing INFO[Harmonization]>.

Re: Please Report Missing and/or Placeholder Text

Posted: Sun Oct 22, 2017 2:41 pm
by nweismuller
Well, the DLC is out, and Subspace Networking remains the one technology I am aware of that lacks any flavor text. (Flavor text would be particularly welcome for Subspace Networking, insofar as it hints at why its primary game effect is cheaper shipbuilding.)

Re: Please Report Missing and/or Placeholder Text

Posted: Thu Oct 26, 2017 5:26 pm
by bjg
game_5283

Orthin_mercenary_name_1.PNG
Orthin_mercenary_name_1.PNG (179.33 KiB) Viewed 50071 times

Orthin_mercenary_name_2.PNG
Orthin_mercenary_name_2.PNG (361.69 KiB) Viewed 50071 times

I'm pretty sure the Orthin mercenary company had the different name.

Re: Please Report Missing and/or Placeholder Text

Posted: Thu Oct 26, 2017 5:28 pm
by bjg
BTW, the Haduir's leader back is still the back of the Teros. Even my wife had noticed having a glimpse at my screen.

Re: Please Report Missing and/or Placeholder Text

Posted: Fri Oct 27, 2017 4:24 am
by Arioch
bjg wrote:I'm pretty sure the Orthin mercenary company had the different name.

"Singularities" is the correct name for the Orthin mercenary company.

bjg wrote:BTW, the Haduir's leader back is still the back of the Teros. Even my wife had noticed having a glimpse at my screen.

Yeah, still missing. Will be fixed soon.

Re: Please Report Missing and/or Placeholder Text

Posted: Sat Oct 28, 2017 3:03 pm
by zolobolo
Tinkers race description in Diplomacy menu lists "TODO2 right next to "Pacifist"

Re: Please Report Missing and/or Placeholder Text

Posted: Sat Oct 28, 2017 6:12 pm
by Arioch
zolobolo wrote:Tinkers race description in Diplomacy menu lists "TODO2 right next to "Pacifist"

Not sure which screen you're talking about.

Re: Please Report Missing and/or Placeholder Text

Posted: Sun Oct 29, 2017 7:15 am
by zolobolo
Arioch wrote:
zolobolo wrote:Tinkers race description in Diplomacy menu lists "TODO2 right next to "Pacifist"

Not sure which screen you're talking about.

Diplomacy screen when dealing with the leader - offering trade

Re: Please Report Missing and/or Placeholder Text

Posted: Sun Oct 29, 2017 5:39 pm
by Arioch
zolobolo wrote:
Arioch wrote:
zolobolo wrote:Tinkers race description in Diplomacy menu lists "TODO2 right next to "Pacifist"

Not sure which screen you're talking about.

Diplomacy screen when dealing with the leader - offering trade

What faction are you and what leader are you talking to when you see this? The description for Tinkers should be "Aggressive, Imperialist". I can see in the code where is says "Pacifist, TODO", but this is a case that shouldn't be happening. You must be in some weird case where the "species" variable isn't properly defined.

Code: Select all

EmpireProperty.agendas = weak_memoizeNN | function(empire)

  if empire.monster_faction == 'marauder'
    return set('Aggressive','Mercenary')
  end

   if empire.monster_faction == 'arda'
      return set('Trader','Unknown Agenda')
   end
 
  local species in empire

  if species == 'phidi'
    return set('Peace Loving','Friendly','Merchant')
  end

  if species == 'orthin'
    return set('Isolationist','Scientist')
  end

  if species == 'human'
    return set('Survivalist')
  end

  if species =='yoral'
    return set('Pragmatic','Aggressive')
  end
 
  if species =='haduir'
    return set('Imperialist')
  end

  if species=='gremak'
    return set('Aggressive', 'Ambitious')
  end

  if species == 'teros'
    return set('Aggressive', 'Ambitious')
  end

   if species=='tinker'
      return set('Aggressive','Imperialist')
   end

  return set('Pacifist','TODO')
end

Re: Please Report Missing and/or Placeholder Text

Posted: Sun Oct 29, 2017 7:19 pm
by zolobolo
Arioch wrote:What faction are you and what leader are you talking to when you see this? The description for Tinkers should be "Aggressive, Imperialist". I can see in the code where is says "Pacifist, TODO", but this is a case that shouldn't be happening. You must be in some weird case where the "species" variable isn't properly defined.

I am playing as Gremak against two Tinker factions (maybe it only occurs if multiple instances of the same faction are present?)

Here is the screenshot