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

Druid Help

imacookie

Member
Joined
Nov 17, 2013
Messages
91
Reaction score
1
Is there any way to put singular or a free CR to spam star fall? I'm trying to farm charms but every CR that is free just stands there hard casting single target spells, thus it is not efficient.

Thanks
 
Logfile please.

There isn't a bug issue because the profiles are not directly designed to just spam one spell. I was just wondering if there was any other method to do it. I appreciate your reply but I will just manually farm these for now.

Thanks :)
 
You can use something like this in the profile
<CustomBehavior File="InteractWith" InteractByCastingSpellId="43265" MobId="59139" MobState="Alive" WaitForNpcs="False" InteractBlacklistTimeInSeconds="1" NonCompeteDistance="0" CollectionDistance="15" X="118.4192" Y="1590.098" Z="425.8998" />
if you have specific coordinates. Otherwise remove this stuff. It should always cast the Spell with the ID "XXX" on Mob with ID "YYY" as opener. You need to adjust this only.

Regards
BotOp
 
Thanks a bunch! I'll go edit the profile and see what I can come up with. :)

Update:

Okay so I took this from BotOperator:

Code:
   <CustomBehavior File="InteractWith" InteractByCastingSpellId="48505" MobId="83523" MobState="Alive" WaitForNpcs="False" InteractBlacklistTimeInSeconds="1" NonCompeteDistance="0" CollectionDistance="30" X="5764.417" Y="783.9858" Z="83.78914"/>

and I'm trying to put it into this profile:

Code:
<HBProfile>
<!-- This profile was made by Gatherit from gatherithb.com -->
<Name>[N][QB]Grub Hunting Gorgrond Farm by Gatherit</Name>

<MinDurability>0.4</MinDurability>
<MinFreeBagSlots>1</MinFreeBagSlots>

<MinLevel>91</MinLevel>
<MaxLevel>300</MaxLevel>

<MailGrey>false</MailGrey>
<MailWhite>false</MailWhite>
<MailGreen>false</MailGreen>
<MailBlue>false</MailBlue>
<MailPurple>false</MailPurple>

<SellGrey>true</SellGrey>
<SellWhite>false</SellWhite>
<SellGreen>true</SellGreen>
<SellBlue>false</SellBlue>
<SellPurple>false</SellPurple>

<AvoidMobs>
</AvoidMobs>

<Vendors>
	<Vendor Name="Budgy" Entry="84234" Type="Repair" X="6610.504" Y="1286.526" Z="64.83815" />
</Vendors>

<Mailboxes>
</Mailboxes>

<Blackspots>
</Blackspots>

 <QuestOrder>
 

 
 <While Condition="true">
   <CustomBehavior File="RunCode" Code="Logging.Write(System.Windows.Media.Colors.DeepSkyBlue, &quot; [Gatherit]: Going to the grind spot hang tight.&quot;);"/>
   <CustomBehavior File="FlyTo" X="5769.632" Y="778.0006" Z="83.88345" Land="true" />
   <CustomBehavior File="RunCode" Code="Logging.Write(System.Windows.Media.Colors.DeepSkyBlue, &quot; [Gatherit]: Here we are!  Good luck!&quot;);"/> 
		   <SetGrindArea>
			   <GrindArea>
					<TargetMinLevel>1</TargetMinLevel>
					<TargetMaxLevel>101</TargetMaxLevel>
					<LootRadius>1000</LootRadius>
					<TargetElites>true</TargetElites>
					<RandomizeHotspots>false</RandomizeHotspots>
					<Factions></Factions>
                    <MobIds>83523</MobIds>
					<Hotspots>				
                 <Hotspot X="5764.417" Y="783.9858" Z="83.78914" />
					</Hotspots>
			   </GrindArea>    
			</SetGrindArea>
				<GrindTo Condition="(Me.FreeBagSlots &lt;= 4) || (Me.LowestDurabilityPercent &lt; 0.40)" GoalText="Farming" />
					<If Condition="(Me.FreeBagSlots &lt;= 4)" >
					  <CustomBehavior File="Message" Text="Repair" LogColor="Lime" />
					  <CustomBehavior File="ForceSetVendor" DoSell="true" DoRepair="true" />			
					</If>
			<GrindUntil Nav="Fly" Condition="Me.Level >= 9999" />
	</While>	
	   
</QuestOrder>
</HBProfile>

Would I just take out the grind area and grind to conditions as I'm replacing it with this condition?

Thanks sorry kinda a novice.
 
Last edited:
Back
Top