Type:
Bug
Category:
Severity:
Normal
Game version:
Morrowind
Concerns:
TR_Mainland
Found in Version:
Status:
Fixed for Version:
Description:
Kagouti Tusks gang - when you get the quest from the Orc Commander, he doesn't mention the name of the cave, but the journal update says, he does. Since citizens of Arvud give you the name when you ask around, I suggest removing the name from the original journal update to add more complexity.
Viper Blades Gang - every time you kill one of the Viper bandits, there's a journal update that states that I have killed the gang. Should probably only happen once when the last bandit is slain. -- This one could have been caused by my dirty savefile.
Comments
KT Gang: Submitted version
KT Gang: Submitted version had this from Orc. "They've been raiding caravans heading north out of Arvud, a caravan town south of Andothren. It's rough country out there in the ashlands, so we're certain they'll have to be based in some permanent shelter. There's a cave called Runat that'd be ideal for any aspiring bandit crew, I'd start there."
Suggest reverting to that.
Viper Blades: Issue found. If
Viper Blades: Issue found. If not on the quest the scripting ensuring that all bandit members are killed before the journal update doesn't kick in. In the script below the Getdeadcount list needs to be repeated after the "else" condition.
The current setup:
Begin TR_m4_Bounty_VyperDeaths
short TR_Map
if ( OnDeath )
if ( GetDeadCount "TR_m4_Yokka" > 0 )
if ( GetDeadCount "TR_m4_Basu Edralo" > 0 )
if ( GetDeadCount "TR_m4_Aratrog gro-Durna" > 0 )
if ( GetDeadCount "TR_m4_Mirysea Telomas" > 0 )
if ( GetJournalIndex TR_m4_And_Bounty_Vyper > 0 )
Journal TR_m4_And_Bounty_Vyper 30
else
set TR_m4_And_Bounty_Vyper_Dead to 1
endif
endif
endif
endif
endif
endif
if ( TR_Map == 4 )
return
endif
set TR_Map to 4
End
Fix for the Runat directions:
Fix for the Runat directions: https://www.tamriel-rebuilt.org/asset/changed-runat-bounty-directions
The second issue was either fixed at some point, or was indeed due to a dirty save file (although I'm not sure why that would be). I killed them multiple times in different orders, with and without the quest, and the journal entry showed up correctly (if you have the quest and when you kill the last one)