KatArus Posted April 29, 2020 Share Posted April 29, 2020 I was making a follower mod that dynamically changes voice based on NPC confidence (helped with immersion in Skyrim a lot) so follower could use cocky raider taunts when has an advantage, but the Set/GetVoicetype is absent in New Vegas or am I missing something? Link to comment Share on other sites More sharing options...
madmongo Posted April 29, 2020 Share Posted April 29, 2020 FNV has GetIsVoiceType. There is no function that I am aware of to set the voice type. You could accomplish the same thing through a different method by setting different conditions on the taunts. Link to comment Share on other sites More sharing options...
KatArus Posted April 29, 2020 Author Share Posted April 29, 2020 FNV has GetIsVoiceType. There is no function that I am aware of to set the voice type. You could accomplish the same thing through a different method by setting different conditions on the taunts.Yeah, that's unfortunate. I hoped that simple VTYP id swap would make existing extender code work out and redesigning it is more trouble than it's worth for me. Thank you. Link to comment Share on other sites More sharing options...
Asterra Posted April 29, 2020 Share Posted April 29, 2020 (edited) Yeah, that's unfortunate. I hoped that simple VTYP id swap would make existing extender code work out and redesigning it is more trouble than it's worth for me. Not sure why nobody spotted this yet. https://geckwiki.com/index.php?title=SetActorVoiceType I used it myself in my last comprehensive mod. GeckWiki is really the place you should be going to determine whether what you need exists. As far as I've experienced, the only thing they don't list that does exist (and they have a link for it) is IsRefInList. The rest is all there in their list of functions. Edited April 29, 2020 by Asterra Link to comment Share on other sites More sharing options...
KatArus Posted April 30, 2020 Author Share Posted April 30, 2020 Not sure why nobody spotted this yet. https://geckwiki.com/index.php?title=SetActorVoiceType I used it myself in my last comprehensive mod. GeckWiki is really the place you should be going to determine whether what you need exists. As far as I've experienced, the only thing they don't list that does exist (and they have a link for it) is IsRefInList. The rest is all there in their list of functions. I guess Google is trash nowadays. I've spent over hour and a half googling for combinations of 'New Vegas' 'NVSE' 'Set' 'Voice' 'Type' going 50-60 results deep and I did not get SetActorVoiceType result once. 'help setac' shows me it's there and it works as it should. Appreciate the help, Asterra. Link to comment Share on other sites More sharing options...
Recommended Posts