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

Need help to modify a section of code! Profile: act3 by rrrix

shro0maz

New Member
Joined
Jan 23, 2013
Messages
56
Reaction score
0
Hi guys!,

i have been trying to modify rrrix Act3 profile for a day or so to make it load a specific order before LoadRandom.

I want it to load FoS-Rakkis.xml>KeepDepths2.xml>Stonefort.xml

in that order, so the bot will have 5 nv stacks before entering stonefort and killing the keywarden.

and then continue with random order for the following profiles left (in my case areatcrater 1-2 and tower1-2)

i have ben trying to do some copy/paste from different profiles i have.

the thing is i dont get the profile to really work, it starts the game but the i get the following in DB


[15:46:33.454 N] [Trinity] New Game - resetting everything
[15:46:33.568 N] ProfileOrderManager.OnGameJoined, Reloading profile.
[15:46:33.800 N] Loaded profile Load Random Act 3 Area by rrrix
[15:46:33.800 N] Game joined, Resetting profile caches.
[15:46:33.800 N] ========== Grid segmentation resetting!!! ============
[15:46:33.800 N] ========== Grid segmentation resetting!!! ============
[15:46:33.803 N] [QuestTools] QuestToolsSetVariable tag started, key=ReloadProfileOnDeath value=False
[15:46:33.839 N] [QuestTools] Reloading Profile on Death set to False
[15:46:33.888 N] [QuestTools] QuestToolsSetVariable tag started, key=DebugLogging value=True
[15:46:33.888 N] [QuestTools] Debug Logging set to True
[15:46:33.987 N] All profiles have been loaded! Nothing left to do.
[15:46:34.007 N] Leaving game, reason: All profiles have been loaded! Nothing left to do.
[15:46:34.007 N] Profile completed
[15:46:34.007 N] Number of games completed:3
[15:46:34.111 N] Last run acquired 0 gold.
[15:46:34.111 N] [Trinity] New Game - resetting everything
[15:46:37.134 N] Waiting 12.2 seconds before next game...
[15:46:37.853 N] Stopping the bot.
[15:46:37.853 N] Chose Trinity as your combat routine
[15:46:37.858 N] ========== Grid segmentation resetting!!! ============
[15:46:37.890 N] Bot Thread Ended. Was this requested?

how come it thinks the run is complete?

i will attach bot the original file and "my" remake of it.

if anyone could guide me to a working profile i would be forever greatfull !

* here are the pieace of code i copy/pasted and modify for act3 quest id *


<!-- Always Run these Profiles in order, first -->
<TrinityLoadOnce questId="101758" noRandom="True">
<ProfileList>
<LoadProfileOnce profile="FoS-Rakkis.xml" />
<LoadProfileOnce profile="KeepDepths2.xml" />
<LoadProfileOnce profile="Stonefort.xml" />

</ProfileList>
</TrinityLoadOnce>

<!-- Run these Profiles in random order -->
<TrinityLoadOnce questId="101758" noRandom="False">
<ProfileList>
<LoadProfileOnce profile="ArreatCrater1.xml" />
<LoadProfileOnce profile="ArreatCrater2.xml" />
<LoadProfileOnce profile="TowerDamned1-2.xml" />

</ProfileList>
</TrinityLoadOnce>


* Original code *


<!--<ForceTownRun questId="101758" stepId="1" />-->

<TrinityLoadOnce questId="101758" stepId="1" >
<ProfileList>
<LoadProfileOnce profile="Skycrown.xml" />
<LoadProfileOnce profile="Stonefort.xml" />
<LoadProfileOnce profile="FoS-Rakkis.xml" />
<LoadProfileOnce profile="KeepDepths2.xml" />

<LoadProfileOnce profile="ArreatCrater1.xml" />
<LoadProfileOnce profile="ArreatCrater2.xml" />
<LoadProfileOnce profile="TowerDamned1-2.xml" />
</ProfileList>
</TrinityLoadOnce>


Thanks in advance

And rrrix, hope you dont mind me poking around in your work and posting it here before asking for permission

I'am a real noob at coding, i do understand some logic behind it but i cant write code for shit haha :D so if anyone feel like helping me out abit dont talk to advanced coding with me =)
 

Attachments

You removed the stepId attribute, so... that's what broke it.

Try this:
Code:
    <TrinityLoadOnce questId="1" noRandom="True">
      <ProfileList>
        <LoadProfileOnce profile="FoS-Rakkis.xml" />
        <LoadProfileOnce profile="KeepDepths2.xml" />
        <LoadProfileOnce profile="Stonefort.xml" />
      </ProfileList>
    </TrinityLoadOnce>
    
    <!-- Run these Profiles in random order -->
    <TrinityLoadOnce questId="1" noRandom="False">
      <ProfileList>
	    <LoadProfileOnce profile="ArreatCrater1.xml" />
        <LoadProfileOnce profile="ArreatCrater2.xml" />
        <LoadProfileOnce profile="TowerDamned1-2.xml" />
    	<LoadProfileOnce profile="Skycrown.xml" />  
      </ProfileList>
    </TrinityLoadOnce>
 
Back
Top