Pardon if this is a bug, and if it should have been posted in the bug forum, feel free to delete this post here and move there.
In each of the partMember*.mnu files, in either assets001.zip or assets003.zip, I noticed that up through partyMember5.mnu, the add command select indexes are correct, if we assume C-Like array indexing:
Code:
// Portrait
Widget
{
position 0.0 0.0
size 50.0 40.0
canClick 1
// JEREMY: line below is line in question
addCommand "selectPartyMember 4"
entityType PartyMember
entityIndex 5
highlightText $$PartyMemberHelp$$
drawOrder -1
showCondition EntityValid
internalName Portrait
}
partyMember6.mnu through partyMember10.mnu keep the following line constant:
Code:
addCommand "selectPartyMember 4"
Should the (assumed) index number increase from 5 to 9 respectively for the remaining files?
Does it actually matter if it doesn't increase?