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

Character won't use shrines/pools of reflection?

glassedon

New Member
Joined
Mar 20, 2011
Messages
12
Reaction score
0
I have it in my trinity config to use them, however under my bot config it is unselected. If I select "use shrines", then save, it will just be unselected the next time I open it.

I have edited my script to include <UseShrine>true</UseShrine>, will this also make the character use pools of reflection?
 
Answered my own question. Putting <UseShrine>true</UseShrine> into the profile makes it use the pools.

Hope this helps anyone having trouble!
 
Answered my own question. Putting <UseShrine>true</UseShrine> into the profile makes it use the pools.

Hope this helps anyone having trouble!
which profile? did you post this info on that profile thread?
 
I added the line but it still seems to skip shrines and pool, anything specific location to which i must put the line in?
 
I'll post the profile here I added it into, since all the profiles did not have this line. Apparantly though it's been fixed meaning this may be redundant, but I'll post anyway.
The bolded section is where I added the line.


<Profile>
<Name>[A1-BestEXP_FastTP v0.4]Crypt of the Ancients</Name>
<GameParams quest="72738" step="12" act="A1" resumeFromSave="True" isPrivate="True" numGames="-1" />
<KillMonsters>True</KillMonsters>
<PickupLoot>True</PickupLoot>
<UseShrine>true</UseShrine>

<TargetBlacklists>
<TargetBlacklist actorId="215512" /> <!--a1dun_Caves_Nephalem Altar_A_Chest-->
<!--TargetBlacklist actorId="101192" /--> <!--trOut_Barrel_Common-->
<!--TargetBlacklist actorId="158681" /--> <!--Blacksmith_Lore-->
</TargetBlacklists>


<Order>

<TrinityMaxDeaths questId="1" max="2" />

<!-- In Town, use Waypoint to Crypt of the Ancients -->
<If condition="CurrentLevelAreaId == 19947">
<ToggleTargeting questId="1" combat="True" looting="True" lootRadius="100" killRadius="50" />
<LogMessage questId="72738" stepId="12" output="Using portal to Crypt of the Ancients" />
<TakeTownPortal questId="72738" stepId="12" />
<WaitTimer questId="72738" stepId="12" waitTime="750" />
</If>

<!-- In Crypt of the Ancients, Explore -->
<If condition="CurrentWorldId == 60394" >
<LogMessage questId="72738" stepId="12" output="Exploring Crypt of the Ancients" />
<TrinityExploreDungeon questId="72738" stepId="12" until="FullyExplored" boxSize="55" boxTolerance="0.001" pathPrecision="40" timeoutType="GoldInactivity" townPortalOnTimeout="True" timeoutValue="30" ignoreMarkers="True">
</TrinityExploreDungeon>
<WaitTimer questId="72738" stepId="12" waitTime="2000" />
<TrinityTownPortal questId="72738" stepId="12"/>
</If>

<!--leave the game without tp-->
<LeaveGame reason="The END" stayInParty="False" />


</Order>
</Profile>
 
Back
Top