![]() |
|
#11
|
|||
|
|||
|
Quote:
If you think you have that, then what you need to do is look at WIFES.TXT and ORCELYN_BABIES.TXT. Go to Orcelyn's children= line in WIFES.TXT and then make sure all the kids listed (i.e. kid_crag_hack, kid_kilgor, etc.) exist in ORCELYN_BABIES.TXT. I did this in the latest update so they all should be there. Then go to ORCELYN_BABIES.TXT and make sure that your Gretchen has the same number of open braces ({) as close braces (}). The error that I fixed (that you should have) was that she was missing a brace at the end of her fight section (just before her mods section) that caused all the other babies below her to become invalid. Bad: Code:
kid_gretchen {
category=o
image=heroitem_tome_gretchen.png
.
.
.
pbonus=speed,1,0,0,-100,0,0
dbonus=
rbonus=
attack_on=
attack_off=
}
mods {
sp_lead_unit_goblin=count,24
sp_lead_unit_goblin2=count,24
}
Code:
kid_gretchen {
category=o
image=heroitem_tome_gretchen.png
.
.
.
pbonus=speed,1,0,0,-100,0,0
dbonus=
rbonus=
attack_on=
attack_off=
}
} <--- Note this was the missing brace
mods {
sp_lead_unit_goblin=count,24
sp_lead_unit_goblin2=count,24
}
If that is too much, just send me the save game and I'll track it down. /C\/C\ |
|
|