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

Rez at Garrison Spirit Healer!

Makelio

New Member
Joined
Jan 17, 2011
Messages
526
Reaction score
8
Is there a way to make the bot w8 for the timer at Garrison Spirit and then move to a location we have designate?
i'm using grind bot with a simple grind profile with one hotspot but when the character dies the bot run for the corpse instead of w8ing the timer at spirit healer!
 
Have you tried using the option available in the settings options of HonorBuddy "Resurrect at spirit healers"?
 
Last edited:
yes!
it still going for the corpse! :(


stkbngB.png
 
can we add a delay after a death?
i mean release from the body and after that w8 30-35 sec's before do anything!
after 30-35 sec's check if character is alive then do what the bot+profile tells you or if character is dead go grab the corpse!
 
You could report this issue at https://www.thebuddyforum.com/releases/200618-honorbuddy-v2-5-12646-765-a.html as the Garrison spirit healer does not support resurrecting at the spirit healer feature similar to what happens in timeless isle.


You could try a DoWhen behavior:
HTML:
<CustomBehavior File="Hooks\DoWhen" ActivityName="DeadWaitTimer" UseWhen="Me.IsDead" AllowUseDuringCombat="false" >
	<!-- wait for 35 seconds -->
	<CustomBehavior File="WaitTimer" WaitTime="35000" />
</CustomBehavior>
But for that you need it as a questing profile.

Another idea would be something like this:

HTML:
<While Condition="true">
	<SetGrindArea>
		<GrindArea>
			<Hotspots>
				<Hotspot ... />
			</Hotspots>
		</GrindArea>
	</SetGrindArea>
	<!-- Grind until we die -->
	<GrindUntil Nav="Fly" Condition="Me.IsDead" />
	<While Condition="Me.IsDead">
		<!-- If we need to release our body -->
		<CustomBehavior File="RunMacro" Macro="/script RepopMe();" />
		<CustomBehavior File="WaitTimer" WaitTime="35000" />
	</While>
</While>
 
Last edited:
Code:
XML Error: Unknown tag "While" (Input: "<While Condition="true">
  <SetGrindArea>
    <GrindArea>
      <Hotspots>
        <Hotspot X="1657.077" Y="174.3131" Z="72.54751" />
      </Hotspots>
    </GrindArea>
  </SetGrindArea>
  <!-- Grind until we die -->
  <GrindUntil Nav="Fly" Condition="Me.IsDead" />
  <While Condition="Me.IsDead">
    <!-- If we need to release our body -->
    <CustomBehavior File="RunMacro" Macro="/script RepopMe();" />
    <CustomBehavior File="WaitTimer" WaitTime="35000" />
  </While>
</While>") in "HBProfile"! - On line 14

i get this error!

i dont know much from coding :S

Code:
<HBProfile>    


    <Name>Makelio</Name>
    
   
    <MinLevel>1</MinLevel>
    <MaxLevel>999</MaxLevel>
    <Vendors>
    </Vendors>
    <Mailboxes>
    </Mailboxes>


<While Condition="true">
    <SetGrindArea>
        <GrindArea>
            <Hotspots>
                <Hotspot X="1657.077" Y="174.3131" Z="72.54751" />
            </Hotspots>
        </GrindArea>
    </SetGrindArea>
    <!-- Grind until we die -->
    <GrindUntil Nav="Fly" Condition="Me.IsDead" />
    <While Condition="Me.IsDead">
        <!-- If we need to release our body -->
        <CustomBehavior File="RunMacro" Macro="/script RepopMe();" />
        <CustomBehavior File="WaitTimer" WaitTime="35000" />
    </While>
</While>
    
</HBProfile>

this is the profile i'm trying to run!

the second code you posted it must be at quest profile also?! :S
is easy for you to create a profile with this hotspot?

<Hotspot X="1657.077" Y="174.3131" Z="72.54751" />
 
Last edited:
Like I early mentioned you need to make a questing profile and what I posted is just part of what the code of it would look like.
 
is easy for you to create a questing profile with this hotspot since i dont know shit about coding!? :S
if you cant, do you know anyone who can make me one?

<Hotspot X="1657.077" Y="174.3131" Z="72.54751" />
 
Last edited:
anyone can help me create a quest with the code namednoob posted?!
 
Back
Top