jiznadj
New Member
- Joined
- Nov 3, 2012
- Messages
- 412
- Reaction score
- 1
Hello all, I have been working on a starter profile that will run act3 profiles partially random, and then the last part in sequence. I have in my "Act3" folder, nine profiles named act3-1.xml, act3-2.xml and so on, I have made a started profile (Act3_Start.xml) like this
I am trying to get the first 7 profiles to run randomly, and then the last two to run in order but am not having any luck. DB will pick one of the first set at random, but then when that one has finished, will go back to town and say all profiles have completed, but does not load the next profile or leave the game.
Code:
<Profile>
<Name>Profile</Name>
<KillMonsters>True</KillMonsters>
<PickupLoot>True</PickupLoot>
<GameParams quest="101758" step="1" act="A3" difficulty="Inferno" resumeFromSave="False" isPrivate="True" numGames="-1" />
<Order>
<ToggleTargeting questId="1" combat="True" looting="True" lootRadius="80" killRadius="45" />
<TrinityLoadProfile file="act3-1.xml!act3-2.xml!act3-3.xml!act3-4.xml!act3-5.xml!act3-6.xml!act3-7.xml" />
<TrinityLoadProfile file="act3-8.xml />
<TrinityLoadProfile file="act3-9.xml />
<If condition="(not Me.IsInTown)">
<UseTownPortal questId="1" />
</If>
<LeaveGame reason="Run Complete" />
</Order>
</Profile>
I am trying to get the first 7 profiles to run randomly, and then the last two to run in order but am not having any luck. DB will pick one of the first set at random, but then when that one has finished, will go back to town and say all profiles have completed, but does not load the next profile or leave the game.