Adding custom voicetypes to a vanilla NPC Voicetyp

Post » Sun May 18, 2014 7:24 am

Say I add my new custom voicetypes to the vanilla formlist for NPCvoicetypes...

I have been told that a bashed patch will not merge the formlist entries so my custom voicetypes and any other author's custom voicetypes that are added to this formlist in their mod will not all be in the [formerly] vanilla voicetype formlist. I assume the last loaded wins.

What is a better way to do this.

What I am trying to do - have my custom voicetypes available in the Convenient Horses mini-quest to learn the horse whistle.

It uses shared dialogue topic infos as the NPC responses and the Vanilla NPC voicetypes formlist to have them available to almost any NPC pulled into the alias for that quest.

I would like to have my custom NPCs use the same dialogue and participate in the quest.

Suggestions?

User avatar
sarah
 
Posts: 3430
Joined: Wed Jul 05, 2006 1:53 pm

Post » Sun May 18, 2014 4:25 am

Have you tried adding the voicetypes to the formlist via papyrus?

Scriptname _Test_Testscript extends QuestVoiceType[] Property kCustomVoices AutoFormlist Property VanillaVoiceTypes AutoEvent OnInit()    int iElement = kCustomVoices.Length    while iElement        iElement -= 1        VanillaVoiceTypes.AddForm(kCustomVoices[iElement])    endWhileendEvent
User avatar
Joanne Crump
 
Posts: 3457
Joined: Sat Jul 22, 2006 9:44 am


Return to V - Skyrim