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

Is there any profile for HC mode?

betrayal

New Member
Joined
Sep 1, 2013
Messages
16
Reaction score
0
I play HC. I checked most of the profile and found they are no good for HC.

I suggest that below places are dangerous for HC:
1 keeps2 -- too many bomber;
2 Arreat, Tower & Core -- enemy who can half your armor;

My suggestion is:
1 Skycrown;
2 Stoneford;
3 Keeps 3 (fire in keeps1 is also dangerous)
4 Rakkis Cross;
5 Field of Slaughter

Who can help to work out a profile for HC ?
I drafted a profile based on rrrix's version. But too many error, as I'm not good at xml language.

Thanks
 
May I ask what errors did you find in Rrrix's profile?
I've been running it almost from the release day and everything goes smoothly.
 
May I ask what errors did you find in Rrrix's profile?
I've been running it almost from the release day and everything goes smoothly.
Always shows:
"Hope everything ran correctly! Restarting soon.
or
"*~*~*~*NO NEPH VALOR*~*~*~*? Must of been stuck, now loading Fallen_START_"
then reload the profile at the beginning of the game.
bot ->game start ->restart -> start ->restart ......
 
So it's not Rrrix's profile but FallenDev's.
I know he has some weird quests choice for his profiles. Make sure you selected certain one mentioned in first post of his profile's thread.

Also original Rrrix's profile for act III is quite nice - maybe you can try it?
 
So it's not Rrrix's profile but FallenDev's.
I know he has some weird quests choice for his profiles. Make sure you selected certain one mentioned in first post of his profile's thread.

Also original Rrrix's profile for act III is quite nice - maybe you can try it?
I tried Rrrix's original profile, but it seems not for HC (My first Barb died in Arreat2). There are so many dangrous places such as keeps2/Core/Arreat for HCer. I tried to avoid these places. This is the reason why I modified his profile. Then shows the error message as I mentioned.
 
Well, in Rrrix's profile you can remove areas that you don't want to be rolled in his randomization.
Just edit Act3LoadRandom.xml file - at the bottom remove lines that contain loading profiles you consider as dangerous for your HC characters.

For Fallen's profile you would need to remove valor check at the beginning of some files - I assume removed areas were the starting ones so since bot cannot get 5 stacks he tries to reload and finds itself in a loop.
 
Thanks Nazair.
I modified Rrrix's file as you suggest.
Error message shows:

[12:38:57.856 N] Failed to load profile: The 'ProfileList' start tag on line 39 position 8 does not match the end tag of 'TrinityLoadOnce'. Line 44, position 7.
[12:38:57.918 N] Failed to load profile: The 'ProfileList' start tag on line 39 position 8 does not match the end tag of 'TrinityLoadOnce'. Line 44, position 7.
[12:38:57.978 N] Failed to load profile: The 'ProfileList' start tag on line 39 position 8 does not match the end tag of 'TrinityLoadOnce'. Line 44, position 7.

Could you kindly help?

My modified file:
<Profile>
<Name>Load Random Act 3 Area by rrrix</Name>
<KillMonsters>True</KillMonsters>
<PickupLoot>True</PickupLoot>
<GameParams quest="101758" step="1" act="A3" difficulty="Inferno" resumeFromSave="False" isPrivate="True" numGames="-1" />
<Order>
<!-- Set QuestTools Variables -->
<QuestToolsSetVariable questId="101758" stepId="1" key="ReloadProfileOnDeath" value="False" />
<QuestToolsSetVariable questId="101758" stepId="1" key="DebugLogging" value="True" />

<!-- If we try and load a random profile from a known dungeon location, just load the profile for that dungeon instead! -->
<If condition="CurrentWorldId == 81019">
<LogMessage questId="101758" stepId="1" output="Attempted to load random profile from within Skycrown. Using Skycrown profile instead." />
<LoadProfile profile="Skycrown.xml" />
</If>
<If condition="CurrentWorldId == 93099">
<LogMessage questId="101758" stepId="1" output="Attempted to load random profile from within Stonefort. Using Stonefort profile instead." />
<LoadProfile profile="Stonefort.xml" />
</If>
<If condition="CurrentWorldId == 95804">
<LogMessage questId="101758" stepId="1" output="Attempted to load random profile from within Field of Slaughter or Rakkis Crossing. Using FoS-Rakkis profile instead." />
<LoadProfile profile="FoS-Rakkis.xml" />
</If>
<If condition="CurrentWorldId == 136415">
<LogMessage questId="101758" stepId="1" output="Attempted to load random profile from within Keep Depths 3. Using KeepDepths3 profile instead." />
<LoadProfile profile="KeepDepths3.xml" />
</If>
<If condition="not Me.IsInTown">
<LogMessage questId="101758" stepId="1" output="Attempted to load random profile outside of town, from an unknown location! Returning to town now..." />
<UseTownPortal questId="101758" stepId="1" />
</If>

<!-- Big Thanks to Nesox for the XML Tricks! -->
<!-- This XML tag will load a random profile from the list, but only once during this game session -->

<!--<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="KeepDepths3.xml" />
</TrinityLoadOnce>

<LogMessage quest="101758" step="1" output="All profiles have been loaded! Nothing left to do." />
<WaitTimer quest="101758" step="1" waitTime="10000" />
<LeaveGame quest="101758" step="1" reason="All profiles have been loaded! Nothing left to do." stayInParty="False" />
</Order>
</Profile>
 
In a hurry you deleted one more line than just locations you didn't want your bot to run ;)

Change these lines:
Code:
<TrinityLoadOnce questId="101758" stepId="1" >
<ProfileList>
<LoadProfileOnce profile="Skycrown.xml" />
<LoadProfileOnce profile="Stonefort.xml" />
<LoadProfileOnce profile="FoS-Rakkis.xml" />
<LoadProfileOnce profile="KeepDepths3.xml" />
</TrinityLoadOnce>
with these:
Code:
<TrinityLoadOnce questId="101758" stepId="1" >
<ProfileList>
<LoadProfileOnce profile="Skycrown.xml" />
<LoadProfileOnce profile="Stonefort.xml" />
<LoadProfileOnce profile="FoS-Rakkis.xml" />
<LoadProfileOnce profile="KeepDepths3.xml" />
</ProfileList>
</TrinityLoadOnce>

That should do the trick.
 
Thanks Nazair, it works. you do give me a big help!
Thanks


In a hurry you deleted one more line than just locations you didn't want your bot to run ;)

Change these lines:
Code:
<TrinityLoadOnce questId="101758" stepId="1" >
<ProfileList>
<LoadProfileOnce profile="Skycrown.xml" />
<LoadProfileOnce profile="Stonefort.xml" />
<LoadProfileOnce profile="FoS-Rakkis.xml" />
<LoadProfileOnce profile="KeepDepths3.xml" />
</TrinityLoadOnce>
with these:
Code:
<TrinityLoadOnce questId="101758" stepId="1" >
<ProfileList>
<LoadProfileOnce profile="Skycrown.xml" />
<LoadProfileOnce profile="Stonefort.xml" />
<LoadProfileOnce profile="FoS-Rakkis.xml" />
<LoadProfileOnce profile="KeepDepths3.xml" />
</ProfileList>
</TrinityLoadOnce>

That should do the trick.
 
im using it for the moment and it works fine, but im not doing it on high mp lvl (mp0), i still seem to have the problem that sometimes the bot does bash hits instead of going to whirlwind, even with full fury and berserk available it just keeps doing bash hits.
When he does that with lots of enemys arround or hard elite pack i see the life going down a bit, if i would do it on mp1 the bot would die, i need to get this fixed first but cant seem to find it :(

Also sometimes it runs stonefort 2 times, ones with the stonefort file and ones with the skycrown file
For skycrown it takes wp, it uses warcry and then it says dont know the spot im in and it runs stonefort instead of skycrown
 
im using it for the moment and it works fine, but im not doing it on high mp lvl (mp0), i still seem to have the problem that sometimes the bot does bash hits instead of going to whirlwind, even with full fury and berserk available it just keeps doing bash hits.
When he does that with lots of enemys arround or hard elite pack i see the life going down a bit, if i would do it on mp1 the bot would die, i need to get this fixed first but cant seem to find it :(

This related to combat routine not profile itself.
Check the "Plugins" section for improved movement/fighting made by Dogmeat. Maybe it will solve you issues.
 
Just theorycraft all the routines you want for HC and discuss in the Demonbuddy Hardcore Edition masterthread, I'll make them and include in the next version. :)
 
im using it for the moment and it works fine, but im not doing it on high mp lvl (mp0), i still seem to have the problem that sometimes the bot does bash hits instead of going to whirlwind, even with full fury and berserk available it just keeps doing bash hits.
When he does that with lots of enemys arround or hard elite pack i see the life going down a bit, if i would do it on mp1 the bot would die, i need to get this fixed first but cant seem to find it :(

Also sometimes it runs stonefort 2 times, ones with the stonefort file and ones with the skycrown file
For skycrown it takes wp, it uses warcry and then it says dont know the spot im in and it runs stonefort instead of skycrown

Are you using original Trinity? What routine do you use, Trinity, Generic, or Belpheghor? If needed, send me your demonbuddy folder, I'll look into this. :)
 
Hi,
Sry for late reply but i had fun today gaming :) Yes Yes playing diablo 3 myselve to ^^
I have : trinity, questtools and uniddealer in my plugins
And im using trinity for routine
 
Bot is still doing the bash thing yes, its so anoying, and strange enough, when i let my SC char run i dont see him bash enemys like this, only when it needs fury then i see him bash.
Only difference in gear is SC = 2 single handed weapons, HC = shield + weapon
 
Back
Top