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

Stay at a hotspot timer?

Raged

New Member
Joined
Apr 24, 2010
Messages
61
Reaction score
1
I am currently making some bg profiles and i want to make them more human like. Is there something like a timer function in hb or a code i can use in the profile where i can make the toon stay/wait at a hotspot for like xx seconds even when there is nothing to target?

And can i also make priority hotshots? So it moves more often to the priority spots then some other hotspots i make in the xml?
 
<HBProfile>
<MinDurability>0.4</MinDurability>
<MinFreeBagSlots>2</MinFreeBagSlots>
<SellGrey>True</SellGrey>
<SellWhite>False</SellWhite>
<SellGreen>False</SellGreen>
<SellPurple>False</SellPurple>
<RandomizeHotspots>true</RandomizeHotspots>
<MaximumHotspotTime>300000</MaximumHotspotTime>

<ProtectedItems>
<Item>27854</Item>
<Item>37201</Item>
<Item>24401</Item>
<Item>4538</Item>
<Item>8766</Item>
</ProtectedItems>
<SubProfile>
<MinLevel>0</MinLevel>
<MaxLevel>81</MaxLevel>
<Factions>2068 834</Factions>
<Mesh Name="AB.mesh" ServerID="33" />
<Hotspots>
<Hotspot X="976.0357" Y="1037.792" Z="-43.70517" />
<Hotspot X="853.1397" Y="986.9025" Z="-60.44062" />
<Hotspot X="858.754" Y="1157.291" Z="11.95822" />
<Hotspot X="812.1718" Y="882.2908" Z="-58.37704" />
</Hotspots>
</SubProfile>
</HBProfile>




Says its both unknown tag when its loads the profile. Someone can help this newb in what i am doing wrong?
 
In Ski's example, the switches for RandomizeHotspots and MaximumHotspotTime have to be located within the GrindArea and SubProfile. Try something like this;

<HBProfile>
<MinLevel>0</MinLevel>
<MaxLevel>81</MaxLevel>
<ProtectedItems>
<Item>27854</Item>
<Item>37201</Item>
<Item>24401</Item>
<Item>4538</Item>
<Item>8766</Item>
</ProtectedItems>

<SubProfile>
<Factions>2068 834</Factions>
<Mesh Name="AB.mesh" ServerID="33" />
<GrindAea>
<RandomizeHotspots>true</RandomizeHotspots>
<MaximumHotspotTime>300000</MaximumHotspotTime>
<Hotspots>
<Hotspot X="976.0357" Y="1037.792" Z="-43.70517" />
<Hotspot X="853.1397" Y="986.9025" Z="-60.44062" />
<Hotspot X="858.754" Y="1157.291" Z="11.95822" />
<Hotspot X="812.1718" Y="882.2908" Z="-58.37704" />
</Hotspots>
</GrindAea>
</SubProfile>
</HBProfile>

Also, you can try using this tool to make profiles. Looks promising.
http://www.buddyforum.de/showthread...onorbuddy-Profile-Generator&p=69144#post69144
 
Last edited:
Back
Top