Fun campaign and supremely excellent story!
1. version 1.16.7
5. Minor bug: In elvish_macros.cfg, it looks like Kyobaine is supposed to turn loyal with some funny dialogue after getting recalled a certain number of times. I checked the state variables in my game saves and it should have triggered, but it never did. With an old save game, I tried to trigger this intentionally but it never fired off. After poking around a bit, it looks like there are a couple of equals comparisons in elvish_macros.cfg that should be boolean_equals. If I make those changes, the dialogue did fire off as expected.
So, I changed this at around line 110
to this
1. version 1.16.7
5. Minor bug: In elvish_macros.cfg, it looks like Kyobaine is supposed to turn loyal with some funny dialogue after getting recalled a certain number of times. I checked the state variables in my game saves and it should have triggered, but it never did. With an old save game, I tried to trigger this intentionally but it never fired off. After poking around a bit, it looks like there are a couple of equals comparisons in elvish_macros.cfg that should be boolean_equals. If I make those changes, the dialogue did fire off as expected.
So, I changed this at around line 110
Code:
{IF ano_loyal_elves equals true} ... {IF ano_loyal_kyobaine equals false}
Code:
{IF ano_loyal_elves boolean_equals true} ... {IF ano_loyal_kyobaine boolean_equals false}
Spoiler:
Statistics: Posted by mango45451 — Today, 9:31 am