that's not possible.Sorry I was not clear, it runs as is for RF, and is a pre patch pre RF file I have on the system and is the only custom civ that will run without any modding after the update and RF install.
Thanks, could be a one-line mod in SQL, I'll have a look.
INSERT OR REPLACE INTO Players (Domain,CivilizationType,LeaderType,LeaderName,LeaderIcon,CivilizationName,CivilizationIcon,LeaderAbilityName,LeaderAbilityDescription,LeaderAbilityIcon,CivilizationAbilityName,CivilizationAbilityDescription,CivilizationAbilityIcon,Portrait,PortraitBackground)
SELECT 'Players:Expansion1_Players', CivilizationType,LeaderType,LeaderName,LeaderIcon,CivilizationName,CivilizationIcon,LeaderAbilityName,LeaderAbilityDescription,LeaderAbilityIcon,CivilizationAbilityName,CivilizationAbilityDescription,CivilizationAbilityIcon,Portrait,PortraitBackground
FROM Players WHERE Domain <> 'Players:Expansion1_Players' AND NOT EXISTS (SELECT * FROM Players WHERE CivilizationType = Players.CivilizationType AND Domain = 'Players:Expansion1_Players' );
What i think happened was it was uploaded as compatable with RF, as i was downloading the patch and RF, hence it worked right of the bat.that's not possible.
None AFAIK. I'll post here if I found out that someone has a way to do it.What's the latest on the DLC/R&F/Mods load order issues? Is there no way around editing the DLC .modinfo?
And what about replacing code in UI lua? Say default is "do A and B" and I want "do just B".I think I found a way to replace UI files without overwrriting them
And what about replacing code in UI lua? Say default is "do A and B" and I want "do just B".
You still need replace files in this case I guess?
using the <ReplaceUIScript> tag then include the old file in the new ?I think I found a way to replace UI files without overwrriting them all (using how the UI is handled by the expansion in the replacement files).
I just managed to import a custom LaunchBar file by including the _Expansion1 file in my lua file and the launch bar works with mere two lines of code, has this been kn own?