What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Reduce Difficulty Ingame

hellokutty

New Member
Joined
Sep 6, 2014
Messages
57
Reaction score
1
I'd like to make a profile that does 5x Rifts then reduces difficulty to Normal from Torment 6 then does Bounties, > reset game to Torment 6

How would I go about that?
 
You would probably start by finding a profile that does rifts and a profile that does bounties

Since the point of all this i'm guessing is to not run out of keys to rift with, you could probably check the item count and just run bounties when the count is low enough.

Code:
<If condition="not ItemCount(323722) >= 45">
    <LogMessage output="Less than 45 Rift Keystone Fragment" />
    <Command name="SetDifficulty" value="Normal" />    
    <LoadProfile profile="mybountyprofile.xml" />   
</If>

<If condition="ItemCount(323722) >= 45">
    <LogMessage output="45 or more Rift Keystone Fragment" />
    <Command name="SetDifficulty" value="Torment6" />    
    <LoadProfile profile="myriftprofile.xml" />   
</If>
 
Last edited:
Back
Top