Hey guys, try this Rakkis.xml out...I think I had fixed the issue awhile back and might not have updated the post. Let me know if this works and I can update the OP:
https://www.dropbox.com/s/sma34q37qv158pw/act3_Rakkis.xml
Hey guys, try this Rakkis.xml out...I think I had fixed the issue awhile back and might not have updated the post. Let me know if this works and I can update the OP:
https://www.dropbox.com/s/sma34q37qv158pw/act3_Rakkis.xml
<!-- Load Act Based on Keys Acquired -->
<While condition="Me.IsInTown">
<WaitTimer questId="1" waitTime="1000" />
<UseObject questId="1" actorId="130400" />
<KeyRunProfile questId="1" act1profile="act1_start.xml" act2profile="act2_start.xml" act3profile="act3_start.xml" />
</While>
<!-- Load Act Based on Keys Acquired -->
<While condition="Me.IsInTown">
<WaitTimer questId="1" waitTime="1000" />
<TrinityLoadOnce questId="1" stepId="1" >
<ProfileList>
<LoadProfileOnce profile="act1_start.xml" exit="true" />
<LoadProfileOnce profile="act2_start.xml" exit="true" />
<LoadProfileOnce profile="act3_start.xml" exit="true" />
</ProfileList>
</TrinityLoadOnce>
</While>
yes you can, you would want to edit the A1-A3_START_HERE.xml file:
current:
Code:<!-- Load Act Based on Keys Acquired --> <While condition="Me.IsInTown"> <WaitTimer questId="1" waitTime="1000" /> <UseObject questId="1" actorId="130400" /> <KeyRunProfile questId="1" act1profile="act1_start.xml" act2profile="act2_start.xml" act3profile="act3_start.xml" /> </While>
replace with:
Code:<!-- Load Act Based on Keys Acquired --> <While condition="Me.IsInTown"> <WaitTimer questId="1" waitTime="1000" /> <TrinityLoadOnce questId="1" stepId="1" > <ProfileList> <LoadProfileOnce profile="act1_start.xml" exit="true" /> <LoadProfileOnce profile="act2_start.xml" exit="true" /> <LoadProfileOnce profile="act3_start.xml" exit="true" /> </ProfileList> </TrinityLoadOnce> </While>
I believe that should work, but can't test at the moment![]()