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

Radius of a blackspot?

wajke

New Member
Joined
Mar 9, 2010
Messages
140
Reaction score
1
Heya botters,

I've been thinking of putting up blackspots but truth been told; I've never tried to add 'em before. Is it possible to modify the radius of a blackspot? And Where should I put my blackspot list? In a <BlackSpot></Blackspot> cluster or together with the hotspots?

Regards,
W
 
Code:
    <Blackspots>
      <Blackspot X="1" Y="1" Z="1" Radius="50"/>
    </Blackspots>

You would put it inside of the subprofile, like so:

Code:
  <!--Template for how to make a level-->
  <SubProfile>
    <Name>Template</Name>
    <!--Bot will stay in this subprofile from MinLevel until it hits MaxLevel-->
    <MinLevel>100</MinLevel>
    <MaxLevel>101</MaxLevel>

    <!--Bot will pick up all quests but only do these-->
    <ForcedQuestList>
      <Quest Id="99999" Name="Name" />
      <Quest Id="99999" Name="Name" />
      <Quest Id="99999" Name="Name" />
      <Quest Id="99999" Name="Name" />
      <Quest Id="99999" Name="Name" />
      <Quest Id="99999" Name="Name" />
      <Quest Id="99999" Name="Name" />
      <Quest Id="99999" Name="Name" />
      <Quest Id="99999" Name="Name" />
      <Quest Id="99999" Name="Name" />
      <Quest Id="99999" Name="Name" />
      <Quest Id="99999" Name="Name" />
      <Quest Id="99999" Name="Name" />
    </ForcedQuestList>

    <!--Bot will not pull mobs on this list or any mobs within 30 yards of it -->
    <AvoidMobs>
      <AvoidMob Name="A Mob to Avoid" Entry="9999" />
    </AvoidMobs>

    <!--Bot will avoid these locations-->
    <Blackspots>
      <Blackspot X="1" Y="1" Z="1" Radius="50"/>
    </Blackspots>

    <!--Bot will grind mobs of these levels with these factions at these locations until it levels if there are no quests-->
    <TargetMinLevel>100</TargetMinLevel>
    <TargetMaxLevel>101</TargetMaxLevel>
    <Factions>8888 9999</Factions>
    <Hotspots>
      <Hotspot X="1" Y="1" Z="1" />
    </Hotspots>
  </SubProfile>
 
Use the blackspot button on the form.
 
How big is an "unit" in the game ?

Radius="1"

Would this be one step out from the center (in every direction) of the blackspot, or is "1" more then 1 step in WoW ?

Thanks !
 
Back
Top