David Brasher Posted March 11, 2012 Share Posted March 11, 2012 The function I want to activate resides in a quest script in another quest. I want to place the code to do this in a Papyrus fragment. Link to comment Share on other sites More sharing options...
tunaisafish Posted March 11, 2012 Share Posted March 11, 2012 Add the property to your fragment using the 'Properties' button.Quest property otherquest Then in your fragment...otherquestScriptName QS = otherquest As otherquestScriptName ;Then access the functions or properties in the remote quest script usingQS.QFunction()QS.QProp If you want, you can also skip the Quest property and go direct to...otherquestScriptName Property QS Auto Link to comment Share on other sites More sharing options...
Recommended Posts