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.nweismuller wrote: 1) The description for the Cybernetic Organisms technology is just a offhand reference, neither providing lore nor game effects for the technology.
Please Report Missing and/or Placeholder Text
- sven
- Site Admin
- Posts: 1621
- Joined: Sat Jan 31, 2015 10:24 pm
- Location: British Columbia, Canada
- Contact:
Re: Please Report Missing and/or Placeholder Text
Re: Please Report Missing and/or Placeholder Text
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.
-
- Posts: 425
- Joined: Wed Apr 29, 2015 2:33 am
Re: Please Report Missing and/or Placeholder Text
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.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.
Re: Please Report Missing and/or Placeholder Text
Of course.nweismuller wrote: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.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.
Re: Please Report Missing and/or Placeholder Text
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.
-
- Posts: 425
- Joined: Wed Apr 29, 2015 2:33 am
Re: Please Report Missing and/or Placeholder Text
Following the 'Harmonized' link from the 'Disconnected' help text leads to <missing INFO[Harmonization]>.
-
- Posts: 425
- Joined: Wed Apr 29, 2015 2:33 am
Re: Please Report Missing and/or Placeholder Text
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
game_5283
I'm pretty sure the Orthin mercenary company had the different name.
I'm pretty sure the Orthin mercenary company had the different name.
Re: Please Report Missing and/or Placeholder Text
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
"Singularities" is the correct name for the Orthin mercenary company.bjg wrote:I'm pretty sure the Orthin mercenary company had the different name.
Yeah, still missing. Will be fixed soon.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.
Re: Please Report Missing and/or Placeholder Text
Tinkers race description in Diplomacy menu lists "TODO2 right next to "Pacifist"
Re: Please Report Missing and/or Placeholder Text
Not sure which screen you're talking about.zolobolo wrote:Tinkers race description in Diplomacy menu lists "TODO2 right next to "Pacifist"
Re: Please Report Missing and/or Placeholder Text
Diplomacy screen when dealing with the leader - offering tradeArioch wrote:Not sure which screen you're talking about.zolobolo wrote:Tinkers race description in Diplomacy menu lists "TODO2 right next to "Pacifist"
Re: Please Report Missing and/or Placeholder Text
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.zolobolo wrote:Diplomacy screen when dealing with the leader - offering tradeArioch wrote:Not sure which screen you're talking about.zolobolo wrote:Tinkers race description in Diplomacy menu lists "TODO2 right next to "Pacifist"
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
I am playing as Gremak against two Tinker factions (maybe it only occurs if multiple instances of the same faction are present?)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.
Here is the screenshot
- Attachments
-
- TODO.JPG (143.8 KiB) Viewed 54561 times