Salk 368 Posted August 9, 2019 Hello! I was wondering if there was a way to "disable" the transition triggers from an area and then re-enable them. DestroyObject() works but then it seems I cannot use CreateObject() to restore them. I thought of creating a script to use OnEnter to call for the TransAbort but it doesn't seem to work either. void main() { object oJuhani = GetObjectByTag("dan14_juhani"); object oEntering = GetEnteringObject(); if ((GetStandardFaction(oJuhani) == 1) && GetIsPC(oEntering)) { AssignCommand(GetNearestObjectByTag("k_trans_abort"), ActionStartConversation(GetPartyMemberByIndex(0), "", FALSE, CONVERSATION_TYPE_CINEMATIC, TRUE, "", "", "", "", "", "", TRUE)); } } Any advice? Cheers! Quote Share this post Link to post Share on other sites